mirror of
https://codeberg.org/forgejo-aneksajo/forgejo-aneksajo.git
synced 2025-07-24 17:00:05 +02:00

**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
42 lines
1 KiB
Go
42 lines
1 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package internal
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"forgejo.org/modules/indexer/internal"
|
|
)
|
|
|
|
// Indexer defines an interface to indexer issues contents
|
|
type Indexer interface {
|
|
internal.Indexer
|
|
Index(ctx context.Context, issue ...*IndexerData) error
|
|
Delete(ctx context.Context, ids ...int64) error
|
|
Search(ctx context.Context, options *SearchOptions) (*SearchResult, error)
|
|
}
|
|
|
|
// NewDummyIndexer returns a dummy indexer
|
|
func NewDummyIndexer() Indexer {
|
|
return &dummyIndexer{
|
|
Indexer: internal.NewDummyIndexer(),
|
|
}
|
|
}
|
|
|
|
type dummyIndexer struct {
|
|
internal.Indexer
|
|
}
|
|
|
|
func (d *dummyIndexer) Index(_ context.Context, _ ...*IndexerData) error {
|
|
return fmt.Errorf("indexer is not ready")
|
|
}
|
|
|
|
func (d *dummyIndexer) Delete(_ context.Context, _ ...int64) error {
|
|
return fmt.Errorf("indexer is not ready")
|
|
}
|
|
|
|
func (d *dummyIndexer) Search(_ context.Context, _ *SearchOptions) (*SearchResult, error) {
|
|
return nil, fmt.Errorf("indexer is not ready")
|
|
}
|