-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathscotty.hoon
158 lines (158 loc) · 3.74 KB
/
scotty.hoon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
:: scotty: @p-based http redirecter
::
:: redirects /scotty/~sampel/etc to sampel.com or w/e, based on eauth keen
::
::TODO maybe support eauthed ships providing a persistent override url
::
/+ dbug, verb
::
|%
+$ state-0
$: %0
pending=(map ship (map @ta [til=@da url=@t]))
==
::
+$ card card:agent:gall
::
++ response-timeout ~s30
::
++ send-keen
|= [kind=?(%keen %yawn) =ship =time]
^- card
=/ =wire /keen/(scot %p ship)
=. time (sub time (mod time ~h1))
=/ =spar:ames [ship /e/x/(scot %da time)//eauth/url]
[%pass wire %arvo %a ?-(kind %keen keen+[~ spar], %yawn yawn+spar)]
::
++ respond
|= [rid=@ta simple-payload:http]
^- (list card)
=/ =path /http-response/[rid]
:~ [%give %fact ~[path] %http-response-header !>(response-header)]
[%give %fact ~[path] %http-response-data !>(data)]
[%give %kick ~[path] ~]
==
::
++ timeout-response
|= who=@p
^- simple-payload:http
:- [200 ['content-type' 'text/html']~]
%- some
%- as-octs:mimes:html
%+ rap 3
:~ 'Sorry, '
(scot %p who)
' seems to be unavailable right now. Please try again later.'
==
::
++ redirect-response
|= [who=@p url=@t]
^- simple-payload:http
:- [302 ~['content-type'^'text/html' 'location'^url]]
%- some
%- as-octs:mimes:html
%+ rap 3
:~ 'Redirecting to '
(scot %p who)
'...'
==
--
::
=| state-0
=* state -
::
%- agent:dbug
%+ verb |
::
^- agent:gall
|_ =bowl:gall
+* this .
::
++ on-init
:_ this
[%pass /eyre/bind %arvo %e %connect [~ /scotty] dap.bowl]~
::
++ on-save !>(state)
++ on-load
|= ole=vase
^- (quip card _this)
[~ this(state !<(state-0 ole))]
::
++ on-poke
|= [=mark =vase]
^- (quip card _this)
?+ mark ~|([%unexpected-mark mark] !!)
%handle-http-request
=+ !<([rid=@ta [* * * =request:http]] vase)
?> ?=(%'GET' method.request)
=/ [who=@p url=@t]
%+ rash url.request
;~ pfix (jest '/scotty/')
;~(plug ;~(pfix sig fed:ag) (cook crip (star next)))
==
=/ new=? !(~(has by pending) who)
=/ til=@da (add now.bowl response-timeout)
=. pending
%+ ~(put by pending) who
(~(put by (~(gut by pending) who ~)) rid [til url])
:_ this
:~ (send-keen %keen who now.bowl)
[%pass /timeout/(scot %p who)/[rid] %arvo %b %wait til]
==
==
::
++ on-arvo
|= [=wire sign=sign-arvo]
^- (quip card _this)
~| wire
?+ wire !!
[%timeout @ @ ~]
?> ?=(%wake +<.sign)
?^ error.sign
%. [~ this]
(slog (cat 3 dap.bowl ' failed to process %wake') u.error.sign)
=/ who=@p (slav %p i.t.wire)
=/ rid=@ta i.t.t.wire
=. pending
=/ new (~(del by (~(gut by pending) who ~)) rid)
?: =(~ new) (~(del by pending) who)
(~(put by pending) who new)
:_ this
(respond rid (timeout-response who))
::
[%keen @ ~]
?> ?=(%tune +<.sign)
=/ who=@p (slav %p i.t.wire)
=/ bas=(unit @t)
?~ roar.sign ~
?~ q.dat.u.roar.sign ~
;;((unit @t) q.u.q.dat.u.roar.sign)
=? bas ?=(^ bas)
=+ i=(find "/~/eauth" (trip u.bas))
?~ i bas
`(end 3^u.i u.bas)
=/ all=(list [rid=@ta til=@da url=@t])
~(tap by (~(gut by pending) who ~))
=. pending (~(del by pending) who)
:_ this
%- zing
%+ turn all
|= [rid=@ta til=@da url=@t]
^- (list card)
:- [%pass /timeout/(scot %p who)/[rid] %arvo %b %rest til]
%+ respond rid
?~ bas (timeout-response who)
(redirect-response who (cat 3 u.bas url))
==
::
++ on-watch
|= =path
^- (quip card _this)
?> ?=([%http-response @ ~] path)
[~ this]
::
++ on-agent |=(* `this)
++ on-leave |=(* `this)
++ on-fail |=(* `this)
++ on-peek |=(* ~)
--