mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08: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>
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			790 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			790 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package optional
 | 
						|
 | 
						|
import (
 | 
						|
	"forgejo.org/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
 | 
						|
}
 |