mirror of
https://github.com/urbit/shrub.git
synced 2025-01-07 05:26:56 +03:00
more consistent grab-*-token ordering
This commit is contained in:
parent
6c39ca4739
commit
3feb7f453e
@ -90,16 +90,16 @@
|
|||||||
==
|
==
|
||||||
::
|
::
|
||||||
++ grab-token
|
++ grab-token
|
||||||
|= a/httr ^- token
|
|= a/httr ^- axs/@t
|
||||||
(grab-json a (ot 'access_token'^so ~):jo)
|
(grab-json a (ot 'access_token'^so ~):jo)
|
||||||
::
|
::
|
||||||
++ grab-token-after-refresh
|
++ grab-expiring-token
|
||||||
|= a/httr ^- {exp/@u axs/token}
|
|= a/httr ^- {axs/@t exp/@u}
|
||||||
(grab-json a (ot 'expires_in'^ni 'access_token'^so ~):jo)
|
(grab-json a (ot 'access_token'^so 'expires_in'^ni ~):jo)
|
||||||
::
|
::
|
||||||
++ grab-both-tokens
|
++ grab-both-tokens
|
||||||
|= a/httr ^- {exp/@u axs/token ref/token}
|
|= a/httr ^- {axs/@t exp/@u ref/@t}
|
||||||
(grab-json a (ot 'expires_in'^ni 'access_token'^so 'refresh_token'^so ~):jo)
|
(grab-json a (ot 'access_token'^so 'expires_in'^ni 'refresh_token'^so ~):jo)
|
||||||
::
|
::
|
||||||
++ auth
|
++ auth
|
||||||
?~ tok ~|(%no-bearer-token !!)
|
?~ tok ~|(%no-bearer-token !!)
|
||||||
@ -202,14 +202,14 @@
|
|||||||
++ res-save-after-refresh
|
++ res-save-after-refresh
|
||||||
|= a/httr ^- core-move
|
|= a/httr ^- core-move
|
||||||
?. pending.ref [%give a]
|
?. pending.ref [%give a]
|
||||||
=+ `{exp/@u axs/token}`(grab-token-after-refresh a)
|
=+ `{axs/token exp/@u}`(grab-expiring-token a)
|
||||||
=. ref %.(exp ~(update re ref))
|
=. ref %.(exp ~(update re ref))
|
||||||
[[%redo ~] (save axs ref)]
|
[[%redo ~] (save axs ref)]
|
||||||
::
|
::
|
||||||
++ in-code-to-token in-code-to-token.s
|
++ in-code-to-token in-code-to-token.s
|
||||||
++ bak-save-both-tokens
|
++ bak-save-both-tokens
|
||||||
|= a/httr ^- core-move
|
|= a/httr ^- core-move
|
||||||
=+ `{exp/@u axs/token ref-new/token}`(grab-both-tokens a)
|
=+ `{axs/token exp/@u ref-new/token}`(grab-both-tokens a)
|
||||||
=. tok.ref ref-new
|
=. tok.ref ref-new
|
||||||
=. ref (~(update re ref) exp)
|
=. ref (~(update re ref) exp)
|
||||||
[[%redo ~] (save axs ref)]
|
[[%redo ~] (save axs ref)]
|
||||||
|
Loading…
Reference in New Issue
Block a user