You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

966 lines
34 KiB

Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
5 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add support for migrating from Gitlab (#9084) * First stab at a Gitlab migrations interface. * Modify JS to show migration for Gitlab * Properly strip out #gitlab tag from repo name * Working Gitlab migrations! Still need to figure out how to hide tokens/etc from showing up in opts.CloneAddr * Try #2 at trying to hide credentials. CloneAddr was being used as OriginalURL. Now passing OriginalURL through from the form and saving it. * Add go-gitlab dependency * Vendor go-gitlab * Use gitlab.BasicAuthClient Correct CloneURL. This should be functioning! Previous commits fixed "Migrated from" from including the migration credentials. * Replaced repoPath with repoID globally. RepoID is grabbed in NewGitlabDownloader * Logging touchup * Properly set private repo status. Properly set milestone deadline time. Consistently use Gitlab username for 'Name'. * Add go-gitlab vendor cache * Fix PR migrations: - Count of issues is kept to set a non-conflicting PR.ID - Bool is used to tell whether to fetch Issue or PR comments * Ensure merged PRs are closed and set with the proper time * Remove copyright and some commented code * Rip out '#gitlab' based self-hosted Gitlab support * Hide given credentials for migrated repos. CloneAddr was being saved as OriginalURL. Now passing OriginalURL through from the form and saving it in it's place * Use asset.URL directly, no point in parsing. Opened PRs should fall through to false. * Fix importing Milestones. Allow importing using Personal Tokens or anonymous access. * Fix Gitlab Milestone migration if DueDate isn't set * Empty Milestone due dates properly return nil, not zero time * Add GITLAB_READ_TOKEN to drone unit-test step * Add working gitlab_test.go. A Personal Access Token, given in env variable GITLAB_READ_TOKEN is required to run the test. * Fix linting issues * Add modified JS files * Remove pre-build JS files * Only merged PRs are marged as merged/closed * Test topics * Skip test if gitlab is inaccessible * Grab personal token from username, not password. Matches Github migration implementation * Add SetContext() to GitlabDownloader. * Checking Updated field in Issues. * Actually fetch Issue Updated time from Gitlab * Add Gitlab migration GetReviews() stub * Fix Patch and Clone URLs * check Updated too * fix mod * make vendor with go1.14 Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
Add a storage layer for attachments (#11387) * Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
3 years ago
  1. # cloud.google.com/go v0.46.3
  2. cloud.google.com/go/compute/metadata
  3. # code.gitea.io/gitea-vet v0.2.1
  4. ## explicit
  5. code.gitea.io/gitea-vet
  6. code.gitea.io/gitea-vet/checks
  7. # gitea.com/lunny/levelqueue v0.3.0
  8. ## explicit
  9. gitea.com/lunny/levelqueue
  10. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  11. ## explicit
  12. gitea.com/macaron/binding
  13. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  14. ## explicit
  15. gitea.com/macaron/cache
  16. gitea.com/macaron/cache/memcache
  17. gitea.com/macaron/cache/redis
  18. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  19. ## explicit
  20. gitea.com/macaron/captcha
  21. # gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4
  22. ## explicit
  23. gitea.com/macaron/cors
  24. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  25. ## explicit
  26. gitea.com/macaron/csrf
  27. # gitea.com/macaron/gzip v0.0.0-20200827120000-efa5e8477cf5
  28. ## explicit
  29. gitea.com/macaron/gzip
  30. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  31. ## explicit
  32. gitea.com/macaron/i18n
  33. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  34. ## explicit
  35. gitea.com/macaron/inject
  36. # gitea.com/macaron/macaron v1.5.0
  37. ## explicit
  38. gitea.com/macaron/macaron
  39. # gitea.com/macaron/session v0.0.0-20200902202411-e3a87877db6e
  40. ## explicit
  41. gitea.com/macaron/session
  42. gitea.com/macaron/session/couchbase
  43. gitea.com/macaron/session/memcache
  44. gitea.com/macaron/session/mysql
  45. gitea.com/macaron/session/nodb
  46. gitea.com/macaron/session/postgres
  47. gitea.com/macaron/session/redis
  48. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  49. ## explicit
  50. gitea.com/macaron/toolbox
  51. # github.com/BurntSushi/toml v0.3.1
  52. ## explicit
  53. github.com/BurntSushi/toml
  54. # github.com/PuerkitoBio/goquery v1.5.1
  55. ## explicit
  56. github.com/PuerkitoBio/goquery
  57. # github.com/PuerkitoBio/purell v1.1.1
  58. github.com/PuerkitoBio/purell
  59. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  60. github.com/PuerkitoBio/urlesc
  61. # github.com/RoaringBitmap/roaring v0.4.23
  62. ## explicit
  63. github.com/RoaringBitmap/roaring
  64. # github.com/alecthomas/chroma v0.8.0
  65. ## explicit
  66. github.com/alecthomas/chroma
  67. github.com/alecthomas/chroma/formatters/html
  68. github.com/alecthomas/chroma/lexers
  69. github.com/alecthomas/chroma/lexers/a
  70. github.com/alecthomas/chroma/lexers/b
  71. github.com/alecthomas/chroma/lexers/c
  72. github.com/alecthomas/chroma/lexers/circular
  73. github.com/alecthomas/chroma/lexers/d
  74. github.com/alecthomas/chroma/lexers/e
  75. github.com/alecthomas/chroma/lexers/f
  76. github.com/alecthomas/chroma/lexers/g
  77. github.com/alecthomas/chroma/lexers/h
  78. github.com/alecthomas/chroma/lexers/i
  79. github.com/alecthomas/chroma/lexers/internal
  80. github.com/alecthomas/chroma/lexers/j
  81. github.com/alecthomas/chroma/lexers/k
  82. github.com/alecthomas/chroma/lexers/l
  83. github.com/alecthomas/chroma/lexers/m
  84. github.com/alecthomas/chroma/lexers/n
  85. github.com/alecthomas/chroma/lexers/o
  86. github.com/alecthomas/chroma/lexers/p
  87. github.com/alecthomas/chroma/lexers/q
  88. github.com/alecthomas/chroma/lexers/r
  89. github.com/alecthomas/chroma/lexers/s
  90. github.com/alecthomas/chroma/lexers/t
  91. github.com/alecthomas/chroma/lexers/v
  92. github.com/alecthomas/chroma/lexers/w
  93. github.com/alecthomas/chroma/lexers/x
  94. github.com/alecthomas/chroma/lexers/y
  95. github.com/alecthomas/chroma/lexers/z
  96. github.com/alecthomas/chroma/styles
  97. # github.com/andybalholm/brotli v0.0.0-20190621154722-5f990b63d2d6
  98. github.com/andybalholm/brotli
  99. # github.com/andybalholm/cascadia v1.1.0
  100. github.com/andybalholm/cascadia
  101. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  102. github.com/anmitsu/go-shlex
  103. # github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535
  104. github.com/asaskevich/govalidator
  105. # github.com/aymerick/douceur v0.2.0
  106. github.com/aymerick/douceur/css
  107. # github.com/beorn7/perks v1.0.1
  108. github.com/beorn7/perks/quantile
  109. # github.com/blevesearch/bleve v1.0.7
  110. ## explicit
  111. github.com/blevesearch/bleve
  112. github.com/blevesearch/bleve/analysis
  113. github.com/blevesearch/bleve/analysis/analyzer/custom
  114. github.com/blevesearch/bleve/analysis/analyzer/keyword
  115. github.com/blevesearch/bleve/analysis/analyzer/standard
  116. github.com/blevesearch/bleve/analysis/datetime/flexible
  117. github.com/blevesearch/bleve/analysis/datetime/optional
  118. github.com/blevesearch/bleve/analysis/lang/en
  119. github.com/blevesearch/bleve/analysis/token/lowercase
  120. github.com/blevesearch/bleve/analysis/token/porter
  121. github.com/blevesearch/bleve/analysis/token/stop
  122. github.com/blevesearch/bleve/analysis/token/unicodenorm
  123. github.com/blevesearch/bleve/analysis/tokenizer/single
  124. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  125. github.com/blevesearch/bleve/document
  126. github.com/blevesearch/bleve/geo
  127. github.com/blevesearch/bleve/index
  128. github.com/blevesearch/bleve/index/scorch
  129. github.com/blevesearch/bleve/index/scorch/mergeplan
  130. github.com/blevesearch/bleve/index/scorch/segment
  131. github.com/blevesearch/bleve/index/store
  132. github.com/blevesearch/bleve/index/store/boltdb
  133. github.com/blevesearch/bleve/index/store/gtreap
  134. github.com/blevesearch/bleve/index/upsidedown
  135. github.com/blevesearch/bleve/mapping
  136. github.com/blevesearch/bleve/numeric
  137. github.com/blevesearch/bleve/registry
  138. github.com/blevesearch/bleve/search
  139. github.com/blevesearch/bleve/search/collector
  140. github.com/blevesearch/bleve/search/facet
  141. github.com/blevesearch/bleve/search/highlight
  142. github.com/blevesearch/bleve/search/highlight/format/html
  143. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  144. github.com/blevesearch/bleve/search/highlight/highlighter/html
  145. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  146. github.com/blevesearch/bleve/search/query
  147. github.com/blevesearch/bleve/search/scorer
  148. github.com/blevesearch/bleve/search/searcher
  149. github.com/blevesearch/bleve/size
  150. # github.com/blevesearch/go-porterstemmer v1.0.3
  151. github.com/blevesearch/go-porterstemmer
  152. # github.com/blevesearch/mmap-go v1.0.2
  153. github.com/blevesearch/mmap-go
  154. # github.com/blevesearch/segment v0.9.0
  155. github.com/blevesearch/segment
  156. # github.com/blevesearch/snowballstem v0.9.0
  157. github.com/blevesearch/snowballstem
  158. github.com/blevesearch/snowballstem/english
  159. # github.com/blevesearch/zap/v11 v11.0.7
  160. github.com/blevesearch/zap/v11
  161. # github.com/blevesearch/zap/v12 v12.0.7
  162. github.com/blevesearch/zap/v12
  163. # github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
  164. github.com/boombuler/barcode
  165. github.com/boombuler/barcode/qr
  166. github.com/boombuler/barcode/utils
  167. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  168. github.com/bradfitz/gomemcache/memcache
  169. # github.com/chris-ramon/douceur v0.2.0
  170. github.com/chris-ramon/douceur/parser
  171. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  172. ## explicit
  173. github.com/couchbase/gomemcached
  174. github.com/couchbase/gomemcached/client
  175. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  176. github.com/couchbase/goutils/logging
  177. github.com/couchbase/goutils/scramsha
  178. # github.com/couchbase/vellum v1.0.1
  179. github.com/couchbase/vellum
  180. github.com/couchbase/vellum/levenshtein
  181. github.com/couchbase/vellum/regexp
  182. github.com/couchbase/vellum/utf8
  183. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  184. github.com/couchbaselabs/go-couchbase
  185. # github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d
  186. ## explicit
  187. # github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
  188. ## explicit
  189. # github.com/cznic/strutil v0.0.0-20181122101858-275e90344537
  190. ## explicit
  191. # github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964
  192. github.com/danwakefield/fnmatch
  193. # github.com/davecgh/go-spew v1.1.1
  194. github.com/davecgh/go-spew/spew
  195. # github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc
  196. ## explicit
  197. github.com/denisenkom/go-mssqldb
  198. github.com/denisenkom/go-mssqldb/internal/cp
  199. github.com/denisenkom/go-mssqldb/internal/decimal
  200. github.com/denisenkom/go-mssqldb/internal/querytext
  201. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  202. ## explicit
  203. github.com/dgrijalva/jwt-go
  204. # github.com/dlclark/regexp2 v1.2.0
  205. github.com/dlclark/regexp2
  206. github.com/dlclark/regexp2/syntax
  207. # github.com/dsnet/compress v0.0.1
  208. github.com/dsnet/compress
  209. github.com/dsnet/compress/bzip2
  210. github.com/dsnet/compress/bzip2/internal/sais
  211. github.com/dsnet/compress/internal
  212. github.com/dsnet/compress/internal/errors
  213. github.com/dsnet/compress/internal/prefix
  214. # github.com/dustin/go-humanize v1.0.0
  215. ## explicit
  216. github.com/dustin/go-humanize
  217. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  218. ## explicit
  219. github.com/editorconfig/editorconfig-core-go/v2
  220. # github.com/emirpasic/gods v1.12.0
  221. ## explicit
  222. github.com/emirpasic/gods/containers
  223. github.com/emirpasic/gods/lists
  224. github.com/emirpasic/gods/lists/arraylist
  225. github.com/emirpasic/gods/trees
  226. github.com/emirpasic/gods/trees/binaryheap
  227. github.com/emirpasic/gods/utils
  228. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  229. ## explicit
  230. github.com/ethantkoenig/rupture
  231. # github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
  232. ## explicit
  233. # github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
  234. ## explicit
  235. # github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870
  236. ## explicit
  237. # github.com/fatih/color v1.9.0
  238. github.com/fatih/color
  239. # github.com/fatih/structtag v1.2.0
  240. github.com/fatih/structtag
  241. # github.com/fsnotify/fsnotify v1.4.9
  242. github.com/fsnotify/fsnotify
  243. # github.com/gliderlabs/ssh v0.2.2
  244. ## explicit
  245. github.com/gliderlabs/ssh
  246. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  247. ## explicit
  248. github.com/glycerine/go-unsnap-stream
  249. # github.com/go-enry/go-enry/v2 v2.5.2
  250. ## explicit
  251. github.com/go-enry/go-enry/v2
  252. github.com/go-enry/go-enry/v2/data
  253. github.com/go-enry/go-enry/v2/data/rule
  254. github.com/go-enry/go-enry/v2/internal/tokenizer
  255. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  256. github.com/go-enry/go-enry/v2/regex
  257. # github.com/go-enry/go-oniguruma v1.2.1
  258. github.com/go-enry/go-oniguruma
  259. # github.com/go-git/gcfg v1.5.0
  260. github.com/go-git/gcfg
  261. github.com/go-git/gcfg/scanner
  262. github.com/go-git/gcfg/token
  263. github.com/go-git/gcfg/types
  264. # github.com/go-git/go-billy/v5 v5.0.0
  265. ## explicit
  266. github.com/go-git/go-billy/v5
  267. github.com/go-git/go-billy/v5/helper/chroot
  268. github.com/go-git/go-billy/v5/helper/polyfill
  269. github.com/go-git/go-billy/v5/osfs
  270. github.com/go-git/go-billy/v5/util
  271. # github.com/go-git/go-git/v5 v5.1.0
  272. ## explicit
  273. github.com/go-git/go-git/v5
  274. github.com/go-git/go-git/v5/config
  275. github.com/go-git/go-git/v5/internal/revision
  276. github.com/go-git/go-git/v5/internal/url
  277. github.com/go-git/go-git/v5/plumbing
  278. github.com/go-git/go-git/v5/plumbing/cache
  279. github.com/go-git/go-git/v5/plumbing/color
  280. github.com/go-git/go-git/v5/plumbing/filemode
  281. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  282. github.com/go-git/go-git/v5/plumbing/format/config
  283. github.com/go-git/go-git/v5/plumbing/format/diff
  284. github.com/go-git/go-git/v5/plumbing/format/gitignore
  285. github.com/go-git/go-git/v5/plumbing/format/idxfile
  286. github.com/go-git/go-git/v5/plumbing/format/index
  287. github.com/go-git/go-git/v5/plumbing/format/objfile
  288. github.com/go-git/go-git/v5/plumbing/format/packfile
  289. github.com/go-git/go-git/v5/plumbing/format/pktline
  290. github.com/go-git/go-git/v5/plumbing/object
  291. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  292. github.com/go-git/go-git/v5/plumbing/protocol/packp
  293. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  294. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  295. github.com/go-git/go-git/v5/plumbing/revlist
  296. github.com/go-git/go-git/v5/plumbing/storer
  297. github.com/go-git/go-git/v5/plumbing/transport
  298. github.com/go-git/go-git/v5/plumbing/transport/client
  299. github.com/go-git/go-git/v5/plumbing/transport/file
  300. github.com/go-git/go-git/v5/plumbing/transport/git
  301. github.com/go-git/go-git/v5/plumbing/transport/http
  302. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  303. github.com/go-git/go-git/v5/plumbing/transport/server
  304. github.com/go-git/go-git/v5/plumbing/transport/ssh
  305. github.com/go-git/go-git/v5/storage
  306. github.com/go-git/go-git/v5/storage/filesystem
  307. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  308. github.com/go-git/go-git/v5/storage/memory
  309. github.com/go-git/go-git/v5/utils/binary
  310. github.com/go-git/go-git/v5/utils/diff
  311. github.com/go-git/go-git/v5/utils/ioutil
  312. github.com/go-git/go-git/v5/utils/merkletrie
  313. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  314. github.com/go-git/go-git/v5/utils/merkletrie/index
  315. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  316. github.com/go-git/go-git/v5/utils/merkletrie/noder
  317. # github.com/go-openapi/analysis v0.19.10
  318. github.com/go-openapi/analysis
  319. github.com/go-openapi/analysis/internal
  320. # github.com/go-openapi/errors v0.19.6
  321. github.com/go-openapi/errors
  322. # github.com/go-openapi/inflect v0.19.0
  323. github.com/go-openapi/inflect
  324. # github.com/go-openapi/jsonpointer v0.19.3
  325. github.com/go-openapi/jsonpointer
  326. # github.com/go-openapi/jsonreference v0.19.4
  327. github.com/go-openapi/jsonreference
  328. # github.com/go-openapi/loads v0.19.5
  329. github.com/go-openapi/loads
  330. github.com/go-openapi/loads/fmts
  331. # github.com/go-openapi/runtime v0.19.20
  332. github.com/go-openapi/runtime
  333. github.com/go-openapi/runtime/logger
  334. github.com/go-openapi/runtime/middleware
  335. github.com/go-openapi/runtime/middleware/denco
  336. github.com/go-openapi/runtime/middleware/header
  337. github.com/go-openapi/runtime/middleware/untyped
  338. github.com/go-openapi/runtime/security
  339. # github.com/go-openapi/spec v0.19.8
  340. github.com/go-openapi/spec
  341. # github.com/go-openapi/strfmt v0.19.5
  342. github.com/go-openapi/strfmt
  343. # github.com/go-openapi/swag v0.19.9
  344. github.com/go-openapi/swag
  345. # github.com/go-openapi/validate v0.19.10
  346. github.com/go-openapi/validate
  347. # github.com/go-redis/redis v6.15.2+incompatible
  348. ## explicit
  349. github.com/go-redis/redis
  350. github.com/go-redis/redis/internal
  351. github.com/go-redis/redis/internal/consistenthash
  352. github.com/go-redis/redis/internal/hashtag
  353. github.com/go-redis/redis/internal/pool
  354. github.com/go-redis/redis/internal/proto
  355. github.com/go-redis/redis/internal/util
  356. # github.com/go-sql-driver/mysql v1.5.0
  357. ## explicit
  358. github.com/go-sql-driver/mysql
  359. # github.com/go-stack/stack v1.8.0
  360. github.com/go-stack/stack
  361. # github.com/go-swagger/go-swagger v0.25.0
  362. ## explicit
  363. github.com/go-swagger/go-swagger/cmd/swagger
  364. github.com/go-swagger/go-swagger/cmd/swagger/commands
  365. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  366. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  367. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  368. github.com/go-swagger/go-swagger/codescan
  369. github.com/go-swagger/go-swagger/generator
  370. github.com/go-swagger/go-swagger/scan
  371. # github.com/go-testfixtures/testfixtures/v3 v3.4.0
  372. ## explicit
  373. github.com/go-testfixtures/testfixtures/v3
  374. # github.com/gobwas/glob v0.2.3
  375. ## explicit
  376. github.com/gobwas/glob
  377. github.com/gobwas/glob/compiler
  378. github.com/gobwas/glob/match
  379. github.com/gobwas/glob/syntax
  380. github.com/gobwas/glob/syntax/ast
  381. github.com/gobwas/glob/syntax/lexer
  382. github.com/gobwas/glob/util/runes
  383. github.com/gobwas/glob/util/strings
  384. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  385. ## explicit
  386. github.com/gogs/chardet
  387. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  388. ## explicit
  389. github.com/gogs/cron
  390. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  391. github.com/golang-sql/civil
  392. # github.com/golang/gddo v0.0.0-20190419222130-af0f2af80721
  393. github.com/golang/gddo/httputil
  394. github.com/golang/gddo/httputil/header
  395. # github.com/golang/protobuf v1.4.2
  396. github.com/golang/protobuf/proto
  397. # github.com/golang/snappy v0.0.1
  398. github.com/golang/snappy
  399. # github.com/google/go-github/v32 v32.1.0
  400. ## explicit
  401. github.com/google/go-github/v32/github
  402. # github.com/google/go-querystring v1.0.0
  403. github.com/google/go-querystring/query
  404. # github.com/google/uuid v1.1.1
  405. ## explicit
  406. github.com/google/uuid
  407. # github.com/gorilla/context v1.1.1
  408. ## explicit
  409. github.com/gorilla/context
  410. # github.com/gorilla/css v1.0.0
  411. github.com/gorilla/css/scanner
  412. # github.com/gorilla/handlers v1.4.2
  413. github.com/gorilla/handlers
  414. # github.com/gorilla/mux v1.7.3
  415. github.com/gorilla/mux
  416. # github.com/gorilla/securecookie v1.1.1
  417. github.com/gorilla/securecookie
  418. # github.com/gorilla/sessions v1.2.0
  419. github.com/gorilla/sessions
  420. # github.com/hashicorp/go-cleanhttp v0.5.1
  421. github.com/hashicorp/go-cleanhttp
  422. # github.com/hashicorp/go-retryablehttp v0.6.6
  423. ## explicit
  424. github.com/hashicorp/go-retryablehttp
  425. # github.com/hashicorp/hcl v1.0.0
  426. github.com/hashicorp/hcl
  427. github.com/hashicorp/hcl/hcl/ast
  428. github.com/hashicorp/hcl/hcl/parser
  429. github.com/hashicorp/hcl/hcl/printer
  430. github.com/hashicorp/hcl/hcl/scanner
  431. github.com/hashicorp/hcl/hcl/strconv
  432. github.com/hashicorp/hcl/hcl/token
  433. github.com/hashicorp/hcl/json/parser
  434. github.com/hashicorp/hcl/json/scanner
  435. github.com/hashicorp/hcl/json/token
  436. # github.com/huandu/xstrings v1.3.0
  437. ## explicit
  438. github.com/huandu/xstrings
  439. # github.com/imdario/mergo v0.3.9
  440. github.com/imdario/mergo
  441. # github.com/issue9/assert v1.3.2
  442. ## explicit
  443. # github.com/issue9/identicon v1.0.1
  444. ## explicit
  445. github.com/issue9/identicon
  446. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  447. ## explicit
  448. github.com/jaytaylor/html2text
  449. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  450. github.com/jbenet/go-context/io
  451. # github.com/jessevdk/go-flags v1.4.0
  452. github.com/jessevdk/go-flags
  453. # github.com/jmhodges/levigo v1.0.0
  454. ## explicit
  455. # github.com/json-iterator/go v1.1.10
  456. github.com/json-iterator/go
  457. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  458. ## explicit
  459. github.com/kballard/go-shellquote
  460. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  461. github.com/kevinburke/ssh_config
  462. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  463. ## explicit
  464. github.com/keybase/go-crypto/brainpool
  465. github.com/keybase/go-crypto/cast5
  466. github.com/keybase/go-crypto/curve25519
  467. github.com/keybase/go-crypto/ed25519
  468. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  469. github.com/keybase/go-crypto/openpgp
  470. github.com/keybase/go-crypto/openpgp/armor
  471. github.com/keybase/go-crypto/openpgp/ecdh
  472. github.com/keybase/go-crypto/openpgp/elgamal
  473. github.com/keybase/go-crypto/openpgp/errors
  474. github.com/keybase/go-crypto/openpgp/packet
  475. github.com/keybase/go-crypto/openpgp/s2k
  476. github.com/keybase/go-crypto/rsa
  477. # github.com/klauspost/compress v1.10.11
  478. ## explicit
  479. github.com/klauspost/compress/flate
  480. github.com/klauspost/compress/fse
  481. github.com/klauspost/compress/gzip
  482. github.com/klauspost/compress/huff0
  483. github.com/klauspost/compress/snappy
  484. github.com/klauspost/compress/zstd
  485. github.com/klauspost/compress/zstd/internal/xxhash
  486. # github.com/klauspost/cpuid v1.3.1
  487. github.com/klauspost/cpuid
  488. # github.com/klauspost/pgzip v1.2.1
  489. github.com/klauspost/pgzip
  490. # github.com/kr/pretty v0.2.0
  491. github.com/kr/pretty
  492. # github.com/kr/text v0.2.0
  493. github.com/kr/text
  494. # github.com/lafriks/xormstore v1.3.2
  495. ## explicit
  496. github.com/lafriks/xormstore
  497. github.com/lafriks/xormstore/util
  498. # github.com/lib/pq v1.7.0
  499. ## explicit
  500. github.com/lib/pq
  501. github.com/lib/pq/oid
  502. github.com/lib/pq/scram
  503. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  504. ## explicit
  505. github.com/lunny/dingtalk_webhook
  506. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  507. github.com/lunny/log
  508. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  509. github.com/lunny/nodb
  510. github.com/lunny/nodb/config
  511. github.com/lunny/nodb/store
  512. github.com/lunny/nodb/store/driver
  513. github.com/lunny/nodb/store/goleveldb
  514. # github.com/magiconair/properties v1.8.1
  515. github.com/magiconair/properties
  516. # github.com/mailru/easyjson v0.7.1
  517. github.com/mailru/easyjson
  518. github.com/mailru/easyjson/buffer
  519. github.com/mailru/easyjson/jlexer
  520. github.com/mailru/easyjson/jwriter
  521. # github.com/markbates/goth v1.61.2
  522. ## explicit
  523. github.com/markbates/goth
  524. github.com/markbates/goth/gothic
  525. github.com/markbates/goth/providers/bitbucket
  526. github.com/markbates/goth/providers/discord
  527. github.com/markbates/goth/providers/dropbox
  528. github.com/markbates/goth/providers/facebook
  529. github.com/markbates/goth/providers/gitea
  530. github.com/markbates/goth/providers/github
  531. github.com/markbates/goth/providers/gitlab
  532. github.com/markbates/goth/providers/google
  533. github.com/markbates/goth/providers/nextcloud
  534. github.com/markbates/goth/providers/openidConnect
  535. github.com/markbates/goth/providers/twitter
  536. github.com/markbates/goth/providers/yandex
  537. # github.com/mattn/go-colorable v0.1.6
  538. github.com/mattn/go-colorable
  539. # github.com/mattn/go-isatty v0.0.12
  540. ## explicit
  541. github.com/mattn/go-isatty
  542. # github.com/mattn/go-runewidth v0.0.7
  543. github.com/mattn/go-runewidth
  544. # github.com/mattn/go-sqlite3 v1.14.0
  545. ## explicit
  546. github.com/mattn/go-sqlite3
  547. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  548. github.com/matttproud/golang_protobuf_extensions/pbutil
  549. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  550. ## explicit
  551. github.com/mcuadros/go-version
  552. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  553. ## explicit
  554. github.com/mgechev/dots
  555. # github.com/mgechev/revive v1.0.2
  556. ## explicit
  557. github.com/mgechev/revive/formatter
  558. github.com/mgechev/revive/lint
  559. github.com/mgechev/revive/rule
  560. # github.com/mholt/archiver/v3 v3.3.0
  561. ## explicit
  562. github.com/mholt/archiver/v3
  563. # github.com/microcosm-cc/bluemonday v1.0.3-0.20191119130333-0a75d7616912
  564. ## explicit
  565. github.com/microcosm-cc/bluemonday
  566. # github.com/minio/md5-simd v1.1.0
  567. github.com/minio/md5-simd
  568. # github.com/minio/minio-go/v7 v7.0.4
  569. ## explicit
  570. github.com/minio/minio-go/v7
  571. github.com/minio/minio-go/v7/pkg/credentials
  572. github.com/minio/minio-go/v7/pkg/encrypt
  573. github.com/minio/minio-go/v7/pkg/lifecycle
  574. github.com/minio/minio-go/v7/pkg/notification
  575. github.com/minio/minio-go/v7/pkg/replication
  576. github.com/minio/minio-go/v7/pkg/s3utils
  577. github.com/minio/minio-go/v7/pkg/set
  578. github.com/minio/minio-go/v7/pkg/signer
  579. github.com/minio/minio-go/v7/pkg/sse
  580. github.com/minio/minio-go/v7/pkg/tags
  581. # github.com/minio/sha256-simd v0.1.1
  582. github.com/minio/sha256-simd
  583. # github.com/mitchellh/go-homedir v1.1.0
  584. ## explicit
  585. github.com/mitchellh/go-homedir
  586. # github.com/mitchellh/mapstructure v1.3.2
  587. github.com/mitchellh/mapstructure
  588. # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  589. github.com/modern-go/concurrent
  590. # github.com/modern-go/reflect2 v1.0.1
  591. github.com/modern-go/reflect2
  592. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  593. github.com/mrjones/oauth
  594. # github.com/mschoch/smat v0.2.0
  595. github.com/mschoch/smat
  596. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  597. ## explicit
  598. github.com/msteinert/pam
  599. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  600. ## explicit
  601. github.com/nfnt/resize
  602. # github.com/niklasfasching/go-org v0.1.9
  603. ## explicit
  604. github.com/niklasfasching/go-org/org
  605. # github.com/nwaples/rardecode v1.0.0
  606. github.com/nwaples/rardecode
  607. # github.com/olekukonko/tablewriter v0.0.4
  608. github.com/olekukonko/tablewriter
  609. # github.com/oliamb/cutter v0.2.2
  610. ## explicit
  611. github.com/oliamb/cutter
  612. # github.com/olivere/elastic/v7 v7.0.9
  613. ## explicit
  614. github.com/olivere/elastic/v7
  615. github.com/olivere/elastic/v7/config
  616. github.com/olivere/elastic/v7/uritemplates
  617. # github.com/pelletier/go-toml v1.8.0
  618. github.com/pelletier/go-toml
  619. # github.com/philhofer/fwd v1.0.0
  620. github.com/philhofer/fwd
  621. # github.com/pierrec/lz4 v2.0.5+incompatible
  622. github.com/pierrec/lz4
  623. github.com/pierrec/lz4/internal/xxh32
  624. # github.com/pkg/errors v0.9.1
  625. ## explicit
  626. github.com/pkg/errors
  627. # github.com/pmezard/go-difflib v1.0.0
  628. github.com/pmezard/go-difflib/difflib
  629. # github.com/pquerna/otp v1.2.0
  630. ## explicit
  631. github.com/pquerna/otp
  632. github.com/pquerna/otp/hotp
  633. github.com/pquerna/otp/totp
  634. # github.com/prometheus/client_golang v1.1.0
  635. ## explicit
  636. github.com/prometheus/client_golang/prometheus
  637. github.com/prometheus/client_golang/prometheus/internal
  638. github.com/prometheus/client_golang/prometheus/promhttp
  639. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  640. github.com/prometheus/client_model/go
  641. # github.com/prometheus/common v0.6.0
  642. github.com/prometheus/common/expfmt
  643. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  644. github.com/prometheus/common/model
  645. # github.com/prometheus/procfs v0.0.4
  646. ## explicit
  647. github.com/prometheus/procfs
  648. github.com/prometheus/procfs/internal/fs
  649. github.com/prometheus/procfs/internal/util
  650. # github.com/quasoft/websspi v1.0.0
  651. ## explicit
  652. github.com/quasoft/websspi
  653. github.com/quasoft/websspi/secctx
  654. # github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001
  655. ## explicit
  656. # github.com/rs/xid v1.2.1
  657. github.com/rs/xid
  658. # github.com/sergi/go-diff v1.1.0
  659. ## explicit
  660. github.com/sergi/go-diff/diffmatchpatch
  661. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  662. ## explicit
  663. github.com/shurcooL/httpfs/vfsutil
  664. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  665. ## explicit
  666. github.com/shurcooL/vfsgen
  667. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  668. github.com/siddontang/go-snappy/snappy
  669. # github.com/spf13/afero v1.3.2
  670. github.com/spf13/afero
  671. github.com/spf13/afero/mem
  672. # github.com/spf13/cast v1.3.1
  673. github.com/spf13/cast
  674. # github.com/spf13/jwalterweatherman v1.1.0
  675. github.com/spf13/jwalterweatherman
  676. # github.com/spf13/pflag v1.0.5
  677. github.com/spf13/pflag
  678. # github.com/spf13/viper v1.7.0
  679. github.com/spf13/viper
  680. # github.com/steveyen/gtreap v0.1.0
  681. github.com/steveyen/gtreap
  682. # github.com/stretchr/testify v1.6.1
  683. ## explicit
  684. github.com/stretchr/testify/assert
  685. github.com/stretchr/testify/require
  686. # github.com/subosito/gotenv v1.2.0
  687. github.com/subosito/gotenv
  688. # github.com/syndtr/goleveldb v1.0.0
  689. github.com/syndtr/goleveldb/leveldb
  690. github.com/syndtr/goleveldb/leveldb/cache
  691. github.com/syndtr/goleveldb/leveldb/comparer
  692. github.com/syndtr/goleveldb/leveldb/errors
  693. github.com/syndtr/goleveldb/leveldb/filter
  694. github.com/syndtr/goleveldb/leveldb/iterator
  695. github.com/syndtr/goleveldb/leveldb/journal
  696. github.com/syndtr/goleveldb/leveldb/memdb
  697. github.com/syndtr/goleveldb/leveldb/opt
  698. github.com/syndtr/goleveldb/leveldb/storage
  699. github.com/syndtr/goleveldb/leveldb/table
  700. github.com/syndtr/goleveldb/leveldb/util
  701. # github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481
  702. ## explicit
  703. # github.com/tinylib/msgp v1.1.2
  704. ## explicit
  705. github.com/tinylib/msgp/msgp
  706. # github.com/toqueteos/webbrowser v1.2.0
  707. github.com/toqueteos/webbrowser
  708. # github.com/tstranex/u2f v1.0.0
  709. ## explicit
  710. github.com/tstranex/u2f
  711. # github.com/ulikunitz/xz v0.5.6
  712. github.com/ulikunitz/xz
  713. github.com/ulikunitz/xz/internal/hash
  714. github.com/ulikunitz/xz/internal/xlog
  715. github.com/ulikunitz/xz/lzma
  716. # github.com/unknwon/com v1.0.1
  717. ## explicit
  718. github.com/unknwon/com
  719. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  720. ## explicit
  721. github.com/unknwon/i18n
  722. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  723. ## explicit
  724. github.com/unknwon/paginater
  725. # github.com/urfave/cli v1.20.0
  726. ## explicit
  727. github.com/urfave/cli
  728. # github.com/willf/bitset v1.1.10
  729. github.com/willf/bitset
  730. # github.com/xanzy/go-gitlab v0.31.0
  731. ## explicit
  732. github.com/xanzy/go-gitlab
  733. # github.com/xanzy/ssh-agent v0.2.1
  734. github.com/xanzy/ssh-agent
  735. # github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
  736. github.com/xi2/xz
  737. # github.com/yohcop/openid-go v1.0.0
  738. ## explicit
  739. github.com/yohcop/openid-go
  740. # github.com/yuin/goldmark v1.2.1
  741. ## explicit
  742. github.com/yuin/goldmark
  743. github.com/yuin/goldmark/ast
  744. github.com/yuin/goldmark/extension
  745. github.com/yuin/goldmark/extension/ast
  746. github.com/yuin/goldmark/parser
  747. github.com/yuin/goldmark/renderer
  748. github.com/yuin/goldmark/renderer/html
  749. github.com/yuin/goldmark/text
  750. github.com/yuin/goldmark/util
  751. # github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
  752. ## explicit
  753. github.com/yuin/goldmark-highlighting
  754. # github.com/yuin/goldmark-meta v0.0.0-20191126180153-f0638e958b60
  755. ## explicit
  756. github.com/yuin/goldmark-meta
  757. # go.etcd.io/bbolt v1.3.4
  758. go.etcd.io/bbolt
  759. # go.mongodb.org/mongo-driver v1.3.5
  760. go.mongodb.org/mongo-driver/bson
  761. go.mongodb.org/mongo-driver/bson/bsoncodec
  762. go.mongodb.org/mongo-driver/bson/bsonoptions
  763. go.mongodb.org/mongo-driver/bson/bsonrw
  764. go.mongodb.org/mongo-driver/bson/bsontype
  765. go.mongodb.org/mongo-driver/bson/primitive
  766. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  767. # golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
  768. ## explicit
  769. golang.org/x/crypto/acme
  770. golang.org/x/crypto/acme/autocert
  771. golang.org/x/crypto/argon2
  772. golang.org/x/crypto/bcrypt
  773. golang.org/x/crypto/blake2b
  774. golang.org/x/crypto/blowfish
  775. golang.org/x/crypto/cast5
  776. golang.org/x/crypto/chacha20
  777. golang.org/x/crypto/curve25519
  778. golang.org/x/crypto/ed25519
  779. golang.org/x/crypto/ed25519/internal/edwards25519
  780. golang.org/x/crypto/internal/subtle
  781. golang.org/x/crypto/md4
  782. golang.org/x/crypto/openpgp
  783. golang.org/x/crypto/openpgp/armor
  784. golang.org/x/crypto/openpgp/elgamal
  785. golang.org/x/crypto/openpgp/errors
  786. golang.org/x/crypto/openpgp/packet
  787. golang.org/x/crypto/openpgp/s2k
  788. golang.org/x/crypto/pbkdf2
  789. golang.org/x/crypto/poly1305
  790. golang.org/x/crypto/scrypt
  791. golang.org/x/crypto/ssh
  792. golang.org/x/crypto/ssh/agent
  793. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  794. golang.org/x/crypto/ssh/knownhosts
  795. # golang.org/x/mod v0.3.0
  796. golang.org/x/mod/module
  797. golang.org/x/mod/semver
  798. # golang.org/x/net v0.0.0-20200707034311-ab3426394381
  799. ## explicit
  800. golang.org/x/net/context
  801. golang.org/x/net/context/ctxhttp
  802. golang.org/x/net/html
  803. golang.org/x/net/html/atom
  804. golang.org/x/net/html/charset
  805. golang.org/x/net/http/httpguts
  806. golang.org/x/net/idna
  807. golang.org/x/net/internal/socks
  808. golang.org/x/net/proxy
  809. golang.org/x/net/publicsuffix
  810. # golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  811. ## explicit
  812. golang.org/x/oauth2
  813. golang.org/x/oauth2/google
  814. golang.org/x/oauth2/internal
  815. golang.org/x/oauth2/jws
  816. golang.org/x/oauth2/jwt
  817. # golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae
  818. ## explicit
  819. golang.org/x/sys/cpu
  820. golang.org/x/sys/internal/unsafeheader
  821. golang.org/x/sys/unix
  822. golang.org/x/sys/windows
  823. golang.org/x/sys/windows/svc
  824. golang.org/x/sys/windows/svc/debug
  825. # golang.org/x/text v0.3.3
  826. ## explicit
  827. golang.org/x/text/encoding
  828. golang.org/x/text/encoding/charmap
  829. golang.org/x/text/encoding/htmlindex
  830. golang.org/x/text/encoding/internal
  831. golang.org/x/text/encoding/internal/identifier
  832. golang.org/x/text/encoding/japanese
  833. golang.org/x/text/encoding/korean
  834. golang.org/x/text/encoding/simplifiedchinese
  835. golang.org/x/text/encoding/traditionalchinese
  836. golang.org/x/text/encoding/unicode
  837. golang.org/x/text/internal/language
  838. golang.org/x/text/internal/language/compact
  839. golang.org/x/text/internal/tag
  840. golang.org/x/text/internal/utf8internal
  841. golang.org/x/text/language
  842. golang.org/x/text/runes
  843. golang.org/x/text/secure/bidirule
  844. golang.org/x/text/transform
  845. golang.org/x/text/unicode/bidi
  846. golang.org/x/text/unicode/norm
  847. golang.org/x/text/width
  848. # golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
  849. ## explicit
  850. golang.org/x/time/rate
  851. # golang.org/x/tools v0.0.0-20200814230902-9882f1d1823d
  852. ## explicit
  853. golang.org/x/tools/cover
  854. golang.org/x/tools/go/analysis
  855. golang.org/x/tools/go/analysis/internal/analysisflags
  856. golang.org/x/tools/go/analysis/internal/facts
  857. golang.org/x/tools/go/analysis/unitchecker
  858. golang.org/x/tools/go/ast/astutil
  859. golang.org/x/tools/go/buildutil
  860. golang.org/x/tools/go/gcexportdata
  861. golang.org/x/tools/go/internal/cgo
  862. golang.org/x/tools/go/internal/gcimporter
  863. golang.org/x/tools/go/internal/packagesdriver
  864. golang.org/x/tools/go/loader
  865. golang.org/x/tools/go/packages
  866. golang.org/x/tools/go/types/objectpath
  867. golang.org/x/tools/imports
  868. golang.org/x/tools/internal/analysisinternal
  869. golang.org/x/tools/internal/event
  870. golang.org/x/tools/internal/event/core
  871. golang.org/x/tools/internal/event/keys
  872. golang.org/x/tools/internal/event/label
  873. golang.org/x/tools/internal/fastwalk
  874. golang.org/x/tools/internal/gocommand
  875. golang.org/x/tools/internal/gopathwalk
  876. golang.org/x/tools/internal/imports
  877. golang.org/x/tools/internal/lsp/fuzzy
  878. golang.org/x/tools/internal/packagesinternal
  879. golang.org/x/tools/internal/typesinternal
  880. # golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  881. golang.org/x/xerrors
  882. golang.org/x/xerrors/internal
  883. # google.golang.org/appengine v1.6.6
  884. google.golang.org/appengine
  885. google.golang.org/appengine/internal
  886. google.golang.org/appengine/internal/app_identity
  887. google.golang.org/appengine/internal/base
  888. google.golang.org/appengine/internal/datastore
  889. google.golang.org/appengine/internal/log
  890. google.golang.org/appengine/internal/modules
  891. google.golang.org/appengine/internal/remote_api
  892. google.golang.org/appengine/internal/urlfetch
  893. google.golang.org/appengine/urlfetch
  894. # google.golang.org/protobuf v1.25.0
  895. google.golang.org/protobuf/encoding/prototext
  896. google.golang.org/protobuf/encoding/protowire
  897. google.golang.org/protobuf/internal/descfmt
  898. google.golang.org/protobuf/internal/descopts
  899. google.golang.org/protobuf/internal/detrand
  900. google.golang.org/protobuf/internal/encoding/defval
  901. google.golang.org/protobuf/internal/encoding/messageset
  902. google.golang.org/protobuf/internal/encoding/tag
  903. google.golang.org/protobuf/internal/encoding/text
  904. google.golang.org/protobuf/internal/errors
  905. google.golang.org/protobuf/internal/fieldsort
  906. google.golang.org/protobuf/internal/filedesc
  907. google.golang.org/protobuf/internal/filetype
  908. google.golang.org/protobuf/internal/flags
  909. google.golang.org/protobuf/internal/genid
  910. google.golang.org/protobuf/internal/impl
  911. google.golang.org/protobuf/internal/mapsort
  912. google.golang.org/protobuf/internal/pragma
  913. google.golang.org/protobuf/internal/set
  914. google.golang.org/protobuf/internal/strs
  915. google.golang.org/protobuf/internal/version
  916. google.golang.org/protobuf/proto
  917. google.golang.org/protobuf/reflect/protoreflect
  918. google.golang.org/protobuf/reflect/protoregistry
  919. google.golang.org/protobuf/runtime/protoiface
  920. google.golang.org/protobuf/runtime/protoimpl
  921. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  922. ## explicit
  923. gopkg.in/alexcesaro/quotedprintable.v3
  924. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  925. ## explicit
  926. gopkg.in/asn1-ber.v1
  927. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  928. ## explicit
  929. gopkg.in/gomail.v2
  930. # gopkg.in/ini.v1 v1.60.2
  931. ## explicit
  932. gopkg.in/ini.v1
  933. # gopkg.in/ldap.v3 v3.0.2
  934. ## explicit
  935. gopkg.in/ldap.v3
  936. # gopkg.in/warnings.v0 v0.1.2
  937. gopkg.in/warnings.v0
  938. # gopkg.in/yaml.v2 v2.3.0
  939. ## explicit
  940. gopkg.in/yaml.v2
  941. # gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
  942. gopkg.in/yaml.v3
  943. # mvdan.cc/xurls/v2 v2.1.0
  944. ## explicit
  945. mvdan.cc/xurls/v2
  946. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  947. ## explicit
  948. strk.kbt.io/projects/go/libravatar
  949. # xorm.io/builder v0.3.7
  950. ## explicit
  951. xorm.io/builder
  952. # xorm.io/xorm v1.0.4-0.20200718080127-318102c9ff87
  953. ## explicit
  954. xorm.io/xorm
  955. xorm.io/xorm/caches
  956. xorm.io/xorm/contexts
  957. xorm.io/xorm/convert
  958. xorm.io/xorm/core
  959. xorm.io/xorm/dialects
  960. xorm.io/xorm/internal/json
  961. xorm.io/xorm/internal/statements
  962. xorm.io/xorm/internal/utils
  963. xorm.io/xorm/log
  964. xorm.io/xorm/names
  965. xorm.io/xorm/schemas
  966. xorm.io/xorm/tags