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

292 lines
8.7 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
import (
"fmt"
2023-11-29 15:34:02 +01:00
"io"
2023-10-20 15:16:04 +02:00
"net/http"
2023-12-05 14:49:27 +01:00
"net/url"
"strings"
2023-10-20 15:16:04 +02:00
"code.gitea.io/gitea/models/activitypub"
2023-12-01 17:06:39 +01:00
"code.gitea.io/gitea/models/db"
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"
2023-11-06 18:29:48 +01:00
"code.gitea.io/gitea/modules/forgefed"
"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"
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"
2023-12-01 15:07:13 +01:00
user_model "code.gitea.io/gitea/models/user"
ap "github.com/go-ap/activitypub"
2023-12-05 11:38:36 +01:00
pwd_gen "github.com/sethvargo/go-password/password"
//f3 "lab.forgefriends.org/friendlyforgeformat/gof3"
2023-10-20 15:16:04 +02:00
)
2023-12-05 14:49:27 +01:00
var actionsUser = user_model.NewActionsUser()
func generateUUIDMail(person ap.Actor) (string, error) {
// UUID@remote.host
id := uuid.New().String()
//url, err := url.Parse(person.URL.GetID().String())
//host := url.Host
return strings.Join([]string{id, "example.com"}, "@"), nil
}
func generateRemoteUserName(person ap.Actor) (string, error) {
u, err := url.Parse(person.URL.GetID().String())
if err != nil {
return "", err
}
host := strings.Split(u.Host, ":")[0] // no port in username
if name := person.PreferredUsername.String(); name != "" {
return strings.Join([]string{name, host}, "_"), nil
}
if name := person.Name.String(); name != "" {
return strings.Join([]string{name, host}, "_"), nil
}
return "", fmt.Errorf("empty name, preferredUsername field")
}
func generateRandomPassword() (string, error) {
// Generate a password that is 64 characters long with 10 digits, 10 symbols,
// allowing upper and lower case letters, disallowing repeat characters.
res, err := pwd_gen.Generate(32, 10, 10, false, false)
if err != nil {
return "", err
}
return res, err
}
func searchUsersByPerson(actorId string) ([]*user_model.User, error) {
2023-12-05 14:49:27 +01:00
actionsUser.IsAdmin = true
options := &user_model.SearchUserOptions{
LoginName: actorId,
2023-12-05 14:49:27 +01:00
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)
}
log.Info("local found users: %v", len(users))
return users, nil
}
2023-12-06 15:13:53 +01:00
func getPersonByRest(remoteStargazer, starReceiver string, ctx *context.APIContext) (ap.Person, error) {
client, err := api.NewClient(ctx, actionsUser, starReceiver) // The star receiver signs the http get request
if err != nil {
return ap.Person{}, err
}
// get_person_by_rest
bytes := []byte{0} // no body needed for getting user actor
response, err := client.Get(bytes, remoteStargazer)
if err != nil {
return ap.Person{}, err
}
defer response.Body.Close()
body, err := io.ReadAll(response.Body)
if err != nil {
return ap.Person{}, err
}
// parse response
person := ap.Person{}
err = person.UnmarshalJSON(body)
if err != nil {
return ap.Person{}, err
}
log.Info("remoteStargazer: %v", remoteStargazer)
log.Info("http client. %v", client)
log.Info("response: %v\n error: ", response, err)
log.Info("Person is: %v", person)
log.Info("Person Name is: %v", person.PreferredUsername)
log.Info("Person URL is: %v", person.URL)
return person, nil
}
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:
// "$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-12-01 17:06:39 +01:00
activity := web.GetForm(ctx).(*forgefed.Star)
log.Info("RepositoryInbox: Activity.Source %v", activity.Source)
log.Info("RepositoryInbox: Activity.Actor %v", activity.Actor)
2023-11-03 17:45:53 +01:00
2023-11-15 14:27:47 +01: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-12-05 09:26:03 +01:00
// "https://Codeberg.org/api/v1/activitypub/user-id/12345"
// "https://codeberg.org:443/api/v1/activitypub/user-id/12345"
2023-12-05 09:26:03 +01:00
// "https://codeberg.org/api/v1/activitypub/../activitypub/user-id/12345"
// "https://user:password@codeberg.org/api/v1/activitypub/user-id/12345"
// "https://codeberg.org/api/v1/activitypub//user-id/12345"
// parse senderActorId
// senderActorId holds the data to construct the sender of the star
log.Info("activity.Actor.GetID().String(): %v", activity.Actor.GetID().String())
senderActorId, err := activitypub.ParseActorID(activity.Actor.GetID().String(), string(activity.Source))
if err != nil {
panic(err)
}
receivedRepoId, err := activitypub.ParseActorID(activity.Activity.Object.GetID().String(), string(activity.Source))
if err != nil {
panic(err)
}
// validate receiverActorId against repo owner
repositoryID := ctx.Repo.Repository.ID
if repositoryID != int64(receivedRepoId.GetUserId()) {
panic(
fmt.Errorf("received repo id and repo id were not identical:\nreceived id: %v\nrepo id:%v", receivedRepoId, repositoryID))
}
// Is the ActorID Struct valid?
senderActorId.PanicIfInvalid()
receivedRepoId.PanicIfInvalid()
log.Info("RepositoryInbox: Actor parsed. %v", senderActorId)
log.Info("RepositoryInbox: Actor parsed. %v", receivedRepoId)
2023-12-06 15:37:14 +01:00
remoteStargazer := senderActorId.GetNormalizedUri() // used as LoginName in newly created user
starReceiver := receivedRepoId.GetNormalizedUri()
log.Info("remotStargazer: %v", remoteStargazer)
log.Info("starReceiver: %v", starReceiver)
2023-11-15 12:29:17 +01:00
2023-12-01 15:07:13 +01:00
// Check if user already exists
2023-12-01 17:06:39 +01:00
// TODO: If we where able to search for federated id there would be no need to get the remote person.
2023-12-05 14:52:33 +01:00
// N.B. We need the username as a display name from the remote host. This requires us to make another request
// We might extend the Star Activity by the username, then this request would become redundant
users, err := searchUsersByPerson(remoteStargazer)
2023-12-05 10:37:51 +01:00
if err != nil {
panic(fmt.Errorf("searching for user failed: %v", err))
2023-12-05 10:37:51 +01:00
}
if len(users) == 0 {
2023-12-06 15:13:53 +01:00
person, err := getPersonByRest(remoteStargazer, starReceiver, ctx)
2023-12-01 17:06:39 +01:00
// create user
2023-12-05 14:52:33 +01:00
// ToDo: We need a remote server with federation enabled to properly test this
2023-12-01 17:06:39 +01:00
2023-12-05 10:37:51 +01:00
email, err := generateUUIDMail(person)
2023-12-05 11:38:36 +01:00
if err != nil {
panic(fmt.Errorf("generate user failed: %v", err))
2023-12-05 11:38:36 +01:00
}
username, err := generateRemoteUserName(person)
2023-12-05 11:38:36 +01:00
if err != nil {
panic(fmt.Errorf("generate user failed: %v", err))
2023-12-05 11:38:36 +01:00
}
password, err := generateRandomPassword()
if err != nil {
panic(fmt.Errorf("generate password failed: %v", err))
2023-12-05 11:38:36 +01:00
}
2023-12-05 10:37:51 +01:00
user := &user_model.User{
2023-12-05 11:38:36 +01:00
LowerName: strings.ToLower(username),
2023-12-05 10:37:51 +01:00
Name: username,
Email: email,
EmailNotificationsPreference: "disabled",
2023-12-05 11:38:36 +01:00
Passwd: password,
2023-12-05 10:37:51 +01:00
MustChangePassword: false,
2023-12-05 14:53:10 +01:00
LoginName: remoteStargazer,
2023-12-05 11:38:36 +01:00
Type: user_model.UserTypeRemoteUser,
2023-12-05 10:37:51 +01:00
IsAdmin: false,
}
overwriteDefault := &user_model.CreateUserOverwriteOptions{
IsActive: util.OptionalBoolFalse,
IsRestricted: util.OptionalBoolFalse,
}
if err := user_model.CreateUser(ctx, user, overwriteDefault); err != nil {
panic(fmt.Errorf("createUser: %w", err))
2023-12-05 10:37:51 +01:00
}
2023-12-05 11:46:11 +01:00
log.Info("User created!")
2023-12-01 17:06:39 +01:00
} else {
// use first user
user := users[0]
log.Info("%v", user)
2023-12-01 11:56:12 +01:00
}
2023-12-05 10:37:51 +01:00
2023-12-01 17:06:39 +01:00
// TODO: handle case of count > 1
// execute star action
2023-11-30 16:10:26 +01:00
2023-11-15 09:23:03 +01:00
// wait 15 sec.
2023-11-10 14:10:23 +01:00
2023-10-20 15:16:04 +02:00
ctx.Status(http.StatusNoContent)
}