10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
"type": "text/html", "href": @$pfp }
]
}]]
local terra
webfinger(co: &lib.srv.convo)
var res = co:pgetv('resource')
if (not res) or not res:startswith 'acct:' then goto err end
var acct = res + 5
var svp = lib.str.find(acct, '@')
if svp:ref() then
acct.ct = (svp.ptr - acct.ptr)
svp:advance(1)
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
"type": "text/html", "href": @$pfp }
]
}]]
local terra
webfinger(co: &lib.srv.convo)
var res = co:pgetv('resource')
lib.dbg('got webfinger request for resource ', {res.ptr,res.ct})
if (not res) or not res:startswith 'acct:' then goto err end
var acct = res + 5
var svp = lib.str.find(acct, '@')
if svp:ref() then
acct.ct = (svp.ptr - acct.ptr)
svp:advance(1)
|