mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package elasticsearch
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"time"
 | |
| 
 | |
| 	"forgejo.org/modules/log"
 | |
| 
 | |
| 	"github.com/olivere/elastic/v7"
 | |
| )
 | |
| 
 | |
| // VersionedIndexName returns the full index name with version
 | |
| func (i *Indexer) VersionedIndexName() string {
 | |
| 	return versionedIndexName(i.indexName, i.version)
 | |
| }
 | |
| 
 | |
| func versionedIndexName(indexName string, version int) string {
 | |
| 	if version == 0 {
 | |
| 		// Old index name without version
 | |
| 		return indexName
 | |
| 	}
 | |
| 	return fmt.Sprintf("%s.v%d", indexName, version)
 | |
| }
 | |
| 
 | |
| func (i *Indexer) createIndex(ctx context.Context) error {
 | |
| 	createIndex, err := i.Client.CreateIndex(i.VersionedIndexName()).BodyString(i.mapping).Do(ctx)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	if !createIndex.Acknowledged {
 | |
| 		return fmt.Errorf("create index %s with %s failed", i.VersionedIndexName(), i.mapping)
 | |
| 	}
 | |
| 
 | |
| 	i.checkOldIndexes(ctx)
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (i *Indexer) initClient() (*elastic.Client, error) {
 | |
| 	opts := []elastic.ClientOptionFunc{
 | |
| 		elastic.SetURL(i.url),
 | |
| 		elastic.SetSniff(false),
 | |
| 		elastic.SetHealthcheckInterval(10 * time.Second),
 | |
| 		elastic.SetGzip(false),
 | |
| 	}
 | |
| 
 | |
| 	logger := log.GetLogger(log.DEFAULT)
 | |
| 
 | |
| 	opts = append(opts, elastic.SetTraceLog(&log.PrintfLogger{Logf: logger.Trace}))
 | |
| 	opts = append(opts, elastic.SetInfoLog(&log.PrintfLogger{Logf: logger.Info}))
 | |
| 	opts = append(opts, elastic.SetErrorLog(&log.PrintfLogger{Logf: logger.Error}))
 | |
| 
 | |
| 	return elastic.NewClient(opts...)
 | |
| }
 | |
| 
 | |
| func (i *Indexer) checkOldIndexes(ctx context.Context) {
 | |
| 	for v := 0; v < i.version; v++ {
 | |
| 		indexName := versionedIndexName(i.indexName, v)
 | |
| 		exists, err := i.Client.IndexExists(indexName).Do(ctx)
 | |
| 		if err == nil && exists {
 | |
| 			log.Warn("Found older elasticsearch index named %q, Forgejo will keep the old NOT DELETED. You can delete the old version after the upgrade succeed.", indexName)
 | |
| 		}
 | |
| 	}
 | |
| }
 |