2018-12-24 18:45:15 +01:00
|
|
|
/*
|
2020-02-08 19:05:09 +01:00
|
|
|
* Copyright © 2018-2020 A Bunch Tell LLC.
|
2018-12-24 18:45:15 +01:00
|
|
|
*
|
|
|
|
* This file is part of WriteFreely.
|
|
|
|
*
|
|
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
|
|
* in the LICENSE file in this source code package.
|
|
|
|
*/
|
2018-12-31 07:05:26 +01:00
|
|
|
|
2018-11-08 07:28:08 +01:00
|
|
|
package writefreely
|
|
|
|
|
|
|
|
import (
|
2019-10-08 14:58:19 +02:00
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
2019-08-28 21:37:45 +02:00
|
|
|
"net/http"
|
2019-10-08 14:58:19 +02:00
|
|
|
"strings"
|
2019-08-28 21:37:45 +02:00
|
|
|
|
2018-11-08 07:28:08 +01:00
|
|
|
"github.com/writeas/go-webfinger"
|
|
|
|
"github.com/writeas/impart"
|
|
|
|
"github.com/writeas/web-core/log"
|
|
|
|
"github.com/writeas/writefreely/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type wfResolver struct {
|
|
|
|
db *datastore
|
|
|
|
cfg *config.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
var wfUserNotFoundErr = impart.HTTPError{http.StatusNotFound, "User not found."}
|
|
|
|
|
|
|
|
func (wfr wfResolver) FindUser(username string, host, requestHost string, r []webfinger.Rel) (*webfinger.Resource, error) {
|
|
|
|
var c *Collection
|
|
|
|
var err error
|
|
|
|
if wfr.cfg.App.SingleUser {
|
|
|
|
c, err = wfr.db.GetCollectionByID(1)
|
|
|
|
} else {
|
|
|
|
c, err = wfr.db.GetCollection(username)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Unable to get blog: %v", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-12 00:21:45 +01:00
|
|
|
silenced, err := wfr.db.IsUserSilenced(c.OwnerID)
|
2019-08-28 21:37:45 +02:00
|
|
|
if err != nil {
|
2019-11-12 00:21:45 +01:00
|
|
|
log.Error("webfinger find user: check is silenced: %v", err)
|
2019-08-28 21:37:45 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-12 00:21:45 +01:00
|
|
|
if silenced {
|
2019-08-28 21:37:45 +02:00
|
|
|
return nil, wfUserNotFoundErr
|
|
|
|
}
|
2019-06-15 00:54:04 +02:00
|
|
|
c.hostName = wfr.cfg.App.Host
|
2018-11-08 07:28:08 +01:00
|
|
|
if wfr.cfg.App.SingleUser {
|
|
|
|
// Ensure handle matches user-chosen one on single-user blogs
|
|
|
|
if username != c.Alias {
|
|
|
|
log.Info("Username '%s' is not handle '%s'", username, c.Alias)
|
|
|
|
return nil, wfUserNotFoundErr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Only return information if site has federation enabled.
|
|
|
|
// TODO: enable two levels of federation? Unlisted or Public on timelines?
|
|
|
|
if !wfr.cfg.App.Federation {
|
|
|
|
return nil, wfUserNotFoundErr
|
|
|
|
}
|
|
|
|
|
|
|
|
res := webfinger.Resource{
|
|
|
|
Subject: "acct:" + username + "@" + host,
|
|
|
|
Aliases: []string{
|
|
|
|
c.CanonicalURL(),
|
|
|
|
c.FederatedAccount(),
|
|
|
|
},
|
|
|
|
Links: []webfinger.Link{
|
|
|
|
{
|
|
|
|
HRef: c.CanonicalURL(),
|
|
|
|
Type: "text/html",
|
|
|
|
Rel: "https://webfinger.net/rel/profile-page",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
HRef: c.FederatedAccount(),
|
|
|
|
Type: "application/activity+json",
|
|
|
|
Rel: "self",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return &res, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wfr wfResolver) DummyUser(username string, hostname string, r []webfinger.Rel) (*webfinger.Resource, error) {
|
|
|
|
return nil, wfUserNotFoundErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wfr wfResolver) IsNotFoundError(err error) bool {
|
|
|
|
return err == wfUserNotFoundErr
|
|
|
|
}
|
2019-10-08 14:58:19 +02:00
|
|
|
|
|
|
|
// RemoteLookup looks up a user by handle at a remote server
|
|
|
|
// and returns the actor URL
|
|
|
|
func RemoteLookup(handle string) string {
|
|
|
|
handle = strings.TrimLeft(handle, "@")
|
|
|
|
// let's take the server part of the handle
|
|
|
|
parts := strings.Split(handle, "@")
|
|
|
|
resp, err := http.Get("https://" + parts[1] + "/.well-known/webfinger?resource=acct:" + handle)
|
|
|
|
if err != nil {
|
2020-03-17 18:42:51 +01:00
|
|
|
log.Error("Error on webfinger request: %v", err)
|
2019-10-09 13:34:31 +02:00
|
|
|
return ""
|
2019-10-08 14:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
2020-03-17 18:42:51 +01:00
|
|
|
log.Error("Error on webfinger response: %v", err)
|
2019-10-09 13:34:31 +02:00
|
|
|
return ""
|
2019-10-08 14:58:19 +02:00
|
|
|
}
|
|
|
|
|
2019-10-15 08:59:24 +02:00
|
|
|
var result webfinger.Resource
|
|
|
|
err = json.Unmarshal(body, &result)
|
|
|
|
if err != nil {
|
2020-03-17 18:42:51 +01:00
|
|
|
log.Error("Unable to parse webfinger response: %v", err)
|
2019-10-15 08:59:24 +02:00
|
|
|
return ""
|
|
|
|
}
|
2019-10-08 14:58:19 +02:00
|
|
|
|
2019-10-11 09:05:18 +02:00
|
|
|
var href string
|
2019-10-11 09:33:51 +02:00
|
|
|
// iterate over webfinger links and find the one with
|
|
|
|
// a self "rel"
|
2019-10-15 08:59:24 +02:00
|
|
|
for _, link := range result.Links {
|
|
|
|
if link.Rel == "self" {
|
|
|
|
href = link.HRef
|
2019-10-11 09:05:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we didn't find it with the above then
|
|
|
|
// try using aliases
|
|
|
|
if href == "" {
|
|
|
|
// take the last alias because mastodon has the
|
|
|
|
// https://instance.tld/@user first which
|
|
|
|
// doesn't work as an href
|
2019-10-15 08:59:24 +02:00
|
|
|
href = result.Aliases[len(result.Aliases)-1]
|
2019-10-11 09:05:18 +02:00
|
|
|
}
|
2019-10-08 14:58:19 +02:00
|
|
|
|
2019-10-11 09:05:18 +02:00
|
|
|
return href
|
2019-10-08 14:58:19 +02:00
|
|
|
}
|