mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Since https://github.com/go-gitea/gitea/pull/25686, a few `interface{}` have sneaked into the codebase. Add this replacement to `make fmt` to prevent this from happening again. Ideally a linter would do this, but I haven't found any suitable. (cherry picked from commit c77e8140bc2ac6521dbebfb77613dce2648bfcb8) Conflicts: - .gitattributes Trivial conflict resolved by picking our choice of language for `*.tmpl` files.
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			798 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			798 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package optional
 | 
						|
 | 
						|
import (
 | 
						|
	"code.gitea.io/gitea/modules/json"
 | 
						|
 | 
						|
	"gopkg.in/yaml.v3"
 | 
						|
)
 | 
						|
 | 
						|
func (o *Option[T]) UnmarshalJSON(data []byte) error {
 | 
						|
	var v *T
 | 
						|
	if err := json.Unmarshal(data, &v); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	*o = FromPtr(v)
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (o Option[T]) MarshalJSON() ([]byte, error) {
 | 
						|
	if !o.Has() {
 | 
						|
		return []byte("null"), nil
 | 
						|
	}
 | 
						|
 | 
						|
	return json.Marshal(o.Value())
 | 
						|
}
 | 
						|
 | 
						|
func (o *Option[T]) UnmarshalYAML(value *yaml.Node) error {
 | 
						|
	var v *T
 | 
						|
	if err := value.Decode(&v); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	*o = FromPtr(v)
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (o Option[T]) MarshalYAML() (any, error) {
 | 
						|
	if !o.Has() {
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
 | 
						|
	value := new(yaml.Node)
 | 
						|
	err := value.Encode(o.Value())
 | 
						|
	return value, err
 | 
						|
}
 |