Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
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
|
|
}
|