From 82f8b4d838de3fb8eda5db9b23c5bc48ab281f9e Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sat, 26 May 2018 16:42:17 -0700 Subject: remove golang API server Not following that path; this is to prevent future confusion. All code is still in version control. --- golang/gen/restapi/configure_fatcat.go | 89 ---------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 golang/gen/restapi/configure_fatcat.go (limited to 'golang/gen/restapi/configure_fatcat.go') diff --git a/golang/gen/restapi/configure_fatcat.go b/golang/gen/restapi/configure_fatcat.go deleted file mode 100644 index e101a019..00000000 --- a/golang/gen/restapi/configure_fatcat.go +++ /dev/null @@ -1,89 +0,0 @@ -// This file is safe to edit. Once it exists it will not be overwritten - -package restapi - -import ( - "crypto/tls" - "net/http" - - errors "github.com/go-openapi/errors" - runtime "github.com/go-openapi/runtime" - middleware "github.com/go-openapi/runtime/middleware" - graceful "github.com/tylerb/graceful" - - "git.archive.org/bnewbold/fatcat/golang/gen/restapi/operations" -) - -//go:generate swagger generate server --target ../gen --name fatcat --spec ../fatcat-openapi2.json --exclude-main - -func configureFlags(api *operations.FatcatAPI) { - // api.CommandLineOptionsGroups = []swag.CommandLineOptionsGroup{ ... } -} - -func configureAPI(api *operations.FatcatAPI) http.Handler { - // configure the api here - api.ServeError = errors.ServeError - - // Set your custom logger if needed. Default one is log.Printf - // Expected interface func(string, ...interface{}) - // - // Example: - // api.Logger = log.Printf - - api.JSONConsumer = runtime.JSONConsumer() - - api.JSONProducer = runtime.JSONProducer() - - api.GetCreatorIDHandler = operations.GetCreatorIDHandlerFunc(func(params operations.GetCreatorIDParams) middleware.Responder { - return middleware.NotImplemented("operation .GetCreatorID has not yet been implemented") - }) - api.GetCreatorLookupHandler = operations.GetCreatorLookupHandlerFunc(func(params operations.GetCreatorLookupParams) middleware.Responder { - return middleware.NotImplemented("operation .GetCreatorLookup has not yet been implemented") - }) - api.GetEditgroupIDHandler = operations.GetEditgroupIDHandlerFunc(func(params operations.GetEditgroupIDParams) middleware.Responder { - return middleware.NotImplemented("operation .GetEditgroupID has not yet been implemented") - }) - api.GetEditorUsernameHandler = operations.GetEditorUsernameHandlerFunc(func(params operations.GetEditorUsernameParams) middleware.Responder { - return middleware.NotImplemented("operation .GetEditorUsername has not yet been implemented") - }) - api.GetEditorUsernameChangelogHandler = operations.GetEditorUsernameChangelogHandlerFunc(func(params operations.GetEditorUsernameChangelogParams) middleware.Responder { - return middleware.NotImplemented("operation .GetEditorUsernameChangelog has not yet been implemented") - }) - api.PostCreatorHandler = operations.PostCreatorHandlerFunc(func(params operations.PostCreatorParams) middleware.Responder { - return middleware.NotImplemented("operation .PostCreator has not yet been implemented") - }) - api.PostEditgroupHandler = operations.PostEditgroupHandlerFunc(func(params operations.PostEditgroupParams) middleware.Responder { - return middleware.NotImplemented("operation .PostEditgroup has not yet been implemented") - }) - api.PostEditgroupIDAcceptHandler = operations.PostEditgroupIDAcceptHandlerFunc(func(params operations.PostEditgroupIDAcceptParams) middleware.Responder { - return middleware.NotImplemented("operation .PostEditgroupIDAccept has not yet been implemented") - }) - - api.ServerShutdown = func() {} - - return setupGlobalMiddleware(api.Serve(setupMiddlewares)) -} - -// The TLS configuration before HTTPS server starts. -func configureTLS(tlsConfig *tls.Config) { - // Make all necessary changes to the TLS configuration here. -} - -// As soon as server is initialized but not run yet, this function will be called. -// If you need to modify a config, store server instance to stop it individually later, this is the place. -// This function can be called multiple times, depending on the number of serving schemes. -// scheme value will be set accordingly: "http", "https" or "unix" -func configureServer(s *graceful.Server, scheme, addr string) { -} - -// The middleware configuration is for the handler executors. These do not apply to the swagger.json document. -// The middleware executes after routing but before authentication, binding and validation -func setupMiddlewares(handler http.Handler) http.Handler { - return handler -} - -// The middleware configuration happens before anything, this middleware also applies to serving the swagger.json document. -// So this is a good place to plug in a panic handling middleware, logging and metrics -func setupGlobalMiddleware(handler http.Handler) http.Handler { - return handler -} -- cgit v1.2.3