2024-04-12 11:52:26 +00:00
|
|
|
// Copyright 2023, 2024 The Forgejo Authors. All rights reserved.
|
2023-10-20 13:16:04 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package activitypub
|
|
|
|
|
|
|
|
import (
|
2023-10-27 18:13:51 +00:00
|
|
|
"fmt"
|
2023-10-20 13:16:04 +00:00
|
|
|
"net/http"
|
2023-10-27 18:13:51 +00:00
|
|
|
"strings"
|
2023-10-20 13:16:04 +00:00
|
|
|
|
2024-02-08 12:31:27 +00:00
|
|
|
forgefed_model "code.gitea.io/gitea/models/forgefed"
|
2023-10-27 18:13:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-11-10 13:26:13 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2024-04-09 14:00:28 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2024-03-28 14:00:55 +00:00
|
|
|
"code.gitea.io/gitea/services/federation"
|
2023-10-27 18:13:51 +00:00
|
|
|
|
|
|
|
ap "github.com/go-ap/activitypub"
|
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"
|
|
|
|
|
2023-11-15 11:10:31 +00:00
|
|
|
link := fmt.Sprintf("%s/api/v1/activitypub/repository-id/%d", strings.TrimSuffix(setting.AppURL, "/"), ctx.Repo.Repository.ID)
|
2024-02-08 12:31:27 +00:00
|
|
|
repo := forgefed_model.RepositoryNew(ap.IRI(link))
|
2023-10-27 18:13:51 +00:00
|
|
|
|
2023-11-06 17:29:48 +00:00
|
|
|
repo.Name = ap.NaturalLanguageValuesNew()
|
|
|
|
err := repo.Name.Set("en", ap.Content(ctx.Repo.Repository.Name))
|
2023-10-27 18:13:51 +00:00
|
|
|
if err != nil {
|
2024-01-13 13:17:11 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "Set Name", err)
|
2023-10-27 18:13:51 +00:00
|
|
|
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) {
|
2024-02-09 17:17:40 +00:00
|
|
|
// swagger:operation POST /activitypub/repository-id/{repository-id}/inbox activitypub activitypubRepositoryInbox
|
2023-10-20 13:16:04 +00:00
|
|
|
// ---
|
|
|
|
// 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:
|
2024-01-03 17:29:12 +00:00
|
|
|
// "$ref": "#/definitions/ForgeLike"
|
2023-10-20 13:16:04 +00:00
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
|
2023-12-08 17:09:22 +00:00
|
|
|
repository := ctx.Repo.Repository
|
2023-12-15 13:45:20 +00:00
|
|
|
log.Info("RepositoryInbox: repo: %v", repository)
|
2023-12-08 17:09:22 +00:00
|
|
|
|
2024-02-08 12:31:27 +00:00
|
|
|
form := web.GetForm(ctx)
|
2024-03-28 14:00:55 +00:00
|
|
|
httpStatus, title, err := federation.ProcessLikeActivity(ctx, form, repository.ID)
|
2023-12-07 10:45:24 +00:00
|
|
|
if err != nil {
|
2024-04-05 15:06:57 +00:00
|
|
|
log.Error("Status: %v", httpStatus)
|
|
|
|
log.Error("Title: %v", title)
|
|
|
|
log.Error("Error: %v", err)
|
2024-02-08 12:31:27 +00:00
|
|
|
ctx.Error(httpStatus, title, err)
|
2024-01-13 13:17:11 +00:00
|
|
|
}
|
2023-10-20 13:16:04 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
|
|
|
}
|