2023-10-27 20:13:51 +02:00
|
|
|
// Copyright 2023 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-11-15 12:29:17 +01:00
|
|
|
"net/url"
|
2023-10-27 20:13:51 +02:00
|
|
|
"strings"
|
2023-10-20 15:16:04 +02:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2023-11-06 18:29:48 +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"
|
|
|
|
//f3 "lab.forgefriends.org/friendlyforgeformat/gof3"
|
2023-10-20 15:16:04 +02:00
|
|
|
)
|
|
|
|
|
2023-11-15 12:29:17 +01:00
|
|
|
type (
|
|
|
|
Schema string
|
|
|
|
UserID string
|
|
|
|
Host string
|
|
|
|
Port string
|
|
|
|
)
|
|
|
|
|
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)
|
2023-11-06 18:29:48 +01:00
|
|
|
repo := forgefed.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 {
|
2023-11-06 18:29:48 +01:00
|
|
|
ctx.ServerError("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:
|
|
|
|
// "$ref": "#/definitions/Star"
|
2023-10-20 15:16:04 +02:00
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
|
2023-11-06 08:49:58 +01:00
|
|
|
log.Info("RepositoryInbox: repo %v, %v", ctx.Repo.Repository.OwnerName, ctx.Repo.Repository.Name)
|
2023-11-10 14:26:13 +01:00
|
|
|
opt := web.GetForm(ctx).(*forgefed.Star)
|
|
|
|
|
2023-11-10 14:51:33 +01:00
|
|
|
log.Info("RepositoryInbox: Activity.Source %v", opt.Source)
|
2023-11-15 08:59:55 +01:00
|
|
|
log.Info("RepositoryInbox: Activity.Actor %v", opt.Actor)
|
2023-11-03 17:45:53 +01:00
|
|
|
|
2023-11-15 12:29:17 +01:00
|
|
|
// assume actor is: "actor": "https://codeberg.org/api/v1/activitypub/user-id/12345"
|
2023-11-15 09:23:03 +01:00
|
|
|
// parse actor
|
2023-11-15 12:29:17 +01:00
|
|
|
actor, err := parseActor(opt.Actor.GetID().String())
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("RepositoryInbox: Actor parsed. %v", actor)
|
|
|
|
|
2023-11-15 09:23:03 +01:00
|
|
|
// if not actor.isValid() then exit_with_error
|
|
|
|
// get_person_by_rest
|
|
|
|
// create_user_from_person (if not alreaydy present)
|
|
|
|
|
|
|
|
// wait 15 sec.
|
2023-11-10 14:10:23 +01:00
|
|
|
|
2023-10-20 15:16:04 +02:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2023-11-10 14:26:13 +01:00
|
|
|
|
2023-10-20 15:16:04 +02:00
|
|
|
}
|
2023-11-15 12:29:17 +01:00
|
|
|
|
|
|
|
type ActorData struct {
|
|
|
|
schema string
|
|
|
|
userId string
|
|
|
|
host string
|
|
|
|
port string
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseActor(actor string) (ActorData, error) {
|
|
|
|
u, err := url.Parse(actor)
|
|
|
|
|
|
|
|
// check if userID IRI is well formed url
|
|
|
|
if err != nil {
|
|
|
|
return ActorData{}, fmt.Errorf("the actor ID was not valid: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Scheme == "" || u.Host == "" {
|
|
|
|
return ActorData{}, fmt.Errorf("the actor ID was not valid: Invalid Schema or Host")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.Contains(u.Path, "api/v1/activitypub/user-id") {
|
2023-11-15 12:31:16 +01:00
|
|
|
return ActorData{}, fmt.Errorf("the Path to the API was invalid: %v\n the full URL is: %v", u.Path, actor)
|
2023-11-15 12:29:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pathWithUserID := strings.Split(u.Path, "/")
|
|
|
|
userId := pathWithUserID[len(pathWithUserID)-1]
|
|
|
|
|
|
|
|
return ActorData{
|
|
|
|
schema: u.Scheme,
|
|
|
|
userId: userId,
|
|
|
|
host: u.Host,
|
|
|
|
port: u.Port(),
|
|
|
|
}, nil
|
|
|
|
}
|