diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2b799a6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+traefiker
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5d08278
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+.PHONY: install linux
+all:
+ go build .
+
+linux:
+ GOOS=linux go build . && goupx traefiker
+
+install: linux
+ scp traefiker blinker:blinker/
diff --git a/blinker/Dockerfile b/blinker/Dockerfile
new file mode 100644
index 0000000..fd77b69
--- /dev/null
+++ b/blinker/Dockerfile
@@ -0,0 +1,8 @@
+FROM scratch
+ADD blinker /
+ADD config.yml /
+ADD index.html /
+ADD load.html /
+ADD auth.html /
+EXPOSE 80/tcp
+CMD ["/blinker","serve"]
diff --git a/blinker/auth.html b/blinker/auth.html
new file mode 100644
index 0000000..48b49fa
--- /dev/null
+++ b/blinker/auth.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+ Please reload the page if it doesn't reload.
+
+
+
diff --git a/blinker/blinker b/blinker/blinker
new file mode 100755
index 0000000..432b6f5
--- /dev/null
+++ b/blinker/blinker
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
diff --git a/blinker/config.yml b/blinker/config.yml
new file mode 100644
index 0000000..0b307bd
--- /dev/null
+++ b/blinker/config.yml
@@ -0,0 +1,17 @@
+balanceme:
+ db: root:myohmy69@(mysql:3306)/blinker?parseTime=true
+ client: 27t27zo6uxju556q6biq9a6129dryjg
+ token: 1u4bq84z36psc8q6npidp8gt7vc2m5k
+ store: o1p74e2tyg
+ redis: redis:6379
+ hostname: blinker.gpmd.net
+ ssl: false
+auth:
+ auth_url: https://login.bigcommerce.com/oauth2/authorize
+ token_url: https://login.bigcommerce.com/oauth2/token
+
+ scopes: # https://developer.bigcommerce.com/api-docs/getting-started/authentication#authentication_oauth-scopes
+ - store_v2_content_read_only
+ - store_v2_default
+ - store_v2_products_read_only
+ - users_basic_information
diff --git a/blinker/index.html b/blinker/index.html
new file mode 100644
index 0000000..432b6f5
--- /dev/null
+++ b/blinker/index.html
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
diff --git a/blinker/load.html b/blinker/load.html
new file mode 100644
index 0000000..433397d
--- /dev/null
+++ b/blinker/load.html
@@ -0,0 +1,203 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Sync
+
+
+
+
+
+
+
+
+ {{"{{row.item.title}}"}}
+
+
+ Edit Post
+
+
+ onChangeFeatured(row.item)" v-model="row.item.featured">
+
+
+
+ Products:
+
+ Categories:
+
+ Brands:
+
+
+ {{"{{i.name}}"}}
+ Assign Products
+ {{"{{i.name}}"}}
+ Assign Categories
+ {{"{{i.name}}"}}
+ Assign Brands
+
+
+
+
+
+
+
+
diff --git a/config.yml.example b/config.yml.example
new file mode 100644
index 0000000..1ac2896
--- /dev/null
+++ b/config.yml.example
@@ -0,0 +1,11 @@
+traefiker:
+ name: blinker # Docker container name
+docker:
+ links: ["traefik_mysql_1:mysql", "traefik_redis_1:redis"] # Linked containers, "docker_name:internal_name" format
+ networks: ["traefik_web"]
+labels:
+ traefik.backend: blinker # Same as traefiker.name above
+ traefik.docker.network: traefik_web # Same as traefiker.network above
+ traefik.frontend.rule: Host: linker.gpmd.net
+ traefik.frontend.entryPoints: https
+ traefik.port: 80 # exposed port from Docker image
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..ffc5c81
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,14 @@
+module github.com/gpmd/traefiker
+
+go 1.13
+
+require (
+ github.com/docker/distribution v2.7.1+incompatible // indirect
+ github.com/docker/docker v1.13.1
+ github.com/docker/go-connections v0.4.0
+ github.com/docker/go-units v0.4.0 // indirect
+ github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
+ github.com/pkg/errors v0.8.1 // indirect
+ github.com/spf13/viper v1.4.0
+ golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 // indirect
+)
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..edabddb
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,145 @@
+cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
+github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
+github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
+github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
+github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
+github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
+github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
+github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
+github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
+github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
+github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=
+github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
+github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
+github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
+github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
+github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
+github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
+github.com/docker/distribution v2.7.1+incompatible h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=
+github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
+github.com/docker/docker v1.13.1 h1:IkZjBSIc8hBjLpqeAbeE5mca5mNgeatLHBy3GO78BWo=
+github.com/docker/docker v1.13.1/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
+github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
+github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
+github.com/docker/go-units v0.4.0 h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=
+github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
+github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
+github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
+github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
+github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
+github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
+github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
+github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
+github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
+github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=
+github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
+github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
+github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
+github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
+github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
+github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
+github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
+github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
+github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=
+github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=
+github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=
+github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
+github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
+github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=
+github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
+github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
+github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
+github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
+github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
+github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
+github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
+github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
+github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=
+github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
+github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
+github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=
+github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
+github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
+github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=
+github.com/opencontainers/go-digest v1.0.0-rc1 h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=
+github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s=
+github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=
+github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
+github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
+github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
+github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=
+github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
+github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
+github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=
+github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
+github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
+github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
+github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
+github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
+github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
+github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=
+github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
+github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=
+github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
+github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=
+github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
+github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=
+github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
+github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
+github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
+github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU=
+github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE=
+github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
+github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
+github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc=
+github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
+github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
+go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
+go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
+go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
+go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
+golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
+golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
+golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
+golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
+golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 h1:k7pJ2yAPLPgbskkFdhRCsA77k2fySZ1zf2zCjvQCiIM=
+golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
+golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a h1:1BGLXjeY4akVXGgbC9HugT3Jv3hCI0z56oJR5vAMgBU=
+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
+golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
+golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
+golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
+golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
+google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
+google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
+google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
+google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
+gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
+gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
+gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=
+gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
+gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
+gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
+honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
diff --git a/traefiker.go b/traefiker.go
new file mode 100644
index 0000000..ca91c26
--- /dev/null
+++ b/traefiker.go
@@ -0,0 +1,377 @@
+package main
+
+import (
+ "archive/tar"
+ "bufio"
+ "bytes"
+ "context"
+ "encoding/json"
+ "fmt"
+ "io"
+ "io/ioutil"
+ "log"
+ "os"
+ "strconv"
+ "strings"
+ "sync"
+ "time"
+
+ "path/filepath"
+
+ "github.com/spf13/viper"
+
+ "github.com/docker/docker/api/types"
+ "github.com/docker/docker/api/types/container"
+ "github.com/docker/docker/api/types/mount"
+ "github.com/docker/docker/api/types/network"
+ "github.com/docker/docker/client"
+)
+
+// AuthInfo stores a users' docker registry/hub info
+var AuthInfo sync.Map
+
+func main() {
+
+ log.Println("Starting...")
+ viper.SetConfigName("config")
+ viper.AddConfigPath(".") // optionally look for config in the working directory
+ err := viper.ReadInConfig() // Find and read the config file
+ if err != nil { // Handle errors reading the config file
+ panic(fmt.Errorf("fatal error config file: %v", err))
+ }
+ conf := viper.GetStringMapString("traefiker")
+ dockerconf := viper.GetStringMapStringSlice("docker")
+
+ cli, err := client.NewEnvClient()
+ E(err)
+ ctx := context.Background()
+ d := Docker{cli: cli}
+
+ old := map[string]string{}
+ for _, s := range d.List() {
+ if s.Image == conf["name"] {
+ old[s.ID] = s.ID
+ }
+ log.Println(s.Image)
+ }
+
+ name, err := BuildDockerImage(ctx, conf, d.cli)
+ E(err)
+
+ d.Run(ctx, name, "", map[string]string{
+ "traefik.backend": name,
+ "traefik.docker.network": "traefik_web",
+ "traefik.frontend.rule": "Host:" + conf["host"],
+ "traefik.frontend.entryPoints": "https",
+ "traefik.port": "80",
+ }, dockerconf)
+ newid := ""
+ for _, s := range d.List() {
+ if _, ok := old[s.ID]; !ok {
+ if s.Image == name {
+ newid = s.ID
+ }
+ }
+ }
+ if newid != "" {
+ for _, id := range old {
+ log.Println("Stopping", id)
+ d.StopContainer(ctx, id)
+ }
+ }
+}
+
+type Docker struct {
+ cli *client.Client
+ list []types.Container
+}
+
+func E(err error) {
+ if err != nil {
+ panic(err)
+ }
+}
+
+func (d *Docker) Run(ctx context.Context, imagename, imageurl string, labels map[string]string, conf map[string][]string) string {
+ // hostBinding := nat.PortBinding{
+ // HostIP: "0.0.0.0",
+ // HostPort: "8000",
+ // }
+ // containerPort, err := nat.NewPort("tcp", "80")
+ // if err != nil {
+ // panic("Unable to get the port")
+ // }
+
+ if imageurl != "" {
+ reader, err := d.cli.ImagePull(ctx, imageurl, types.ImagePullOptions{})
+ if err != nil {
+ panic(err)
+ }
+ io.Copy(os.Stdout, reader)
+ }
+
+ nets, err := d.cli.NetworkList(ctx, types.NetworkListOptions{})
+ netid := ""
+ for _, n := range nets {
+ if n.Name == "traefik_web" {
+ netid = n.ID
+ }
+ }
+
+ mm := []mount.Mount{}
+
+ for _, l := range conf["mounts"] {
+ ll := strings.Split(l, ":")
+ if len(ll) != 2 {
+ log.Panicf("Mounts in config.yml (%v) have line %s where 'from:to' is not correct", conf["mounts"], l)
+ }
+ mm = append(mm, mount.Mount{
+ Type: mount.TypeBind,
+ Source: ll[0],
+ Target: ll[1],
+ })
+ }
+
+ // portBinding := nat.PortMap{containerPort: []nat.PortBinding{hostBinding}}
+ cont, err := d.cli.ContainerCreate(
+ context.Background(),
+ &container.Config{
+ Image: imagename,
+ Labels: labels,
+ },
+ &container.HostConfig{
+ NetworkMode: "traefik_web",
+ RestartPolicy: container.RestartPolicy{MaximumRetryCount: 0},
+ Mounts: mm,
+ // PortBindings: portBinding,
+ // Links: []string{"traefik_mysql_1:mysql", "traefik_redis_1:redis"},
+ }, nil, imagename+"_"+strconv.FormatInt(time.Now().UTC().Unix(), 32))
+ E(err)
+ d.cli.ContainerStart(ctx, cont.ID, types.ContainerStartOptions{})
+ d.cli.NetworkConnect(ctx,
+ netid,
+ cont.ID,
+ &network.EndpointSettings{
+ Links: conf["links"],
+ },
+ )
+ fmt.Println("Links:", conf["links"])
+ return cont.ID
+}
+
+// List lists all containers
+func (d *Docker) List() []types.Container {
+ containers, err := d.cli.ContainerList(context.Background(), types.ContainerListOptions{})
+ E(err)
+ d.list = []types.Container{}
+ for _, container := range containers {
+ d.list = append(d.list, container)
+ }
+ return d.list
+}
+
+func (d *Docker) StopContainer(ctx context.Context, containerID string) {
+ err := d.cli.ContainerStop(ctx, containerID, nil)
+ E(err)
+}
+
+// APIClient is meli's client to interact with the docker daemon server
+type APIClient interface {
+ // we implement this interface so that we can be able to mock it in tests
+ // https://medium.com/@zach_4342/dependency-injection-in-golang-e587c69478a8
+ ImagePull(ctx context.Context, ref string, options types.ImagePullOptions) (io.ReadCloser, error)
+ ImageBuild(ctx context.Context, buildContext io.Reader, options types.ImageBuildOptions) (types.ImageBuildResponse, error)
+ ContainerCreate(ctx context.Context, config *container.Config, hostConfig *container.HostConfig, networkingConfig *network.NetworkingConfig, containerName string) (container.ContainerCreateCreatedBody, error)
+ ContainerStart(ctx context.Context, containerID string, options types.ContainerStartOptions) error
+ ContainerLogs(ctx context.Context, container string, options types.ContainerLogsOptions) (io.ReadCloser, error)
+ NetworkList(ctx context.Context, options types.NetworkListOptions) ([]types.NetworkResource, error)
+ NetworkCreate(ctx context.Context, name string, options types.NetworkCreate) (types.NetworkCreateResponse, error)
+ NetworkConnect(ctx context.Context, networkID, containerID string, config *network.EndpointSettings) error
+ ContainerList(ctx context.Context, options types.ContainerListOptions) ([]types.Container, error)
+ ContainerRemove(ctx context.Context, containerID string, options types.ContainerRemoveOptions) error
+}
+
+type imageProgress struct {
+ Status string `json:"status,omitempty"`
+ Stream string `json:"stream,omitempty"`
+ Progress string `json:"progress,omitempty"`
+ ProgressDetail string `json:"progressDetail,omitempty"`
+}
+
+// this is taken from io.util
+var blackHolePool = sync.Pool{
+ New: func() interface{} {
+ // TODO: change this size accordingly
+ // we could find the size of the file we want to tar
+ // then pass that in as the size. That way we will
+ // always create a right sized slice and not have to incure cost of slice regrowth(if any)
+ b := make([]byte, 512)
+ return &b
+ },
+}
+
+// this is taken from io.util
+func poolReadFrom(r io.Reader) (n int64, err error) {
+ bufp := blackHolePool.Get().(*[]byte)
+ // reset the buffer since it may contain data from a previous round
+ // see issues/118
+ for i := range *bufp {
+ (*bufp)[i] = 0
+
+ }
+ readSize := 0
+ for {
+ readSize, err = r.Read(*bufp)
+ n += int64(readSize)
+ if err != nil {
+ blackHolePool.Put(bufp)
+ if err == io.EOF {
+ return n, nil
+ }
+ return
+ }
+ }
+}
+
+func walkFnClosure(src string, tw *tar.Writer, buf *bytes.Buffer) filepath.WalkFunc {
+ return func(path string, info os.FileInfo, err error) error {
+ log.Println("Walking in ", path)
+ if err != nil {
+ // todo: maybe we should return nil
+ return err
+ }
+
+ tarHeader, err := tar.FileInfoHeader(info, info.Name())
+ if err != nil {
+ return err
+ }
+ // update the name to correctly reflect the desired destination when untaring
+ // https://medium.com/@skdomino/taring-untaring-files-in-go-6b07cf56bc07
+ tarHeader.Name = strings.TrimPrefix(strings.Replace(path, src, "", -1), string(filepath.Separator))
+ if src == "." {
+ // see: issues/74
+ tarHeader.Name = strings.TrimPrefix(path, string(filepath.Separator))
+ }
+
+ err = tw.WriteHeader(tarHeader)
+ if err != nil {
+ return err
+ }
+ // return on directories since there will be no content to tar
+ if info.Mode().IsDir() {
+ return nil
+ }
+ // return on non-regular files since there will be no content to tar
+ if !info.Mode().IsRegular() {
+ // non regular files are like symlinks etc; https://golang.org/src/os/types.go?h=ModeSymlink#L49
+ return nil
+ }
+
+ // open files for taring
+ f, err := os.Open(path)
+ if err != nil {
+ log.Println("Error while tar creation for file", path, err)
+ return err
+ }
+ defer f.Close()
+
+ tr := io.TeeReader(f, tw)
+ _, err = poolReadFrom(tr)
+ if err != nil {
+ return err
+ }
+
+ return nil
+ }
+}
+
+func BuildDockerImage(ctx context.Context, conf map[string]string, cli APIClient) (string, error) {
+ // TODO: I dont like the way we are handling paths here.
+ // look at dirWithComposeFile in container.go
+ dockerFilePath := "./Dockerfile"
+
+ dockerFileReader, err := os.Open(dockerFilePath)
+ if err != nil {
+ return "", fmt.Errorf("unable to open Dockerfile %v: %v", dockerFilePath, err)
+ }
+ readDockerFile, err := ioutil.ReadAll(dockerFileReader)
+ if err != nil {
+ return "", fmt.Errorf("unable to read dockerfile %v: %v", dockerFilePath, err)
+ }
+
+ imageName := conf["name"]
+
+ splitDockerfile := strings.Split(string(readDockerFile), " ")
+ splitImageName := strings.Split(splitDockerfile[1], "\n")
+ imgFromDockerfile := splitImageName[0]
+
+ AuthConfigs := make(map[string]types.AuthConfig)
+
+ result, ok := AuthInfo.Load("dockerhub")
+ if strings.Contains(imgFromDockerfile, "quay") {
+ result, ok = AuthInfo.Load("quay")
+ }
+ if ok {
+
+ authInfo := result.(map[string]string)
+ registryURL := authInfo["registryURL"]
+ username := authInfo["username"]
+ password := authInfo["password"]
+
+ AuthConfigs[registryURL] = types.AuthConfig{Username: username, Password: password}
+ } else {
+ log.Println("Can't read auth info, skipping")
+ }
+
+ buf := new(bytes.Buffer)
+ tw := tar.NewWriter(buf)
+ defer tw.Close()
+ /*
+ Context is either a path to a directory containing a Dockerfile, or a url to a git repository.
+ When the value supplied is a relative path, it is interpreted as relative to the location of the Compose file.
+ This directory is also the build context that is sent to the Docker daemon.
+ - https://docs.docker.com/compose/compose-file/#context
+ */
+ UserProvidedContextPath := "."
+ err = filepath.Walk(UserProvidedContextPath, walkFnClosure(UserProvidedContextPath, tw, buf))
+ if err != nil {
+ return "", fmt.Errorf("unable to walk user provided context path %v: %v", UserProvidedContextPath, err)
+ }
+ log.Println("Len:", len(buf.Bytes()))
+ dockerFileTarReader := bytes.NewReader(buf.Bytes())
+ log.Println("building...")
+ imageBuildResponse, err := cli.ImageBuild(
+ ctx,
+ dockerFileTarReader,
+ types.ImageBuildOptions{
+ //PullParent: true,
+ //Squash: true, currently only supported in experimental mode
+ Tags: []string{imageName},
+ Remove: true, //remove intermediary containers after build
+ NoCache: true,
+ SuppressOutput: false,
+ Dockerfile: "./Dockerfile",
+ Context: dockerFileTarReader,
+ AuthConfigs: AuthConfigs})
+ if err != nil {
+ return "", fmt.Errorf("unable to build docker image '%v' for service '%v': %v", imageName, os.Args[1], err)
+ }
+
+ var imgProg imageProgress
+ scanner := bufio.NewScanner(imageBuildResponse.Body)
+ for scanner.Scan() {
+ _ = json.Unmarshal(scanner.Bytes(), &imgProg)
+ log.Println(
+ "Build",
+ imgProg.Status,
+ imgProg.Progress,
+ imgProg.Stream)
+ }
+ if err := scanner.Err(); err != nil {
+ fmt.Println(" :unable to log output for image", imageName, err)
+ }
+
+ imageBuildResponse.Body.Close()
+ log.Println("built.")
+ return imageName, nil
+}