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 (
|
2023-10-27 20:13:51 +02:00
|
|
|
"fmt"
|
2023-10-20 15:16:04 +02:00
|
|
|
"net/http"
|
2023-10-27 20:13:51 +02:00
|
|
|
"strings"
|
2023-10-20 15:16:04 +02:00
|
|
|
|
2024-02-08 13:31:27 +01:00
|
|
|
forgefed_model "code.gitea.io/gitea/models/forgefed"
|
|
|
|
|
2023-10-20 15:16:04 +02:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2024-02-08 13:31:27 +01:00
|
|
|
"code.gitea.io/gitea/modules/forgefed"
|
2023-10-27 20:13:51 +02:00
|
|
|
"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"
|
2023-10-27 20:13:51 +02:00
|
|
|
|
|
|
|
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)
|
2024-02-08 13:31:27 +01:00
|
|
|
repo := forgefed_model.RepositoryNew(ap.IRI(link))
|
2023-10-27 20:13:51 +02:00
|
|
|
|
2023-11-06 18:29:48 +01:00
|
|
|
repo.Name = ap.NaturalLanguageValuesNew()
|
|
|
|
err := repo.Name.Set("en", ap.Content(ctx.Repo.Repository.Name))
|
2023-10-27 20:13:51 +02:00
|
|
|
if err != nil {
|
2024-01-13 14:17:11 +01:00
|
|
|
ctx.Error(http.StatusInternalServerError, "Set Name", err)
|
2023-10-27 20:13:51 +02:00
|
|
|
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
|
|
|
|
2024-02-08 13:31:27 +01:00
|
|
|
form := web.GetForm(ctx)
|
2024-02-09 16:44:03 +01:00
|
|
|
httpStatus, title, err := forgefed.LikeActivity(ctx, form, repository.ID)
|
2023-12-07 11:45:24 +01:00
|
|
|
if err != nil {
|
2024-02-08 13:31:27 +01:00
|
|
|
ctx.Error(httpStatus, title, err)
|
2024-01-13 14:17:11 +01:00
|
|
|
}
|
2023-10-20 15:16:04 +02:00
|
|
|
ctx.Status(http.StatusNoContent)
|
|
|
|
}
|