├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── VERSION ├── addons ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── chrome │ ├── _locales │ ├── background.js │ ├── content.js │ ├── icon_128.png │ ├── icon_16.png │ ├── jquery-3.4.1.min.js │ ├── manifest.json │ ├── modal.html │ ├── options.html │ └── options.js ├── common │ ├── _locales │ │ └── en │ │ │ └── messages.json │ ├── background.js │ ├── content.js │ ├── icon_128.png │ ├── icon_16.png │ ├── jquery-3.4.1.min.js │ ├── modal.html │ ├── options.html │ └── options.js └── firefox │ ├── _locales │ ├── background.js │ ├── content.js │ ├── icon_128.png │ ├── icon_16.png │ ├── jquery-3.4.1.min.js │ ├── manifest.json │ ├── modal.html │ ├── options.html │ └── options.js ├── cmd └── getsum │ └── main.go ├── docker-build.sh ├── docs ├── all.gif ├── finding.gif ├── libs.gif ├── main.gif ├── multiple.gif └── server.gif ├── generateReleases.sh ├── go.mod ├── go.sum ├── internal ├── config │ ├── config.go │ └── parser.go ├── file │ ├── download.go │ ├── file.go │ └── validator.go ├── logger │ └── logger.go ├── provider │ ├── localprovider.go │ ├── onpremiseprovider.go │ ├── providerfactory.go │ └── types │ │ ├── provider.go │ │ └── providers.go ├── servers │ └── onpremise.go ├── status │ └── status.go ├── supplier │ ├── algorithm.go │ ├── commandsupplier.go │ ├── gosupplier.go │ ├── supplier.go │ └── supplierfactory.go └── validation │ └── validator.go ├── runTest.sh └── tests ├── blackbox_test.go ├── emptyFile ├── file_test.go ├── server.crt ├── server.key ├── servers.yml ├── symLink └── tlsservers.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.6 2 | -------------------------------------------------------------------------------- /addons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/.project -------------------------------------------------------------------------------- /addons/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/.settings/.jsdtscope -------------------------------------------------------------------------------- /addons/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /addons/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /addons/chrome/_locales: -------------------------------------------------------------------------------- 1 | ../common/_locales/ -------------------------------------------------------------------------------- /addons/chrome/background.js: -------------------------------------------------------------------------------- 1 | ../common/background.js -------------------------------------------------------------------------------- /addons/chrome/content.js: -------------------------------------------------------------------------------- 1 | ../common/content.js -------------------------------------------------------------------------------- /addons/chrome/icon_128.png: -------------------------------------------------------------------------------- 1 | ../common/icon_128.png -------------------------------------------------------------------------------- /addons/chrome/icon_16.png: -------------------------------------------------------------------------------- 1 | ../common/icon_16.png -------------------------------------------------------------------------------- /addons/chrome/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- 1 | ../common/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /addons/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/chrome/manifest.json -------------------------------------------------------------------------------- /addons/chrome/modal.html: -------------------------------------------------------------------------------- 1 | ../common/modal.html -------------------------------------------------------------------------------- /addons/chrome/options.html: -------------------------------------------------------------------------------- 1 | ../common/options.html -------------------------------------------------------------------------------- /addons/chrome/options.js: -------------------------------------------------------------------------------- 1 | ../common/options.js -------------------------------------------------------------------------------- /addons/common/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/_locales/en/messages.json -------------------------------------------------------------------------------- /addons/common/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/background.js -------------------------------------------------------------------------------- /addons/common/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/content.js -------------------------------------------------------------------------------- /addons/common/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/icon_128.png -------------------------------------------------------------------------------- /addons/common/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/icon_16.png -------------------------------------------------------------------------------- /addons/common/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /addons/common/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/modal.html -------------------------------------------------------------------------------- /addons/common/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/options.html -------------------------------------------------------------------------------- /addons/common/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/common/options.js -------------------------------------------------------------------------------- /addons/firefox/_locales: -------------------------------------------------------------------------------- 1 | ../common/_locales -------------------------------------------------------------------------------- /addons/firefox/background.js: -------------------------------------------------------------------------------- 1 | ../common/background.js -------------------------------------------------------------------------------- /addons/firefox/content.js: -------------------------------------------------------------------------------- 1 | ../common/content.js -------------------------------------------------------------------------------- /addons/firefox/icon_128.png: -------------------------------------------------------------------------------- 1 | ../common/icon_128.png -------------------------------------------------------------------------------- /addons/firefox/icon_16.png: -------------------------------------------------------------------------------- 1 | ../common/icon_16.png -------------------------------------------------------------------------------- /addons/firefox/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- 1 | ../common/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /addons/firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/addons/firefox/manifest.json -------------------------------------------------------------------------------- /addons/firefox/modal.html: -------------------------------------------------------------------------------- 1 | ../common/modal.html -------------------------------------------------------------------------------- /addons/firefox/options.html: -------------------------------------------------------------------------------- 1 | ../common/options.html -------------------------------------------------------------------------------- /addons/firefox/options.js: -------------------------------------------------------------------------------- 1 | ../common/options.js -------------------------------------------------------------------------------- /cmd/getsum/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/cmd/getsum/main.go -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docs/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docs/all.gif -------------------------------------------------------------------------------- /docs/finding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docs/finding.gif -------------------------------------------------------------------------------- /docs/libs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docs/libs.gif -------------------------------------------------------------------------------- /docs/main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docs/main.gif -------------------------------------------------------------------------------- /docs/multiple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docs/multiple.gif -------------------------------------------------------------------------------- /docs/server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/docs/server.gif -------------------------------------------------------------------------------- /generateReleases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/generateReleases.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/go.sum -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/config/parser.go -------------------------------------------------------------------------------- /internal/file/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/file/download.go -------------------------------------------------------------------------------- /internal/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/file/file.go -------------------------------------------------------------------------------- /internal/file/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/file/validator.go -------------------------------------------------------------------------------- /internal/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/logger/logger.go -------------------------------------------------------------------------------- /internal/provider/localprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/provider/localprovider.go -------------------------------------------------------------------------------- /internal/provider/onpremiseprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/provider/onpremiseprovider.go -------------------------------------------------------------------------------- /internal/provider/providerfactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/provider/providerfactory.go -------------------------------------------------------------------------------- /internal/provider/types/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/provider/types/provider.go -------------------------------------------------------------------------------- /internal/provider/types/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/provider/types/providers.go -------------------------------------------------------------------------------- /internal/servers/onpremise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/servers/onpremise.go -------------------------------------------------------------------------------- /internal/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/status/status.go -------------------------------------------------------------------------------- /internal/supplier/algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/supplier/algorithm.go -------------------------------------------------------------------------------- /internal/supplier/commandsupplier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/supplier/commandsupplier.go -------------------------------------------------------------------------------- /internal/supplier/gosupplier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/supplier/gosupplier.go -------------------------------------------------------------------------------- /internal/supplier/supplier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/supplier/supplier.go -------------------------------------------------------------------------------- /internal/supplier/supplierfactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/supplier/supplierfactory.go -------------------------------------------------------------------------------- /internal/validation/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/internal/validation/validator.go -------------------------------------------------------------------------------- /runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/runTest.sh -------------------------------------------------------------------------------- /tests/blackbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/tests/blackbox_test.go -------------------------------------------------------------------------------- /tests/emptyFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/tests/file_test.go -------------------------------------------------------------------------------- /tests/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/tests/server.crt -------------------------------------------------------------------------------- /tests/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/tests/server.key -------------------------------------------------------------------------------- /tests/servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/tests/servers.yml -------------------------------------------------------------------------------- /tests/symLink: -------------------------------------------------------------------------------- 1 | emptyFile -------------------------------------------------------------------------------- /tests/tlsservers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsumio/getsum/HEAD/tests/tlsservers.yml --------------------------------------------------------------------------------