mirror of
https://github.com/urbit/shrub.git
synced 2024-12-12 10:29:01 +03:00
e16c999c76
The /who endpoint responds with the name of the ship in JSON
23 lines
520 B
Plaintext
23 lines
520 B
Plaintext
/+ *server
|
|
:: @p request handler
|
|
::
|
|
|= [[now=@da eny=@ bek=beak] ~ ~]
|
|
|= [authorized=? =request:http]
|
|
^- simple-payload:http
|
|
=/ url=(unit pork:eyre)
|
|
(rush url.request apat:de-purl:html)
|
|
::
|
|
:: url doesn't match expected binding from :launch
|
|
::
|
|
?. ?=(^ url)
|
|
~| [%invalid-url url.request] !!
|
|
?. ?=([%who *] q.u.url)
|
|
~| [%unknown-url url.request] !!
|
|
::
|
|
::
|
|
?. ?=(~ t.q.u.url)
|
|
[[%404 ~] ~]
|
|
=/ response=json
|
|
(frond:enjs:format %who (ship:enjs:format p.bek))
|
|
(json-response:gen (json-to-octs response))
|