2020-02-07 16:36:28 +00:00
// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
// Package admin implements administrative endpoints for satellite.
package admin
import (
"context"
2020-02-07 17:24:58 +00:00
"crypto/subtle"
2020-04-16 16:50:22 +01:00
"errors"
2022-11-10 13:19:42 +00:00
"fmt"
2020-02-07 16:36:28 +00:00
"net"
"net/http"
2020-09-03 22:12:26 +01:00
"time"
2020-02-07 16:36:28 +00:00
"github.com/gorilla/mux"
"go.uber.org/zap"
"golang.org/x/sync/errgroup"
2020-02-07 17:24:58 +00:00
2020-04-16 16:50:22 +01:00
"storj.io/common/errs2"
2020-02-07 17:24:58 +00:00
"storj.io/storj/satellite/accounting"
2022-03-23 13:29:47 +00:00
adminui "storj.io/storj/satellite/admin/ui"
2021-11-12 20:47:41 +00:00
"storj.io/storj/satellite/buckets"
2020-02-07 17:24:58 +00:00
"storj.io/storj/satellite/console"
2022-05-27 21:13:01 +01:00
"storj.io/storj/satellite/console/consoleweb"
2022-04-12 17:59:07 +01:00
"storj.io/storj/satellite/console/restkeys"
2022-01-19 18:25:31 +00:00
"storj.io/storj/satellite/oidc"
2020-07-06 22:31:40 +01:00
"storj.io/storj/satellite/payments"
2020-05-19 11:36:13 +01:00
"storj.io/storj/satellite/payments/stripecoinpayments"
2020-02-07 16:36:28 +00:00
)
// Config defines configuration for debug server.
type Config struct {
2022-11-10 13:19:42 +00:00
Address string ` help:"admin peer http listening address" releaseDefault:"" devDefault:"" `
StaticDir string ` help:"an alternate directory path which contains the static assets to serve. When empty, it uses the embedded assets" releaseDefault:"" devDefault:"" `
AllowedOauthHost string ` help:"the oauth host allowed to bypass token authentication." `
2020-02-07 17:24:58 +00:00
AuthorizationToken string ` internal:"true" `
}
// DB is databases needed for the admin server.
type DB interface {
// ProjectAccounting returns database for storing information about project data use
ProjectAccounting ( ) accounting . ProjectAccounting
// Console returns database for satellite console
Console ( ) console . DB
2022-01-19 18:25:31 +00:00
// OIDC returns the database for OIDC and OAuth information.
OIDC ( ) oidc . DB
2020-05-19 11:36:13 +01:00
// StripeCoinPayments returns database for satellite stripe coin payments
StripeCoinPayments ( ) stripecoinpayments . DB
2020-02-07 16:36:28 +00:00
}
2020-08-13 13:40:05 +01:00
// Server provides endpoints for administrative tasks.
2020-02-07 16:36:28 +00:00
type Server struct {
log * zap . Logger
listener net . Listener
server http . Server
2020-02-07 17:24:58 +00:00
2022-04-12 17:59:07 +01:00
db DB
payments payments . Accounts
buckets * buckets . Service
restKeys * restkeys . Service
2020-09-03 22:12:26 +01:00
nowFn func ( ) time . Time
2021-11-01 15:27:32 +00:00
2022-05-27 21:13:01 +01:00
console consoleweb . Config
config Config
2020-02-07 16:36:28 +00:00
}
2020-08-13 13:40:05 +01:00
// NewServer returns a new administration Server.
2022-05-27 21:13:01 +01:00
func NewServer ( log * zap . Logger , listener net . Listener , db DB , buckets * buckets . Service , restKeys * restkeys . Service , accounts payments . Accounts , console consoleweb . Config , config Config ) * Server {
2020-02-07 17:24:58 +00:00
server := & Server {
2020-07-16 12:58:40 +01:00
log : log ,
2020-07-06 22:31:40 +01:00
listener : listener ,
2022-04-12 17:59:07 +01:00
db : db ,
payments : accounts ,
buckets : buckets ,
restKeys : restKeys ,
2020-09-03 22:12:26 +01:00
nowFn : time . Now ,
2021-11-01 15:27:32 +00:00
2022-05-27 21:13:01 +01:00
console : console ,
config : config ,
2020-02-07 17:24:58 +00:00
}
2020-02-07 16:36:28 +00:00
2021-10-01 13:26:21 +01:00
root := mux . NewRouter ( )
2020-02-07 17:24:58 +00:00
2021-10-01 13:26:21 +01:00
api := root . PathPrefix ( "/api/" ) . Subrouter ( )
2022-11-10 13:19:42 +00:00
api . Use ( allowedAuthorization ( log , config ) )
2020-02-07 17:24:58 +00:00
2021-10-01 13:26:21 +01:00
// When adding new options, also update README.md
api . HandleFunc ( "/users" , server . addUser ) . Methods ( "POST" )
api . HandleFunc ( "/users/{useremail}" , server . updateUser ) . Methods ( "PUT" )
api . HandleFunc ( "/users/{useremail}" , server . userInfo ) . Methods ( "GET" )
api . HandleFunc ( "/users/{useremail}" , server . deleteUser ) . Methods ( "DELETE" )
2022-05-27 23:04:12 +01:00
api . HandleFunc ( "/users/{useremail}/mfa" , server . disableUserMFA ) . Methods ( "DELETE" )
2022-01-11 18:42:17 +00:00
api . HandleFunc ( "/oauth/clients" , server . createOAuthClient ) . Methods ( "POST" )
api . HandleFunc ( "/oauth/clients/{id}" , server . updateOAuthClient ) . Methods ( "PUT" )
api . HandleFunc ( "/oauth/clients/{id}" , server . deleteOAuthClient ) . Methods ( "DELETE" )
2021-10-01 13:26:21 +01:00
api . HandleFunc ( "/projects" , server . addProject ) . Methods ( "POST" )
api . HandleFunc ( "/projects/{project}/usage" , server . checkProjectUsage ) . Methods ( "GET" )
api . HandleFunc ( "/projects/{project}/limit" , server . getProjectLimit ) . Methods ( "GET" )
api . HandleFunc ( "/projects/{project}/limit" , server . putProjectLimit ) . Methods ( "PUT" , "POST" )
api . HandleFunc ( "/projects/{project}" , server . getProject ) . Methods ( "GET" )
api . HandleFunc ( "/projects/{project}" , server . renameProject ) . Methods ( "PUT" )
api . HandleFunc ( "/projects/{project}" , server . deleteProject ) . Methods ( "DELETE" )
api . HandleFunc ( "/projects/{project}/apikeys" , server . listAPIKeys ) . Methods ( "GET" )
api . HandleFunc ( "/projects/{project}/apikeys" , server . addAPIKey ) . Methods ( "POST" )
api . HandleFunc ( "/projects/{project}/apikeys/{name}" , server . deleteAPIKeyByName ) . Methods ( "DELETE" )
2021-11-30 17:47:14 +00:00
api . HandleFunc ( "/projects/{project}/buckets/{bucket}" , server . getBucketInfo ) . Methods ( "GET" )
2021-11-12 20:48:29 +00:00
api . HandleFunc ( "/projects/{project}/buckets/{bucket}/geofence" , server . createGeofenceForBucket ) . Methods ( "POST" )
api . HandleFunc ( "/projects/{project}/buckets/{bucket}/geofence" , server . deleteGeofenceForBucket ) . Methods ( "DELETE" )
2021-10-01 13:26:21 +01:00
api . HandleFunc ( "/apikeys/{apikey}" , server . deleteAPIKey ) . Methods ( "DELETE" )
2022-04-12 17:59:07 +01:00
api . HandleFunc ( "/restkeys/{useremail}" , server . addRESTKey ) . Methods ( "POST" )
api . HandleFunc ( "/restkeys/{apikey}/revoke" , server . revokeRESTKey ) . Methods ( "PUT" )
2021-10-01 13:26:21 +01:00
// This handler must be the last one because it uses the root as prefix,
// otherwise will try to serve all the handlers set after this one.
if config . StaticDir == "" {
2022-03-23 13:29:47 +00:00
root . PathPrefix ( "/" ) . Handler ( http . FileServer ( http . FS ( adminui . Assets ) ) ) . Methods ( "GET" )
2021-10-01 13:26:21 +01:00
} else {
root . PathPrefix ( "/" ) . Handler ( http . FileServer ( http . Dir ( config . StaticDir ) ) ) . Methods ( "GET" )
2020-02-07 17:24:58 +00:00
}
2021-10-01 13:26:21 +01:00
server . server . Handler = root
return server
2020-02-07 17:24:58 +00:00
}
2020-08-13 13:40:05 +01:00
// Run starts the admin endpoint.
2020-02-07 16:36:28 +00:00
func ( server * Server ) Run ( ctx context . Context ) error {
if server . listener == nil {
return nil
}
ctx , cancel := context . WithCancel ( ctx )
var group errgroup . Group
group . Go ( func ( ) error {
<- ctx . Done ( )
return Error . Wrap ( server . server . Shutdown ( context . Background ( ) ) )
} )
group . Go ( func ( ) error {
defer cancel ( )
2020-04-16 16:50:22 +01:00
err := server . server . Serve ( server . listener )
if errs2 . IsCanceled ( err ) || errors . Is ( err , http . ErrServerClosed ) {
err = nil
}
return Error . Wrap ( err )
2020-02-07 16:36:28 +00:00
} )
return group . Wait ( )
}
2020-09-03 22:12:26 +01:00
// SetNow allows tests to have the server act as if the current time is whatever they want.
func ( server * Server ) SetNow ( nowFn func ( ) time . Time ) {
server . nowFn = nowFn
}
2020-02-07 16:36:28 +00:00
// Close closes server and underlying listener.
func ( server * Server ) Close ( ) error {
return Error . Wrap ( server . server . Close ( ) )
}
2021-10-01 13:26:21 +01:00
2022-11-10 13:19:42 +00:00
func allowedAuthorization ( log * zap . Logger , config Config ) func ( next http . Handler ) http . Handler {
2021-10-01 13:26:21 +01:00
return func ( next http . Handler ) http . Handler {
return http . HandlerFunc ( func ( w http . ResponseWriter , r * http . Request ) {
2022-11-10 13:19:42 +00:00
if r . Host != config . AllowedOauthHost {
// not behind the proxy; use old authentication method.
if config . AuthorizationToken == "" {
sendJSONError ( w , "Authorization not enabled." ,
"" , http . StatusForbidden )
return
}
equality := subtle . ConstantTimeCompare (
[ ] byte ( r . Header . Get ( "Authorization" ) ) ,
[ ] byte ( config . AuthorizationToken ) ,
)
if equality != 1 {
sendJSONError ( w , "Forbidden" ,
"" , http . StatusForbidden )
return
}
2021-10-01 13:26:21 +01:00
}
2022-11-10 13:19:42 +00:00
log . Info (
"admin action" ,
zap . String ( "host" , r . Host ) ,
zap . String ( "user" , r . Header . Get ( "X-Forwarded-Email" ) ) ,
zap . String ( "action" , fmt . Sprintf ( "%s-%s" , r . Method , r . RequestURI ) ) ,
zap . String ( "queries" , r . URL . Query ( ) . Encode ( ) ) ,
2021-10-01 13:26:21 +01:00
)
r . Header . Set ( "Cache-Control" , "must-revalidate" )
next . ServeHTTP ( w , r )
} )
}
}