echoip/Makefile

56 lines
1.7 KiB
Makefile
Raw Normal View History

2019-03-16 15:14:32 +01:00
DOCKER_IMAGE := mpolden/echoip
2018-02-09 21:20:32 +01:00
OS := $(shell uname)
ifeq ($(OS),Linux)
TAR_OPTS := --wildcards
endif
2019-10-18 18:06:43 +02:00
all: lint test install
2014-12-22 16:01:23 +01:00
2019-10-18 18:06:43 +02:00
test:
2015-09-17 20:57:27 +02:00
go test ./...
2014-12-22 16:53:41 +01:00
2019-10-18 18:06:43 +02:00
vet:
2016-04-15 17:59:56 +02:00
go vet ./...
check-fmt:
2018-08-27 20:45:51 +02:00
bash -c "diff --line-format='%L' <(echo -n) <(gofmt -d -s .)"
2018-08-27 21:24:28 +02:00
lint: check-fmt vet
2019-10-18 18:06:43 +02:00
install:
2018-02-09 21:57:33 +01:00
go install ./...
2019-07-05 15:01:45 +02:00
databases := GeoLite2-City GeoLite2-Country GeoLite2-ASN
2018-02-09 21:20:32 +01:00
$(databases):
ifndef GEOIP_LICENSE_KEY
$(error GEOIP_LICENSE_KEY must be set. Please see https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/)
endif
2018-02-09 21:20:32 +01:00
mkdir -p data
@curl -fsSL -m 30 "https://download.maxmind.com/app/geoip_download?edition_id=$@&license_key=$(GEOIP_LICENSE_KEY)&suffix=tar.gz" | tar $(TAR_OPTS) --strip-components=1 -C $(CURDIR)/data -xzf - '*.mmdb'
2018-02-09 21:20:32 +01:00
test ! -f data/GeoLite2-City.mmdb || mv data/GeoLite2-City.mmdb data/city.mmdb
test ! -f data/GeoLite2-Country.mmdb || mv data/GeoLite2-Country.mmdb data/country.mmdb
2019-07-05 15:01:45 +02:00
test ! -f data/GeoLite2-ASN.mmdb || mv data/GeoLite2-ASN.mmdb data/asn.mmdb
2018-02-09 21:20:32 +01:00
geoip-download: $(databases)
2019-03-16 15:14:32 +01:00
docker-build:
docker build -t $(DOCKER_IMAGE) .
docker-login:
@echo "$(DOCKER_PASSWORD)" | docker login -u "$(DOCKER_USERNAME)" --password-stdin
2019-03-29 20:38:43 +01:00
docker-test:
$(eval CONTAINER=$(shell docker run --rm --detach --publish-all $(DOCKER_IMAGE)))
$(eval DOCKER_PORT=$(shell docker port $(CONTAINER) | cut -d ":" -f 2))
2019-04-27 10:23:22 +02:00
curl -fsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER)
2019-03-29 20:38:43 +01:00
docker-push: docker-test docker-login
2019-03-16 15:14:32 +01:00
docker push $(DOCKER_IMAGE)
2019-12-24 17:31:27 +01:00
heroku-run: geoip-download
ifndef PORT
$(error PORT must be set)
endif
2019-12-25 21:04:26 +01:00
echoip -C 1000000 -f data/country.mmdb -c data/city.mmdb -a data/asn.mmdb -p -r -H CF-Connecting-IP -H X-Forwarded-For -l :$(PORT)