2024-02-08 13:31:27 +01:00
|
|
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package forgefed
|
|
|
|
|
|
|
|
import (
|
2024-03-23 15:27:45 +01:00
|
|
|
"context"
|
2024-02-08 13:31:27 +01:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
2024-02-08 15:31:02 +01:00
|
|
|
"code.gitea.io/gitea/models/forgefed"
|
2024-02-08 13:31:27 +01:00
|
|
|
"code.gitea.io/gitea/models/repo"
|
2024-02-08 15:31:02 +01:00
|
|
|
"code.gitea.io/gitea/models/user"
|
|
|
|
"code.gitea.io/gitea/modules/activitypub"
|
2024-02-09 16:24:51 +01:00
|
|
|
"code.gitea.io/gitea/modules/auth/password"
|
2024-02-08 13:31:27 +01:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/validation"
|
|
|
|
|
2024-02-08 15:31:02 +01:00
|
|
|
"github.com/google/uuid"
|
2024-02-08 13:31:27 +01:00
|
|
|
)
|
|
|
|
|
2024-03-21 14:42:04 +01:00
|
|
|
// ToDo: May need to change the name to reflect workings of function better
|
2024-03-21 14:41:11 +01:00
|
|
|
// LikeActivity receives a ForgeLike activity and does the following:
|
|
|
|
// Validation of the activity
|
|
|
|
// Creation of a (remote) federationHost if not existing
|
|
|
|
// Creation of a forgefed Person if not existing
|
|
|
|
// Validation of incoming RepositoryID against Local RepositoryID
|
|
|
|
// Star the repo if it wasn't already stared
|
|
|
|
// Do some mitigation against out of order attacks
|
2024-03-23 15:27:45 +01:00
|
|
|
func LikeActivity(ctx context.Context, form any, repositoryID int64) (int, string, error) {
|
2024-02-08 15:31:02 +01:00
|
|
|
activity := form.(*forgefed.ForgeLike)
|
2024-02-08 13:31:27 +01:00
|
|
|
if res, err := validation.IsValid(activity); !res {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusNotAcceptable, "Invalid activity", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Activity validated:%v", activity)
|
2024-02-08 13:31:27 +01:00
|
|
|
|
|
|
|
// parse actorID (person)
|
|
|
|
actorURI := activity.Actor.GetID().String()
|
2024-03-26 16:53:02 +01:00
|
|
|
log.Info("actorURI was: %v", actorURI)
|
2024-03-22 20:14:20 +01:00
|
|
|
federationHost, err := GetFederationHostForUri(ctx, actorURI)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
2024-03-22 20:14:20 +01:00
|
|
|
return http.StatusInternalServerError, "Wrong FederationHost", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
|
|
|
if !activity.IsNewer(federationHost.LatestActivity) {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusNotAcceptable, "Activity out of order.", fmt.Errorf("Activity already processed")
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
actorID, err := forgefed.NewPersonID(actorURI, string(federationHost.NodeInfo.Source))
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusNotAcceptable, "Invalid PersonID", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Actor accepted:%v", actorID)
|
|
|
|
|
2024-02-08 13:31:27 +01:00
|
|
|
// parse objectID (repository)
|
2024-02-08 15:31:02 +01:00
|
|
|
objectID, err := forgefed.NewRepositoryID(activity.Object.GetID().String(), string(forgefed.ForgejoSourceType))
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusNotAcceptable, "Invalid objectId", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-09 16:44:03 +01:00
|
|
|
if objectID.ID != fmt.Sprint(repositoryID) {
|
|
|
|
return http.StatusNotAcceptable, "Invalid objectId", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Object accepted:%v", objectID)
|
2024-02-08 13:31:27 +01:00
|
|
|
|
|
|
|
// Check if user already exists
|
2024-02-08 15:31:02 +01:00
|
|
|
user, _, err := user.FindFederatedUser(ctx, actorID.ID, federationHost.ID)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusInternalServerError, "Searching for user failed", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
|
|
|
if user != nil {
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Found local federatedUser: %v", user)
|
2024-02-08 13:31:27 +01:00
|
|
|
} else {
|
|
|
|
user, _, err = CreateUserFromAP(ctx, actorID, federationHost.ID)
|
|
|
|
if err != nil {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusInternalServerError, "Error creating federatedUser", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Created federatedUser from ap: %v", user)
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Got user:%v", user.Name)
|
2024-02-08 13:31:27 +01:00
|
|
|
|
|
|
|
// execute the activity if the repo was not stared already
|
2024-02-09 16:44:03 +01:00
|
|
|
alreadyStared := repo.IsStaring(ctx, user.ID, repositoryID)
|
2024-02-08 13:31:27 +01:00
|
|
|
if !alreadyStared {
|
2024-02-09 16:44:03 +01:00
|
|
|
err = repo.StarRepo(ctx, user.ID, repositoryID, true)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusNotAcceptable, "Error staring", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
federationHost.LatestActivity = activity.StartTime
|
2024-02-08 15:31:02 +01:00
|
|
|
err = forgefed.UpdateFederationHost(ctx, federationHost)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
2024-02-09 16:44:03 +01:00
|
|
|
return http.StatusNotAcceptable, "Error updating federatedHost", err
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
|
|
|
|
2024-02-09 16:44:03 +01:00
|
|
|
return 0, "", nil
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
|
|
|
|
2024-03-23 15:27:45 +01:00
|
|
|
func CreateFederationHostFromAP(ctx context.Context, actorID forgefed.ActorID) (*forgefed.FederationHost, error) {
|
2024-02-08 15:31:02 +01:00
|
|
|
actionsUser := user.NewActionsUser()
|
|
|
|
client, err := activitypub.NewClient(ctx, actionsUser, "no idea where to get key material.")
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
body, err := client.GetBody(actorID.AsWellKnownNodeInfoURI())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
nodeInfoWellKnown, err := forgefed.NewNodeInfoWellKnown(body)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
body, err = client.GetBody(nodeInfoWellKnown.Href)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
nodeInfo, err := forgefed.NewNodeInfo(body)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
result, err := forgefed.NewFederationHost(nodeInfo, actorID.Host)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
err = forgefed.CreateFederationHost(ctx, &result)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &result, nil
|
|
|
|
}
|
|
|
|
|
2024-03-23 15:27:45 +01:00
|
|
|
func GetFederationHostForUri(ctx context.Context, actorURI string) (*forgefed.FederationHost, error) {
|
2024-03-22 20:14:20 +01:00
|
|
|
// parse actorID (person)
|
2024-03-26 16:53:02 +01:00
|
|
|
log.Info("Input was: %v", actorURI)
|
2024-03-22 20:14:20 +01:00
|
|
|
rawActorID, err := forgefed.NewActorID(actorURI)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
federationHost, err := forgefed.FindFederationHostByFqdn(ctx, rawActorID.Host)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if federationHost == nil {
|
|
|
|
result, err := CreateFederationHostFromAP(ctx, rawActorID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
federationHost = result
|
|
|
|
}
|
|
|
|
return federationHost, nil
|
|
|
|
}
|
|
|
|
|
2024-03-23 15:27:45 +01:00
|
|
|
func CreateUserFromAP(ctx context.Context, personID forgefed.PersonID, federationHostID int64) (*user.User, *user.FederatedUser, error) {
|
2024-02-08 13:31:27 +01:00
|
|
|
// ToDo: Do we get a publicKeyId from server, repo or owner or repo?
|
2024-02-08 15:31:02 +01:00
|
|
|
actionsUser := user.NewActionsUser()
|
|
|
|
client, err := activitypub.NewClient(ctx, actionsUser, "no idea where to get key material.")
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := client.GetBody(personID.AsURI())
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2024-02-08 15:31:02 +01:00
|
|
|
person := forgefed.ForgePerson{}
|
2024-02-08 13:31:27 +01:00
|
|
|
err = person.UnmarshalJSON(body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if res, err := validation.IsValid(person); !res {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Fetched valid person:%q", person)
|
2024-02-08 13:31:27 +01:00
|
|
|
|
|
|
|
localFqdn, err := url.ParseRequestURI(setting.AppURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
email := fmt.Sprintf("f%v@%v", uuid.New().String(), localFqdn.Hostname())
|
|
|
|
loginName := personID.AsLoginName()
|
|
|
|
name := fmt.Sprintf("%v%v", person.PreferredUsername.String(), personID.HostSuffix())
|
|
|
|
fullName := person.Name.String()
|
|
|
|
if len(person.Name) == 0 {
|
|
|
|
fullName = name
|
|
|
|
}
|
2024-02-09 16:24:51 +01:00
|
|
|
password, err := password.Generate(32)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
newUser := user.User{
|
2024-02-08 13:31:27 +01:00
|
|
|
LowerName: strings.ToLower(person.PreferredUsername.String()),
|
|
|
|
Name: name,
|
|
|
|
FullName: fullName,
|
|
|
|
Email: email,
|
|
|
|
EmailNotificationsPreference: "disabled",
|
|
|
|
Passwd: password,
|
|
|
|
MustChangePassword: false,
|
|
|
|
LoginName: loginName,
|
2024-02-08 15:31:02 +01:00
|
|
|
Type: user.UserTypeRemoteUser,
|
2024-02-08 13:31:27 +01:00
|
|
|
IsAdmin: false,
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
federatedUser := user.FederatedUser{
|
2024-02-08 13:31:27 +01:00
|
|
|
ExternalID: personID.ID,
|
|
|
|
FederationHostID: federationHostID,
|
|
|
|
}
|
2024-02-08 15:31:02 +01:00
|
|
|
err = user.CreateFederatedUser(ctx, &newUser, &federatedUser)
|
2024-02-08 13:31:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2024-02-08 15:16:37 +01:00
|
|
|
log.Info("Created federatedUser:%q", federatedUser)
|
2024-02-08 13:31:27 +01:00
|
|
|
|
2024-02-08 15:31:02 +01:00
|
|
|
return &newUser, &federatedUser, nil
|
2024-02-08 13:31:27 +01:00
|
|
|
}
|
2024-03-22 17:42:38 +01:00
|
|
|
|
2024-03-22 20:14:20 +01:00
|
|
|
// Create or update a list of FederatedRepo structs
|
2024-03-25 16:35:35 +01:00
|
|
|
func StoreFederatedRepoList(ctx context.Context, localRepoId int64, federatedRepoList []string) (int, string, error) {
|
2024-03-23 17:01:25 +01:00
|
|
|
federatedRepos := make([]*repo.FederatedRepo, 0, len(federatedRepoList))
|
2024-03-22 20:14:20 +01:00
|
|
|
for _, uri := range federatedRepoList {
|
|
|
|
federationHost, err := GetFederationHostForUri(ctx, uri)
|
2024-03-22 17:42:38 +01:00
|
|
|
if err != nil {
|
2024-03-22 20:14:20 +01:00
|
|
|
return http.StatusInternalServerError, "Wrong FederationHost", err
|
2024-03-22 17:42:38 +01:00
|
|
|
}
|
2024-03-22 20:14:20 +01:00
|
|
|
federatedRepoID, err := forgefed.NewRepositoryID(uri, string(federationHost.NodeInfo.Source))
|
2024-03-22 17:42:38 +01:00
|
|
|
if err != nil {
|
2024-03-22 20:14:20 +01:00
|
|
|
return http.StatusNotAcceptable, "Invalid federated repo", err
|
2024-03-22 17:42:38 +01:00
|
|
|
}
|
2024-03-26 08:28:22 +01:00
|
|
|
federatedRepo, err := repo.NewFederatedRepo(localRepoId, federatedRepoID.ID, federationHost.ID, uri)
|
2024-03-22 17:42:38 +01:00
|
|
|
if err != nil {
|
2024-03-22 20:14:20 +01:00
|
|
|
return http.StatusNotAcceptable, "Invalid federated repo", err
|
2024-03-22 17:42:38 +01:00
|
|
|
}
|
2024-03-22 20:14:20 +01:00
|
|
|
federatedRepos = append(federatedRepos, &federatedRepo)
|
2024-03-22 17:42:38 +01:00
|
|
|
}
|
|
|
|
|
2024-03-25 16:35:35 +01:00
|
|
|
repo.StoreFederatedRepos(ctx, localRepoId, federatedRepos)
|
2024-03-22 20:14:20 +01:00
|
|
|
|
|
|
|
return 0, "", nil
|
2024-03-22 17:42:38 +01:00
|
|
|
}
|