forgejo/modules/forgefed/star.go

46 lines
919 B
Go
Raw Normal View History

2023-11-07 08:30:32 +00:00
// Copyright 2023 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package forgefed
import (
ap "github.com/go-ap/activitypub"
)
type (
SourceType string
)
type SourceTypes []SourceType
const (
StarType ap.ActivityVocabularyType = "Star"
)
const (
ForgejoSourceType SourceType = "frogejo"
)
var KnownSourceTypes = SourceTypes{
ForgejoSourceType,
}
2023-11-08 07:56:22 +00:00
// Star activity for adding a star to an repository
// swagger:model
2023-11-07 08:30:32 +00:00
type Star struct {
2023-11-08 07:56:22 +00:00
// swagger: ignore
2023-11-07 08:30:32 +00:00
ap.Activity
// Source identifies the system generated this Activity. Exact one value has to be specified.
Source SourceType `jsonld:"source,omitempty"`
}
// RepositoryNew initializes a Repository type actor
func StarNew(id ap.ID, ob ap.ID) *Star {
a := ap.ActivityNew(id, StarType, ob)
// TODO: is this not handeld by ActivityNew??
a.Type = StarType
o := Star{Activity: *a}
o.Source = ForgejoSourceType
return &o
}