1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-27 09:11:53 -05:00
forgejo/routers/api/v1/activitypub/repository.go

124 lines
3.4 KiB
Go
Raw Normal View History

// Copyright 2023 The forgejo Authors. All rights reserved.
2023-10-20 09:16:04 -04:00
// SPDX-License-Identifier: MIT
package activitypub
import (
"fmt"
2023-10-20 09:16:04 -04:00
"net/http"
"strings"
2023-10-20 09:16:04 -04:00
"code.gitea.io/gitea/models/activitypub"
2023-11-17 11:20:36 -05:00
api "code.gitea.io/gitea/modules/activitypub2"
2023-10-20 09:16:04 -04:00
"code.gitea.io/gitea/modules/context"
2023-11-06 12:29:48 -05:00
"code.gitea.io/gitea/modules/forgefed"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
2023-11-10 08:26:13 -05:00
"code.gitea.io/gitea/modules/web"
2023-11-17 11:20:36 -05:00
apiPerson "code.gitea.io/gitea/modules/activitypub2/activitypub"
ap "github.com/go-ap/activitypub"
2023-11-17 11:20:36 -05:00
"github.com/go-openapi/strfmt"
//f3 "lab.forgefriends.org/friendlyforgeformat/gof3"
2023-10-20 09:16:04 -04: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 06:10:31 -05:00
link := fmt.Sprintf("%s/api/v1/activitypub/repository-id/%d", strings.TrimSuffix(setting.AppURL, "/"), ctx.Repo.Repository.ID)
2023-11-06 12:29:48 -05:00
repo := forgefed.RepositoryNew(ap.IRI(link))
2023-11-06 12:29:48 -05:00
repo.Name = ap.NaturalLanguageValuesNew()
err := repo.Name.Set("en", ap.Content(ctx.Repo.Repository.Name))
if err != nil {
2023-11-06 12:29:48 -05:00
ctx.ServerError("Set Name", err)
return
}
2023-11-06 12:29:48 -05:00
response(ctx, repo)
2023-10-20 09:16:04 -04: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 02:56:22 -05:00
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/Star"
2023-10-20 09:16:04 -04:00
// responses:
// "204":
// "$ref": "#/responses/empty"
2023-11-06 02:49:58 -05:00
log.Info("RepositoryInbox: repo %v, %v", ctx.Repo.Repository.OwnerName, ctx.Repo.Repository.Name)
2023-11-10 08:26:13 -05:00
opt := web.GetForm(ctx).(*forgefed.Star)
2023-11-16 09:06:41 -05:00
err := opt.ValidateStar()
if err != nil {
panic(err)
}
2023-11-10 08:51:33 -05:00
log.Info("RepositoryInbox: Activity.Source %v", opt.Source)
2023-11-15 02:59:55 -05:00
log.Info("RepositoryInbox: Activity.Actor %v", opt.Actor)
2023-11-03 12:45:53 -04:00
2023-11-15 08:27:47 -05:00
// assume actor is: "actor": "https://codeberg.org/api/v1/activitypub/user-id/12345" - NB: This might be actually the ID? Maybe check vocabulary.
2023-11-17 02:22:27 -05:00
// TODO: validate input in front of parsing.
2023-11-15 03:23:03 -05:00
// parse actor
2023-11-22 07:28:13 -05:00
actor, err := activitypub.ParseActorID(opt.Actor.GetID().String())
// Is the actor IRI well formed?
if err != nil {
panic(err)
}
// Is the ActorData Struct valid?
err = actor.Validate()
2023-11-15 06:29:17 -05:00
if err != nil {
panic(err)
}
log.Info("RepositoryInbox: Actor parsed. %v", actor)
2023-11-15 03:23:03 -05:00
// get_person_by_rest
2023-11-17 11:20:36 -05:00
c := api.NewHTTPClientWithConfig(strfmt.Default,
api.DefaultTransportConfig().WithHost("localhost:3000").WithBasePath("/api/v1/").WithSchemes([]string{"http"}))
//c := client.Default
person, err := c.Activitypub.ActivitypubPerson(
apiPerson.NewActivitypubPersonParams().WithUserID(1), nil)
log.Info("http client. %v", c)
log.Info("person. %v", person)
2023-11-15 03:23:03 -05:00
// create_user_from_person (if not alreaydy present)
// wait 15 sec.
2023-11-10 08:10:23 -05:00
2023-10-20 09:16:04 -04:00
ctx.Status(http.StatusNoContent)
2023-11-10 08:26:13 -05:00
2023-10-20 09:16:04 -04:00
}