Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Webfinger endpoint #19462

Merged
merged 17 commits into from
May 9, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Implemented Webfinger endpoint.
  • Loading branch information
KN4CK3R committed Apr 20, 2022
commit 2e2e4c7ee42ad1a016b47730b63fbb3c2172f9ad
1 change: 1 addition & 0 deletions routers/web/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ func RegisterRoutes(m *web.Route) {
m.Get("/openid-configuration", auth.OIDCWellKnown)
if setting.Federation.Enabled {
m.Get("/nodeinfo", NodeInfoLinks)
m.Get("/webfinger", WebfingerQuery)
}
m.Get("/change-password", func(w http.ResponseWriter, req *http.Request) {
http.Redirect(w, req, "/user/settings/account", http.StatusTemporaryRedirect)
Expand Down
112 changes: 112 additions & 0 deletions routers/web/webfinger.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
// Copyright 2022 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package web

import (
"fmt"
"net/http"
"net/url"
"regexp"
"strings"

user_model "code.gitea.io/gitea/models/user"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
)

var webfingerRessourcePattern = regexp.MustCompile(`(?i)\A([a-z^:]+):(.*)\z`)

// https://datatracker.ietf.org/doc/html/draft-ietf-appsawg-webfinger-14#section-4.4

type webfingerJRD struct {
Subject string `json:"subject,omitempty"`
Aliases []string `json:"aliases,omitempty"`
Properties map[string]interface{} `json:"properties,omitempty"`
Links []*webfingerLink `json:"links,omitempty"`
}

type webfingerLink struct {
Rel string `json:"rel,omitempty"`
Type string `json:"type,omitempty"`
Href string `json:"href,omitempty"`
Titles map[string]string `json:"titles,omitempty"`
Properties map[string]interface{} `json:"properties,omitempty"`
}

// WebfingerQuery returns informations about a resource
// https://datatracker.ietf.org/doc/html/rfc7565
func WebfingerQuery(ctx *context.Context) {
resource := ctx.FormTrim("resource")
6543 marked this conversation as resolved.
Show resolved Hide resolved

scheme := "acct"
uri := resource

match := webfingerRessourcePattern.FindStringSubmatch(resource)
if match != nil {
scheme = match[1]
uri = match[2]
}

appURL, _ := url.Parse(setting.AppURL)

var u *user_model.User
var err error

switch scheme {
case "acct":
// allow only the current host
parts := strings.SplitN(uri, "@", 2)
if len(parts) != 2 {
ctx.Error(http.StatusBadRequest)
return
}
if parts[1] != appURL.Host {
ctx.Error(http.StatusBadRequest)
return
}

u, err = user_model.GetUserByNameCtx(ctx, parts[0])
6543 marked this conversation as resolved.
Show resolved Hide resolved
case "mailto":
u, err = user_model.GetUserByEmailContext(ctx, uri)
KN4CK3R marked this conversation as resolved.
Show resolved Hide resolved
default:
ctx.Error(http.StatusBadRequest)
return
}
if err != nil {
if user_model.IsErrUserNotExist(err) {
ctx.Error(http.StatusNotFound)
} else {
log.Error("Error getting user: %v", err)
6543 marked this conversation as resolved.
Show resolved Hide resolved
ctx.Error(http.StatusInternalServerError)
}
return
}

// Should we check IsUserVisibleToViewer here?
KN4CK3R marked this conversation as resolved.
Show resolved Hide resolved

aliases := make([]string, 0, 1)
if !u.KeepEmailPrivate {
aliases = append(aliases, fmt.Sprintf("mailto:%s", u.Email))
wxiaoguang marked this conversation as resolved.
Show resolved Hide resolved
}

links := []*webfingerLink{
{
Rel: "http://webfinger.net/rel/profile-page",
Type: "text/html",
Href: u.HTMLURL(),
},
{
Rel: "http://webfinger.net/rel/avatar",
Href: u.AvatarLink(),
},
}

ctx.JSON(http.StatusOK, &webfingerJRD{
Subject: fmt.Sprintf("acct:%s@%s", url.QueryEscape(u.Name), appURL.Host),
6543 marked this conversation as resolved.
Show resolved Hide resolved
Aliases: aliases,
Links: links,
})
}