mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-22 09:54:24 +01:00
Parse Actor URL
This commit is contained in:
parent
7541251d63
commit
b869d91dc1
|
@ -6,6 +6,7 @@ package activitypub
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"code.gitea.io/gitea/modules/context"
|
"code.gitea.io/gitea/modules/context"
|
||||||
|
@ -18,6 +19,13 @@ import (
|
||||||
//f3 "lab.forgefriends.org/friendlyforgeformat/gof3"
|
//f3 "lab.forgefriends.org/friendlyforgeformat/gof3"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
Schema string
|
||||||
|
UserID string
|
||||||
|
Host string
|
||||||
|
Port string
|
||||||
|
)
|
||||||
|
|
||||||
// Repository function returns the Repository actor for a repo
|
// Repository function returns the Repository actor for a repo
|
||||||
func Repository(ctx *context.APIContext) {
|
func Repository(ctx *context.APIContext) {
|
||||||
// swagger:operation GET /activitypub/repository-id/{repository-id} activitypub activitypubRepository
|
// swagger:operation GET /activitypub/repository-id/{repository-id} activitypub activitypubRepository
|
||||||
|
@ -75,8 +83,16 @@ func RepositoryInbox(ctx *context.APIContext) {
|
||||||
log.Info("RepositoryInbox: Activity.Source %v", opt.Source)
|
log.Info("RepositoryInbox: Activity.Source %v", opt.Source)
|
||||||
log.Info("RepositoryInbox: Activity.Actor %v", opt.Actor)
|
log.Info("RepositoryInbox: Activity.Actor %v", opt.Actor)
|
||||||
|
|
||||||
// assume actor is: "actor": "https://codeberg.org/api/activitypub/user-id/12345"
|
// assume actor is: "actor": "https://codeberg.org/api/v1/activitypub/user-id/12345"
|
||||||
// parse actor
|
// parse actor
|
||||||
|
actor, err := parseActor(opt.Actor.GetID().String())
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Info("RepositoryInbox: Actor parsed. %v", actor)
|
||||||
|
|
||||||
// if not actor.isValid() then exit_with_error
|
// if not actor.isValid() then exit_with_error
|
||||||
// get_person_by_rest
|
// get_person_by_rest
|
||||||
// create_user_from_person (if not alreaydy present)
|
// create_user_from_person (if not alreaydy present)
|
||||||
|
@ -86,3 +102,37 @@ func RepositoryInbox(ctx *context.APIContext) {
|
||||||
ctx.Status(http.StatusNoContent)
|
ctx.Status(http.StatusNoContent)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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") {
|
||||||
|
return ActorData{}, fmt.Errorf("the Path to the API was invalid: %v\n the full URL is: %v\n", u.Path, actor)
|
||||||
|
}
|
||||||
|
|
||||||
|
pathWithUserID := strings.Split(u.Path, "/")
|
||||||
|
userId := pathWithUserID[len(pathWithUserID)-1]
|
||||||
|
|
||||||
|
return ActorData{
|
||||||
|
schema: u.Scheme,
|
||||||
|
userId: userId,
|
||||||
|
host: u.Host,
|
||||||
|
port: u.Port(),
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue