mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-30 22:11:07 +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>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			724 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			724 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package setting
 | |
| 
 | |
| import (
 | |
| 	"strconv"
 | |
| 
 | |
| 	"forgejo.org/modules/log"
 | |
| )
 | |
| 
 | |
| var Camo = struct {
 | |
| 	Enabled   bool
 | |
| 	ServerURL string `ini:"SERVER_URL"`
 | |
| 	HMACKey   string `ini:"HMAC_KEY"`
 | |
| 	Always    bool
 | |
| }{}
 | |
| 
 | |
| func loadCamoFrom(rootCfg ConfigProvider) {
 | |
| 	mustMapSetting(rootCfg, "camo", &Camo)
 | |
| 	if Camo.Enabled {
 | |
| 		oldValue := rootCfg.Section("camo").Key("ALLWAYS").MustString("")
 | |
| 		if oldValue != "" {
 | |
| 			log.Warn("camo.ALLWAYS is deprecated, use camo.ALWAYS instead")
 | |
| 			Camo.Always, _ = strconv.ParseBool(oldValue)
 | |
| 		}
 | |
| 
 | |
| 		if Camo.ServerURL == "" || Camo.HMACKey == "" {
 | |
| 			log.Fatal(`Camo settings require "SERVER_URL" and HMAC_KEY`)
 | |
| 		}
 | |
| 	}
 | |
| }
 |