forgejo/routers/api/v1/activitypub/repository.go

273 lines
7.9 KiB
Go
Raw Normal View History

// Copyright 2023 The forgejo Authors. All rights reserved.
2023-10-20 15:16:04 +02:00
// SPDX-License-Identifier: MIT
package activitypub
2023-12-20 11:27:44 +01:00
// ToDo: Fix linting
// ToDo: Maybe do a request for the node info
// Then maybe save the node info in a DB table - this could be useful for validation
2023-10-20 15:16:04 +02:00
import (
"fmt"
2023-10-20 15:16:04 +02:00
"net/http"
"strings"
2023-12-07 13:54:07 +01:00
"time"
2023-10-20 15:16:04 +02:00
2023-12-01 17:06:39 +01:00
"code.gitea.io/gitea/models/db"
2023-12-09 14:27:29 +01:00
"code.gitea.io/gitea/models/forgefed"
2023-12-07 13:17:51 +01:00
repo_model "code.gitea.io/gitea/models/repo"
user_model "code.gitea.io/gitea/models/user"
2023-11-28 13:03:45 +01:00
api "code.gitea.io/gitea/modules/activitypub"
2023-10-20 15:16:04 +02:00
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
2023-12-05 10:37:51 +01:00
"code.gitea.io/gitea/modules/util"
2024-01-03 18:52:41 +01:00
"code.gitea.io/gitea/modules/validation"
2023-11-10 14:26:13 +01:00
"code.gitea.io/gitea/modules/web"
2023-12-05 10:37:51 +01:00
"github.com/google/uuid"
ap "github.com/go-ap/activitypub"
2023-12-05 11:38:36 +01:00
pwd_gen "github.com/sethvargo/go-password/password"
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-11-06 18:29:48 +01:00
repo.Name = ap.NaturalLanguageValuesNew()
err := repo.Name.Set("en", ap.Content(ctx.Repo.Repository.Name))
if err != nil {
2023-11-06 18:29:48 +01:00
ctx.ServerError("Set Name", err)
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"
var user *user_model.User
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-01-03 18:29:12 +01:00
activity := web.GetForm(ctx).(*forgefed.ForgeLike)
2024-01-03 18:52:41 +01:00
if res, err := validation.IsValid(activity); !res {
ctx.ServerError("Validate activity", err)
return
}
log.Info("RepositoryInbox: activity validated:%v", activity)
2023-11-03 17:45:53 +01:00
2023-12-22 14:52:10 +01:00
// parse actorID (person)
2023-12-29 15:48:45 +01:00
actorUri := activity.Actor.GetID().String()
rawActorID, err := forgefed.NewActorID(actorUri)
nodeInfo, err := createNodeInfo(ctx, rawActorID)
log.Info("RepositoryInbox: nodeInfo validated: %v", nodeInfo)
2023-12-29 12:10:07 +01:00
actorID, err := forgefed.NewPersonID(actorUri, string(nodeInfo.Source))
if err != nil {
2023-12-08 19:52:09 +01:00
ctx.ServerError("Validate actorId", err)
2023-12-08 18:09:22 +01:00
return
}
2023-12-22 14:52:10 +01:00
log.Info("RepositoryInbox: actorId validated: %v", actorID)
// parse objectID (repository)
objectID, err := forgefed.NewRepositoryID(activity.Object.GetID().String(), string(nodeInfo.Source))
2023-12-09 19:11:38 +01:00
if err != nil {
2023-12-12 11:04:03 +01:00
ctx.ServerError("Validate objectId", err)
return
}
2023-12-22 15:10:21 +01:00
if objectID.ID != fmt.Sprint(repository.ID) {
2023-12-12 11:04:03 +01:00
ctx.ServerError("Validate objectId", err)
2023-12-09 19:11:38 +01:00
return
}
2023-12-22 14:52:10 +01:00
log.Info("RepositoryInbox: objectId validated: %v", objectID)
2023-12-22 14:52:10 +01:00
actorAsLoginID := actorID.AsLoginName() // used as LoginName in newly created user
log.Info("RepositoryInbox: remoteStargazer: %v", actorAsLoginID)
2023-11-15 12:29:17 +01:00
2023-12-01 15:07:13 +01:00
// Check if user already exists
2023-12-22 14:52:10 +01:00
users, err := SearchUsersByLoginName(actorAsLoginID)
2023-12-05 10:37:51 +01:00
if err != nil {
2023-12-15 16:02:50 +01:00
ctx.ServerError("Searching for user failed", err)
return
2023-12-05 10:37:51 +01:00
}
2023-12-15 14:45:20 +01:00
log.Info("RepositoryInbox: local found users: %v", len(users))
switch len(users) {
case 0:
{
2023-12-22 14:52:10 +01:00
user, err = createUserFromAP(ctx, actorID)
if err != nil {
ctx.ServerError("Creating user failed", err)
2023-12-13 16:44:11 +01:00
return
}
2023-12-15 14:45:20 +01:00
log.Info("RepositoryInbox: created user from ap: %v", user)
}
case 1:
{
user = users[0]
2023-12-15 14:45:20 +01:00
log.Info("RepositoryInbox: found user: %v", user)
2023-12-06 15:37:58 +01:00
}
default:
{
2023-12-15 14:45:20 +01:00
ctx.Error(http.StatusInternalServerError, "StarRepo",
fmt.Errorf("found more than one matches for federated users"))
2023-12-13 16:49:23 +01:00
return
2023-12-05 10:37:51 +01:00
}
}
2023-12-06 15:56:26 +01:00
2023-12-15 14:45:20 +01:00
// execute the activity if the repo was not stared already
alreadyStared := repo_model.IsStaring(ctx, user.ID, repository.ID)
if !alreadyStared {
err = repo_model.StarRepo(ctx, user.ID, repository.ID, true)
if err != nil {
ctx.Error(http.StatusInternalServerError, "StarRepo", err)
return
2023-12-07 13:24:01 +01:00
}
}
2023-11-30 16:10:26 +01:00
2023-12-07 13:54:07 +01:00
// wait 5 sec.
time.Sleep(5 * time.Second)
2023-11-10 14:10:23 +01:00
2023-10-20 15:16:04 +02:00
ctx.Status(http.StatusNoContent)
}
2023-12-13 16:44:11 +01:00
2023-12-15 14:45:20 +01:00
// TODO: Move this to model.user.search ? or to model.user.externalLoginUser ?
func SearchUsersByLoginName(loginName string) ([]*user_model.User, error) {
2023-12-22 15:00:42 +01:00
actionsUser := user_model.NewActionsUser()
2023-12-15 14:45:20 +01:00
actionsUser.IsAdmin = true
options := &user_model.SearchUserOptions{
LoginName: loginName,
Actor: actionsUser,
Type: user_model.UserTypeRemoteUser,
OrderBy: db.SearchOrderByAlphabetically,
ListOptions: db.ListOptions{PageSize: 1},
IsActive: util.OptionalBoolFalse,
IncludeReserved: true,
}
users, _, err := user_model.SearchUsers(db.DefaultContext, options)
if err != nil {
return []*user_model.User{}, fmt.Errorf("search failed: %v", err)
}
return users, nil
}
2023-12-29 15:48:45 +01:00
func createNodeInfo(ctx *context.APIContext, actorID forgefed.ActorID) (forgefed.NodeInfo, error) {
2023-12-22 15:00:42 +01:00
actionsUser := user_model.NewActionsUser()
2023-12-19 10:19:35 +01:00
client, err := api.NewClient(ctx, actionsUser, "no idea where to get key material.")
2023-12-13 16:44:11 +01:00
if err != nil {
2023-12-29 15:48:45 +01:00
return forgefed.NodeInfo{}, err
2023-12-13 16:44:11 +01:00
}
2023-12-29 15:48:45 +01:00
body, err := client.GetBody(actorID.AsWellKnownNodeInfoUri())
2023-12-13 16:44:11 +01:00
if err != nil {
2023-12-29 15:48:45 +01:00
return forgefed.NodeInfo{}, err
}
nodeInfoWellKnown, err := forgefed.NewNodeInfoWellKnown(body)
if err != nil {
return forgefed.NodeInfo{}, err
2023-12-13 16:44:11 +01:00
}
2023-12-29 15:48:45 +01:00
body, err = client.GetBody(nodeInfoWellKnown.Href)
if err != nil {
return forgefed.NodeInfo{}, err
}
return forgefed.NewNodeInfo(body)
}
2023-12-29 15:48:45 +01:00
// ToDo: Maybe use externalLoginUser
func createUserFromAP(ctx *context.APIContext, personID forgefed.PersonID) (*user_model.User, error) {
// ToDo: Do we get a publicKeyId from server, repo or owner or repo?
actionsUser := user_model.NewActionsUser()
client, err := api.NewClient(ctx, actionsUser, "no idea where to get key material.")
if err != nil {
return &user_model.User{}, err
}
2023-12-29 15:48:45 +01:00
body, err := client.GetBody(personID.AsURI())
2023-12-13 16:44:11 +01:00
if err != nil {
return &user_model.User{}, err
}
2023-12-20 12:23:13 +01:00
2023-12-13 16:44:11 +01:00
person := ap.Person{}
2023-12-20 12:23:13 +01:00
err = person.UnmarshalJSON(body)
2023-12-13 16:44:11 +01:00
if err != nil {
return &user_model.User{}, err
}
2023-12-15 14:45:20 +01:00
log.Info("RepositoryInbox: got person by ap: %v", person)
2023-12-21 09:30:07 +01:00
2024-01-03 18:10:24 +01:00
// TODO: we should validate the person object here!
2023-12-22 14:52:10 +01:00
email := fmt.Sprintf("%v@%v", uuid.New().String(), personID.Host)
loginName := personID.AsLoginName()
name := fmt.Sprintf("%v%v", person.PreferredUsername.String(), personID.HostSuffix())
2023-12-15 14:45:20 +01:00
log.Info("RepositoryInbox: person.Name: %v", person.Name)
fullName := person.Name.String()
if len(person.Name) == 0 {
fullName = name
}
2023-12-21 09:30:07 +01:00
2023-12-13 16:44:11 +01:00
password, err := pwd_gen.Generate(32, 10, 10, false, true)
if err != nil {
return &user_model.User{}, err
}
2023-12-21 09:30:07 +01:00
2023-12-13 16:44:11 +01:00
user := &user_model.User{
2023-12-15 14:45:20 +01:00
LowerName: strings.ToLower(person.PreferredUsername.String()),
Name: name,
FullName: fullName,
2023-12-13 16:44:11 +01:00
Email: email,
EmailNotificationsPreference: "disabled",
Passwd: password,
MustChangePassword: false,
LoginName: loginName,
Type: user_model.UserTypeRemoteUser,
IsAdmin: false,
}
2023-12-21 09:30:07 +01:00
2023-12-13 16:44:11 +01:00
overwrite := &user_model.CreateUserOverwriteOptions{
IsActive: util.OptionalBoolFalse,
IsRestricted: util.OptionalBoolFalse,
}
2023-12-21 09:30:07 +01:00
2023-12-13 16:44:11 +01:00
if err := user_model.CreateUser(ctx, user, overwrite); err != nil {
return &user_model.User{}, err
}
return user, nil
}