68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package forgefed
|
|
|
|
import (
|
|
ap "github.com/go-ap/activitypub"
|
|
"github.com/valyala/fastjson"
|
|
)
|
|
|
|
const (
|
|
RepositoryType ap.ActivityVocabularyType = "Repository"
|
|
)
|
|
|
|
type Repository struct {
|
|
ap.Actor
|
|
// Team Collection of actors who have management/push access to the repository
|
|
Team ap.Item `jsonld:"team,omitempty"`
|
|
// Forks OrderedCollection of repositories that are forks of this repository
|
|
Forks ap.Item `jsonld:"forks,omitempty"`
|
|
// ForkedFrom Identifies the repository which this repository was created as a fork
|
|
ForkedFrom ap.Item `jsonld:"forkedFrom,omitempty"`
|
|
}
|
|
|
|
// RepositoryNew initializes a Repository type actor
|
|
func RepositoryNew(id ap.ID) *Repository {
|
|
a := ap.ActorNew(id, RepositoryType)
|
|
o := Repository{Actor: *a}
|
|
o.Type = RepositoryType
|
|
return &o
|
|
}
|
|
|
|
func (r Repository) MarshalJSON() ([]byte, error) {
|
|
b, err := r.Actor.MarshalJSON()
|
|
if len(b) == 0 || err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
b = b[:len(b)-1]
|
|
if r.Team != nil {
|
|
ap.WriteItemJSONProp(&b, "team", r.Team)
|
|
}
|
|
if r.Forks != nil {
|
|
ap.WriteItemJSONProp(&b, "forks", r.Forks)
|
|
}
|
|
if r.ForkedFrom != nil {
|
|
ap.WriteItemJSONProp(&b, "forkedFrom", r.ForkedFrom)
|
|
}
|
|
ap.Write(&b, '}')
|
|
return b, nil
|
|
}
|
|
|
|
func (r *Repository) UnmarshalJSON(data []byte) error {
|
|
p := fastjson.Parser{}
|
|
val, err := p.ParseBytes(data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.Team = ap.JSONGetItem(val, "team")
|
|
r.Forks = ap.JSONGetItem(val, "forks")
|
|
r.ForkedFrom = ap.JSONGetItem(val, "forkedFrom")
|
|
|
|
return ap.OnActor(&r.Actor, func(a *ap.Actor) error {
|
|
return ap.LoadActor(val, a)
|
|
})
|
|
}
|