forgejo/routers/api/v1/activitypub/repository.go

76 lines
2 KiB
Go
Raw Normal View History

// Copyright 2023 The forgejo Authors. All rights reserved.
2023-10-20 13:16:04 +00:00
// SPDX-License-Identifier: MIT
package activitypub
import (
"fmt"
2023-10-20 13:16:04 +00:00
"net/http"
"strings"
2023-10-20 13:16:04 +00:00
"code.gitea.io/gitea/modules/context"
2023-11-06 17:29:48 +00:00
"code.gitea.io/gitea/modules/forgefed"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
ap "github.com/go-ap/activitypub"
//f3 "lab.forgefriends.org/friendlyforgeformat/gof3"
2023-10-20 13:16:04 +00:00
)
// Repository function returns the Repository actor for a repo
func Repository(ctx *context.APIContext) {
// swagger:operation GET /activitypub/repository-id/{repository-id} activitypub activitypubRepository
// ---
// summary: Returns the Repository actor for a repo
// produces:
// - application/json
// parameters:
// - name: repository-id
// in: path
// description: repository ID of the repo
// type: integer
// required: true
// responses:
// "200":
// "$ref": "#/responses/ActivityPub"
link := fmt.Sprintf("%s/api/v1/activitypub/repoistory-id/%d", strings.TrimSuffix(setting.AppURL, "/"), ctx.Repo.Repository.ID)
2023-11-06 17:29:48 +00:00
repo := forgefed.RepositoryNew(ap.IRI(link))
2023-11-06 17:29:48 +00:00
repo.Name = ap.NaturalLanguageValuesNew()
err := repo.Name.Set("en", ap.Content(ctx.Repo.Repository.Name))
if err != nil {
2023-11-06 17:29:48 +00:00
ctx.ServerError("Set Name", err)
return
}
2023-11-06 17:29:48 +00:00
response(ctx, repo)
2023-10-20 13:16:04 +00:00
}
// PersonInbox function handles the incoming data for a repository inbox
func RepositoryInbox(ctx *context.APIContext) {
// swagger:operation POST /activitypub/repository-id/{repository-id}/inbox activitypub activitypubRepository
// ---
// summary: Send to the inbox
// produces:
// - application/json
// parameters:
// - name: repository-id
// in: path
// description: repository ID of the repo
// type: integer
// required: true
2023-11-08 07:56:22 +00:00
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/Star"
2023-10-20 13:16:04 +00:00
// responses:
// "204":
// "$ref": "#/responses/empty"
2023-11-06 07:49:58 +00:00
log.Info("RepositoryInbox: repo %v, %v", ctx.Repo.Repository.OwnerName, ctx.Repo.Repository.Name)
log.Info("RepositoryInbox: doer %v, %v", ctx.Doer.Name, ctx.Doer.ID)
2023-11-03 16:45:53 +00:00
2023-10-20 13:16:04 +00:00
ctx.Status(http.StatusNoContent)
}