Files
QSfera/konnectd/pkg/service/v0/service.go
T
Jörn Friedrich Dreyer 76c63ef696 close request bodies
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2020-11-05 13:06:05 +01:00

215 lines
5.5 KiB
Go

package svc
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"net/http"
"os"
"github.com/go-chi/chi"
"github.com/gorilla/mux"
"github.com/owncloud/ocis/konnectd/pkg/assets"
"github.com/owncloud/ocis/konnectd/pkg/config"
logw "github.com/owncloud/ocis/konnectd/pkg/log"
"github.com/owncloud/ocis/konnectd/pkg/middleware"
"github.com/owncloud/ocis/ocis-pkg/log"
"stash.kopano.io/kc/konnect/bootstrap"
kcconfig "stash.kopano.io/kc/konnect/config"
"stash.kopano.io/kc/konnect/server"
"stash.kopano.io/kgol/rndm"
)
// Service defines the extension handlers.
type Service interface {
ServeHTTP(http.ResponseWriter, *http.Request)
Dummy(http.ResponseWriter, *http.Request)
}
// NewService returns a service implementation for Service.
func NewService(opts ...Option) Service {
ctx := context.Background()
options := newOptions(opts...)
logger := options.Logger.Logger
assetVFS := assets.New(
assets.Logger(options.Logger),
assets.Config(options.Config),
)
if err := initKonnectInternalEnvVars(); err != nil {
logger.Fatal().Err(err).Msg("could not initialize env vars")
}
if err := createConfigsIfNotExist(assetVFS); err != nil {
logger.Fatal().Err(err).Msg("could not create default config")
}
bs, err := bootstrap.Boot(ctx, &options.Config.Konnectd, &kcconfig.Config{
Logger: logw.Wrap(logger),
})
if err != nil {
logger.Fatal().Err(err).Msg("could not bootstrap konnectd")
}
managers := bs.Managers()
routes := []server.WithRoutes{managers.Must("identity").(server.WithRoutes)}
handlers := managers.Must("handler").(http.Handler)
svc := Konnectd{
logger: options.Logger,
config: options.Config,
assets: assetVFS,
}
svc.initMux(ctx, routes, handlers, options)
return svc
}
func createConfigsIfNotExist(assets http.FileSystem) error {
if _, err := os.Stat("./config"); os.IsNotExist(err) {
if err := os.Mkdir("./config", 0700); err != nil {
return err
}
}
if _, err := os.Stat("./config/identifier-registration.yaml"); os.IsNotExist(err) {
defaultConf, err := assets.Open("/identifier-registration.yaml")
if err != nil {
return err
}
defer defaultConf.Close()
confOnDisk, err := os.Create("./config/identifier-registration.yaml")
if err != nil {
return err
}
defer confOnDisk.Close()
conf, err := ioutil.ReadAll(defaultConf)
if err != nil {
return err
}
err = ioutil.WriteFile("./config/identifier-registration.yaml", conf, 0600)
if err != nil {
return err
}
}
return nil
}
// Init vars which are currently not accessible via konnectd api
func initKonnectInternalEnvVars() error {
var defaults = map[string]string{
"LDAP_URI": "ldap://localhost:9125",
"LDAP_BINDDN": "cn=konnectd,ou=sysusers,dc=example,dc=org",
"LDAP_BINDPW": "konnectd",
"LDAP_BASEDN": "ou=users,dc=example,dc=org",
"LDAP_SCOPE": "sub",
"LDAP_LOGIN_ATTRIBUTE": "cn",
"LDAP_EMAIL_ATTRIBUTE": "mail",
"LDAP_NAME_ATTRIBUTE": "sn",
"LDAP_UUID_ATTRIBUTE": "uid",
"LDAP_UUID_ATTRIBUTE_TYPE": "text",
"LDAP_FILTER": "(objectClass=posixaccount)",
}
for k, v := range defaults {
if _, exists := os.LookupEnv(k); !exists {
if err := os.Setenv(k, v); err != nil {
return fmt.Errorf("could not set env var %s=%s", k, v)
}
}
}
return nil
}
// Konnectd defines implements the business logic for Service.
type Konnectd struct {
logger log.Logger
config *config.Config
mux *chi.Mux
assets http.FileSystem
}
// initMux initializes the internal konnectd gorilla mux and mounts it in to a ocis chi-router
func (k *Konnectd) initMux(ctx context.Context, r []server.WithRoutes, h http.Handler, options Options) {
gm := mux.NewRouter()
for _, route := range r {
route.AddRoutes(ctx, gm)
}
// Delegate rest to provider which is also a handler.
if h != nil {
gm.NotFoundHandler = h
}
k.mux = chi.NewMux()
k.mux.Use(options.Middleware...)
k.mux.Use(middleware.Static(
"/signin/v1/",
assets.New(
assets.Logger(options.Logger),
assets.Config(options.Config),
),
))
// handle / | index.html with a template that needs to have the BASE_PREFIX replaced
k.mux.Get("/signin/v1/identifier", k.Index())
k.mux.Get("/signin/v1/identifier/", k.Index())
k.mux.Get("/signin/v1/identifier/index.html", k.Index())
k.mux.Mount("/", gm)
}
// ServeHTTP implements the Service interface.
func (k Konnectd) ServeHTTP(w http.ResponseWriter, r *http.Request) {
k.mux.ServeHTTP(w, r)
}
// Dummy implements the Service interface.
func (k Konnectd) Dummy(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain")
w.WriteHeader(http.StatusOK)
w.Write([]byte(http.StatusText(http.StatusOK)))
}
// Index renders the static html with the
func (k Konnectd) Index() http.HandlerFunc {
f, err := k.assets.Open("/identifier/index.html")
if err != nil {
k.logger.Fatal().Err(err).Msg("Could not open index template")
}
template, err := ioutil.ReadAll(f)
if err != nil {
k.logger.Fatal().Err(err).Msg("Could not read index template")
}
if err = f.Close(); err != nil {
k.logger.Fatal().Err(err).Msg("Could not close body")
}
// TODO add environment variable to make the path prefix configurable
pp := "/signin/v1"
indexHTML := bytes.Replace(template, []byte("__PATH_PREFIX__"), []byte(pp), 1)
nonce := rndm.GenerateRandomString(32)
indexHTML = bytes.Replace(indexHTML, []byte("__CSP_NONCE__"), []byte(nonce), 1)
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write(indexHTML)
})
}