ensure the same data on /ocs/v?.php/config like oC10
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
Bugfix: ensure the same data on /ocs/v?.php/config like oC10
|
||||||
|
|
||||||
|
We've fixed the returned values on the /ocs/v?.php/config endpoints,
|
||||||
|
so that they now return the same values as an oC10 would do.
|
||||||
|
|
||||||
|
https://github.com/owncloud/ocis/pull/3113
|
||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"strconv"
|
"strconv"
|
||||||
@@ -96,7 +97,11 @@ func Frontend(cfg *config.Config) *cli.Command {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
revaCfg := frontendConfigFromStruct(c, cfg, filesCfg)
|
revaCfg, err := frontendConfigFromStruct(c, cfg, filesCfg)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error().Err(err).Msg("could not generate frontend configuration")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
gr.Add(func() error {
|
gr.Add(func() error {
|
||||||
runtime.RunWithOptions(revaCfg, pidFile, runtime.WithLogger(&logger.Logger))
|
runtime.RunWithOptions(revaCfg, pidFile, runtime.WithLogger(&logger.Logger))
|
||||||
@@ -139,7 +144,12 @@ func Frontend(cfg *config.Config) *cli.Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// frontendConfigFromStruct will adapt an oCIS config struct into a reva mapstructure to start a reva service.
|
// frontendConfigFromStruct will adapt an oCIS config struct into a reva mapstructure to start a reva service.
|
||||||
func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[string]interface{}) map[string]interface{} {
|
func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[string]interface{}) (map[string]interface{}, error) {
|
||||||
|
frontendURL, err := url.Parse(cfg.Reva.Frontend.PublicURL)
|
||||||
|
if err != nil {
|
||||||
|
return map[string]interface{}{}, err
|
||||||
|
}
|
||||||
|
|
||||||
return map[string]interface{}{
|
return map[string]interface{}{
|
||||||
"core": map[string]interface{}{
|
"core": map[string]interface{}{
|
||||||
"max_cpus": cfg.Reva.Users.MaxCPUs,
|
"max_cpus": cfg.Reva.Users.MaxCPUs,
|
||||||
@@ -215,10 +225,10 @@ func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[s
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
"config": map[string]interface{}{
|
"config": map[string]interface{}{
|
||||||
"version": "1.8",
|
"version": "1.7",
|
||||||
"website": "reva",
|
"website": "ownCloud",
|
||||||
"host": cfg.Reva.Frontend.PublicURL,
|
"host": frontendURL.Host + frontendURL.Path,
|
||||||
"contact": "admin@localhost",
|
"contact": "",
|
||||||
"ssl": "false",
|
"ssl": "false",
|
||||||
},
|
},
|
||||||
"default_upload_protocol": cfg.Reva.DefaultUploadProtocol,
|
"default_upload_protocol": cfg.Reva.DefaultUploadProtocol,
|
||||||
@@ -308,7 +318,7 @@ func frontendConfigFromStruct(c *cli.Context, cfg *config.Config, filesCfg map[s
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// loadUserAgent reads the user-agent-whitelist-lock-in, since it is a string flag, and attempts to construct a map of
|
// loadUserAgent reads the user-agent-whitelist-lock-in, since it is a string flag, and attempts to construct a map of
|
||||||
|
|||||||
Reference in New Issue
Block a user