mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-31 18:30:57 +00:00
58 lines
1.5 KiB
Go
58 lines
1.5 KiB
Go
|
// Copyright 2024, 2025 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgefed
|
||
|
|
||
|
import (
|
||
|
"forgejo.org/modules/validation"
|
||
|
|
||
|
ap "github.com/go-ap/activitypub"
|
||
|
"github.com/google/uuid"
|
||
|
)
|
||
|
|
||
|
// ForgeFollow activity data type
|
||
|
// swagger:model
|
||
|
type ForgeFollow struct {
|
||
|
// swagger:ignore
|
||
|
ap.Activity
|
||
|
}
|
||
|
|
||
|
func NewForgeFollowFromAp(activity ap.Activity) (ForgeFollow, error) {
|
||
|
result := ForgeFollow{}
|
||
|
result.Activity = activity
|
||
|
if valid, err := validation.IsValid(result); !valid {
|
||
|
return ForgeFollow{}, err
|
||
|
}
|
||
|
return result, nil
|
||
|
}
|
||
|
|
||
|
func NewForgeFollow(actor, object string) (ForgeFollow, error) {
|
||
|
result := ForgeFollow{}
|
||
|
result.Type = ap.FollowType
|
||
|
result.ID = ap.IRI(actor + "/follows/" + uuid.New().String())
|
||
|
result.Actor = ap.IRI(actor)
|
||
|
result.Object = ap.IRI(object)
|
||
|
if valid, err := validation.IsValid(result); !valid {
|
||
|
return ForgeFollow{}, err
|
||
|
}
|
||
|
return result, nil
|
||
|
}
|
||
|
|
||
|
func (follow ForgeFollow) MarshalJSON() ([]byte, error) {
|
||
|
return follow.Activity.MarshalJSON()
|
||
|
}
|
||
|
|
||
|
func (follow *ForgeFollow) UnmarshalJSON(data []byte) error {
|
||
|
return follow.Activity.UnmarshalJSON(data)
|
||
|
}
|
||
|
|
||
|
func (follow ForgeFollow) Validate() []string {
|
||
|
var result []string
|
||
|
result = append(result, validation.ValidateNotEmpty(string(follow.Type), "type")...)
|
||
|
result = append(result, validation.ValidateOneOf(string(follow.Type), []any{"Follow"}, "type")...)
|
||
|
result = append(result, validation.ValidateIDExists(follow.Actor, "actor")...)
|
||
|
result = append(result, validation.ValidateIDExists(follow.Object, "object")...)
|
||
|
|
||
|
return result
|
||
|
}
|