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

82 lines
2.2 KiB
Go
Raw Normal View History

2024-01-13 16:08:12 +01:00
// Copyright 2023, 2024 The forgejo Authors. All rights reserved.
2023-10-20 15:16:04 +02:00
// SPDX-License-Identifier: MIT
package activitypub
import (
"fmt"
2023-10-20 15:16:04 +02:00
"net/http"
"strings"
2023-10-20 15:16:04 +02:00
forgefed_model "code.gitea.io/gitea/models/forgefed"
2023-10-20 15:16:04 +02:00
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/forgefed"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
2023-11-10 14:26:13 +01:00
"code.gitea.io/gitea/modules/web"
ap "github.com/go-ap/activitypub"
2023-10-20 15:16:04 +02: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"
2023-11-15 12:10:31 +01:00
link := fmt.Sprintf("%s/api/v1/activitypub/repository-id/%d", strings.TrimSuffix(setting.AppURL, "/"), ctx.Repo.Repository.ID)
repo := forgefed_model.RepositoryNew(ap.IRI(link))
2023-11-06 18:29:48 +01:00
repo.Name = ap.NaturalLanguageValuesNew()
err := repo.Name.Set("en", ap.Content(ctx.Repo.Repository.Name))
if err != nil {
ctx.Error(http.StatusInternalServerError, "Set Name", err)
return
}
2023-11-06 18:29:48 +01:00
response(ctx, repo)
2023-10-20 15:16:04 +02: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 08:56:22 +01:00
// - name: body
// in: body
// schema:
2024-01-03 18:29:12 +01:00
// "$ref": "#/definitions/ForgeLike"
2023-10-20 15:16:04 +02:00
// responses:
// "204":
// "$ref": "#/responses/empty"
2023-12-08 18:09:22 +01:00
repository := ctx.Repo.Repository
2023-12-15 14:45:20 +01:00
log.Info("RepositoryInbox: repo: %v", repository)
2023-12-08 18:09:22 +01:00
form := web.GetForm(ctx)
2024-02-09 16:44:03 +01:00
httpStatus, title, err := forgefed.LikeActivity(ctx, form, repository.ID)
if err != nil {
ctx.Error(httpStatus, title, err)
}
2023-10-20 15:16:04 +02:00
ctx.Status(http.StatusNoContent)
}