mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 00:43:12 +01:00
* Make config instance-based * Remove config dependency in paths * Refactor config init * Allow startup without database * Get system status at UI initialise * Add setup wizard * Cache and Metadata optional. Database mandatory * Handle metadata not set during full import/export * Add links * Remove config check middleware * Stash not mandatory * Panic on missing mandatory config fields * Redirect setup to main page if setup not required * Add migration UI * Remove unused stuff * Move UI initialisation into App * Don't create metadata paths on RefreshConfig * Add folder selector for generated in setup * Env variable to set and create config file. Make docker images use a fixed config file. * Set config file during setup
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/stashapp/stash/pkg/logger"
|
|
"github.com/stashapp/stash/pkg/manager"
|
|
"github.com/stashapp/stash/pkg/manager/config"
|
|
"github.com/stashapp/stash/pkg/models"
|
|
"github.com/stashapp/stash/pkg/plugin/common"
|
|
)
|
|
|
|
func (r *mutationResolver) RunPluginTask(ctx context.Context, pluginID string, taskName string, args []*models.PluginArgInput) (string, error) {
|
|
currentUser := getCurrentUserID(ctx)
|
|
|
|
var cookie *http.Cookie
|
|
var err error
|
|
if currentUser != nil {
|
|
cookie, err = createSessionCookie(*currentUser)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
config := config.GetInstance()
|
|
serverConnection := common.StashServerConnection{
|
|
Scheme: "http",
|
|
Port: config.GetPort(),
|
|
SessionCookie: cookie,
|
|
Dir: config.GetConfigPath(),
|
|
}
|
|
|
|
if HasTLSConfig() {
|
|
serverConnection.Scheme = "https"
|
|
}
|
|
|
|
manager.GetInstance().RunPluginTask(pluginID, taskName, args, serverConnection)
|
|
return "todo", nil
|
|
}
|
|
|
|
func (r *mutationResolver) ReloadPlugins(ctx context.Context) (bool, error) {
|
|
err := manager.GetInstance().PluginCache.ReloadPlugins()
|
|
if err != nil {
|
|
logger.Errorf("Error reading plugin configs: %s", err.Error())
|
|
}
|
|
|
|
return true, nil
|
|
}
|