mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-19 08:51:10 +00:00
This PR is part of #4767. It contains * a refactoring of validation error messages * adds the ability to send user-activities to distant federated servers Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8792 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Michael Jerger <michael.jerger@meissa-gmbh.de> Co-committed-by: Michael Jerger <michael.jerger@meissa-gmbh.de>
242 lines
6.9 KiB
Go
242 lines
6.9 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package activitypub
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"forgejo.org/models/activities"
|
|
"forgejo.org/modules/activitypub"
|
|
"forgejo.org/modules/forgefed"
|
|
"forgejo.org/modules/log"
|
|
"forgejo.org/modules/web"
|
|
"forgejo.org/routers/api/v1/utils"
|
|
"forgejo.org/services/context"
|
|
"forgejo.org/services/convert"
|
|
"forgejo.org/services/federation"
|
|
|
|
ap "github.com/go-ap/activitypub"
|
|
"github.com/go-ap/jsonld"
|
|
)
|
|
|
|
// Person function returns the Person actor for a user
|
|
func Person(ctx *context.APIContext) {
|
|
// swagger:operation GET /activitypub/user-id/{user-id} activitypub activitypubPerson
|
|
// ---
|
|
// summary: Returns the Person actor for a user
|
|
// produces:
|
|
// - application/json
|
|
// parameters:
|
|
// - name: user-id
|
|
// in: path
|
|
// description: user ID of the user
|
|
// type: integer
|
|
// required: true
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/ActivityPub"
|
|
|
|
person, err := convert.ToActivityPubPerson(ctx, ctx.ContextUser)
|
|
if err != nil {
|
|
ctx.ServerError("convert.ToActivityPubPerson", err)
|
|
return
|
|
}
|
|
|
|
binary, err := jsonld.WithContext(jsonld.IRI(ap.ActivityBaseURI), jsonld.IRI(ap.SecurityContextURI)).Marshal(person)
|
|
if err != nil {
|
|
ctx.ServerError("MarshalJSON", err)
|
|
return
|
|
}
|
|
ctx.Resp.Header().Add("Content-Type", activitypub.ActivityStreamsContentType)
|
|
ctx.Resp.WriteHeader(http.StatusOK)
|
|
if _, err = ctx.Resp.Write(binary); err != nil {
|
|
log.Error("write to resp err: %v", err)
|
|
}
|
|
}
|
|
|
|
// PersonInbox function handles the incoming data for a user inbox
|
|
func PersonInbox(ctx *context.APIContext) {
|
|
// swagger:operation POST /activitypub/user-id/{user-id}/inbox activitypub activitypubPersonInbox
|
|
// ---
|
|
// summary: Send to the inbox
|
|
// produces:
|
|
// - application/json
|
|
// parameters:
|
|
// - name: user-id
|
|
// in: path
|
|
// description: user ID of the user
|
|
// type: integer
|
|
// required: true
|
|
// responses:
|
|
// "202":
|
|
// "$ref": "#/responses/empty"
|
|
|
|
form := web.GetForm(ctx)
|
|
activity := form.(*ap.Activity)
|
|
result, err := federation.ProcessPersonInbox(ctx, ctx.ContextUser, activity)
|
|
if err != nil {
|
|
ctx.Error(federation.HTTPStatus(err), "PersonInbox", err)
|
|
return
|
|
}
|
|
responseServiceResult(ctx, result)
|
|
}
|
|
|
|
// PersonFeed returns the recorded activities in the user's feed
|
|
func PersonFeed(ctx *context.APIContext) {
|
|
// swagger:operation GET /activitypub/user-id/{user-id}/outbox activitypub activitypubPersonFeed
|
|
// ---
|
|
// summary: List the user's recorded activity
|
|
// produces:
|
|
// - application/json
|
|
// parameters:
|
|
// - name: user-id
|
|
// in: path
|
|
// description: user ID of the user
|
|
// type: integer
|
|
// required: true
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/PersonFeed"
|
|
// "403":
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
opts := activities.GetFollowingFeedsOptions{
|
|
ListOptions: listOptions,
|
|
}
|
|
items, count, err := activities.GetFollowingFeeds(ctx, ctx.ContextUser.ID, opts)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "GetFollowingFeeds", err)
|
|
return
|
|
}
|
|
ctx.SetTotalCountHeader(count)
|
|
|
|
feed := ap.OrderedCollectionNew(ap.IRI(ctx.ContextUser.APActorID() + "/outbox"))
|
|
feed.AttributedTo = ap.IRI(ctx.ContextUser.APActorID())
|
|
for _, item := range items {
|
|
if err := feed.OrderedItems.Append(convert.ToActivityPubPersonFeedItem(item)); err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "OrderedItems.Append", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
binary, err := jsonld.WithContext(jsonld.IRI(ap.ActivityBaseURI), jsonld.IRI(ap.SecurityContextURI)).Marshal(feed)
|
|
if err != nil {
|
|
ctx.ServerError("MarshalJSON", err)
|
|
return
|
|
}
|
|
|
|
ctx.Resp.Header().Add("Content-Type", activitypub.ActivityStreamsContentType)
|
|
ctx.Resp.WriteHeader(http.StatusOK)
|
|
if _, err = ctx.Resp.Write(binary); err != nil {
|
|
log.Error("write to resp err: %v", err)
|
|
}
|
|
}
|
|
|
|
func getActivity(ctx *context.APIContext, id int64) (*forgefed.ForgeUserActivity, error) {
|
|
action, err := activities.GetActivityByID(ctx, id)
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "GetActivityByID", err.Error())
|
|
return nil, err
|
|
}
|
|
|
|
if action.UserID != action.ActUserID || action.ActUserID != ctx.ContextUser.ID {
|
|
ctx.NotFound()
|
|
return nil, err
|
|
}
|
|
|
|
actions := activities.ActionList{action}
|
|
if err := actions.LoadAttributes(ctx); err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "action.LoadAttributes", err.Error())
|
|
return nil, err
|
|
}
|
|
|
|
activity, err := convert.ActionToForgeUserActivity(ctx, actions[0])
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "ActionToForgeUserActivity", err.Error())
|
|
return nil, err
|
|
}
|
|
|
|
return &activity, nil
|
|
}
|
|
|
|
// PersonActivity returns a user's given activity
|
|
func PersonActivity(ctx *context.APIContext) {
|
|
// swagger:operation GET /activitypub/user-id/{user-id}/activities/{activity-id}/activity activitypub activitypubPersonActivity
|
|
// ---
|
|
// summary: Get a specific activity of the user
|
|
// produces:
|
|
// - application/json
|
|
// parameters:
|
|
// - name: user-id
|
|
// in: path
|
|
// description: user ID of the user
|
|
// type: integer
|
|
// required: true
|
|
// - name: activity-id
|
|
// in: path
|
|
// description: activity ID of the sought activity
|
|
// type: integer
|
|
// required: true
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/ActivityPub"
|
|
|
|
id := ctx.ParamsInt64("activity-id")
|
|
activity, err := getActivity(ctx, id)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
binary, err := jsonld.WithContext(jsonld.IRI(ap.ActivityBaseURI), jsonld.IRI(ap.SecurityContextURI)).Marshal(activity)
|
|
if err != nil {
|
|
ctx.ServerError("MarshalJSON", err)
|
|
return
|
|
}
|
|
ctx.Resp.Header().Add("Content-Type", activitypub.ActivityStreamsContentType)
|
|
ctx.Resp.WriteHeader(http.StatusOK)
|
|
if _, err = ctx.Resp.Write(binary); err != nil {
|
|
log.Error("write to resp err: %v", err)
|
|
}
|
|
}
|
|
|
|
// PersonActivity returns the Object part of a user's given activity
|
|
func PersonActivityNote(ctx *context.APIContext) {
|
|
// swagger:operation GET /activitypub/user-id/{user-id}/activities/{activity-id} activitypub activitypubPersonActivityNote
|
|
// ---
|
|
// summary: Get a specific activity object of the user
|
|
// produces:
|
|
// - application/json
|
|
// parameters:
|
|
// - name: user-id
|
|
// in: path
|
|
// description: user ID of the user
|
|
// type: integer
|
|
// required: true
|
|
// - name: activity-id
|
|
// in: path
|
|
// description: activity ID of the sought activity
|
|
// type: integer
|
|
// required: true
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/ActivityPub"
|
|
|
|
id := ctx.ParamsInt64("activity-id")
|
|
activity, err := getActivity(ctx, id)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
binary, err := jsonld.WithContext(jsonld.IRI(ap.ActivityBaseURI), jsonld.IRI(ap.SecurityContextURI)).Marshal(activity.Object)
|
|
if err != nil {
|
|
ctx.ServerError("MarshalJSON", err)
|
|
return
|
|
}
|
|
ctx.Resp.Header().Add("Content-Type", activitypub.ActivityStreamsContentType)
|
|
ctx.Resp.WriteHeader(http.StatusOK)
|
|
if _, err = ctx.Resp.Write(binary); err != nil {
|
|
log.Error("write to resp err: %v", err)
|
|
}
|
|
}
|