mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 04:09:40 -06:00
* Increase the timeout for indexing spaces * Allow for making queries that are not constrained to a RootID * Use nano precision for the Mtime * Add a SpaceDebouncer The debouncer can be used to delay operations on spaces until things have settled down to avoid doing the same operation multiple times. * Do not index subtrees until they have changed (i.e. the mtime differs) * Also pass a user to the space debouncer func * Trigger a rescan of the according space when an event is received * Improve wording/logging * Add changelog * Get rid of superfluous GetUserByClaim call * Fix tests * Fix reindexing triggered by shares by using the event's SpaceOwner * Bump reva to pull in the space owner events changes * Fix changelog * Fix linter issues * Fall back to the executant if no owner was received from the event * Bump reva and go-cs3apis * Fix go.sum * Bump core * Adapt expected failures * Tweak debounce settings
58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
"go-micro.dev/v4/client"
|
|
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/config/configlog"
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/service/grpc"
|
|
searchsvc "github.com/owncloud/ocis/v2/protogen/gen/ocis/services/search/v0"
|
|
"github.com/owncloud/ocis/v2/services/search/pkg/config"
|
|
"github.com/owncloud/ocis/v2/services/search/pkg/config/parser"
|
|
)
|
|
|
|
// Index is the entrypoint for the server command.
|
|
func Index(cfg *config.Config) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "index",
|
|
Usage: "index the files for one one more users",
|
|
Category: "index management",
|
|
Aliases: []string{"i"},
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "space",
|
|
Aliases: []string{"s"},
|
|
Required: true,
|
|
Usage: "the id of the space to travers and index the files of",
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "user",
|
|
Aliases: []string{"u"},
|
|
Required: true,
|
|
Usage: "the username of the user that shall be used to access the files",
|
|
},
|
|
},
|
|
Before: func(c *cli.Context) error {
|
|
return configlog.ReturnFatal(parser.ParseConfig(cfg))
|
|
},
|
|
Action: func(ctx *cli.Context) error {
|
|
grpcClient := grpc.DefaultClient()
|
|
grpcClient.Options()
|
|
c := searchsvc.NewSearchProviderService("com.owncloud.api.search", grpcClient)
|
|
_, err := c.IndexSpace(context.Background(), &searchsvc.IndexSpaceRequest{
|
|
SpaceId: ctx.String("space"),
|
|
UserId: ctx.String("user"),
|
|
}, func(opts *client.CallOptions) { opts.RequestTimeout = 10 * time.Minute })
|
|
if err != nil {
|
|
fmt.Println("failed to index space: " + err.Error())
|
|
return err
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
}
|