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>
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package meilisearch
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"forgejo.org/modules/log"
 | |
| )
 | |
| 
 | |
| // 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
 | |
| 	}
 | |
| 
 | |
| 	// The format of the index name is <index_name>_v<version>, not <index_name>.v<version> like elasticsearch.
 | |
| 	// Because meilisearch does not support "." in index name, it should contain only alphanumeric characters, hyphens (-) and underscores (_).
 | |
| 	// See https://www.meilisearch.com/docs/learn/core_concepts/indexes#index-uid
 | |
| 
 | |
| 	return fmt.Sprintf("%s_v%d", indexName, version)
 | |
| }
 | |
| 
 | |
| func (i *Indexer) checkOldIndexes() {
 | |
| 	for v := 0; v < i.version; v++ {
 | |
| 		indexName := versionedIndexName(i.indexName, v)
 | |
| 		_, err := i.Client.GetIndex(indexName)
 | |
| 		if err == nil {
 | |
| 			log.Warn("Found older meilisearch index named %q, Forgejo will keep the old NOT DELETED. You can delete the old version after the upgrade succeed.", indexName)
 | |
| 		}
 | |
| 	}
 | |
| }
 |