add scpt notify
This commit is contained in:
15
scpt/env
Normal file
15
scpt/env
Normal file
@ -0,0 +1,15 @@
|
||||
cfg=~/.config/ai/test.json
|
||||
host=`cat $cfg|jq -r .host`
|
||||
handle=`cat $cfg|jq -r .handle`
|
||||
pass=`cat $cfg|jq -r .password`
|
||||
date=`date --iso-8601=seconds`
|
||||
|
||||
if [ ! -f $cfg.t ];then
|
||||
$d/token.zsh
|
||||
fi
|
||||
|
||||
if [ -f $cfg.t ];then
|
||||
token=`cat $cfg.t|jq -r .accessJwt`
|
||||
refresh=`cat $cfg.t|jq -r .refreshJwt`
|
||||
did=`cat $cfg.t|jq -r .did`
|
||||
fi
|
11
scpt/refresh.zsh
Executable file
11
scpt/refresh.zsh
Executable file
@ -0,0 +1,11 @@
|
||||
function refresh(){
|
||||
token=`cat $cfg.t|jq -r .accessJwt`
|
||||
refresh=`cat $cfg.t|jq -r .refreshJwt`
|
||||
if [ ! -f $cfg ];then
|
||||
token
|
||||
fi
|
||||
url=https://$host/xrpc/com.atproto.server.refreshSession
|
||||
j=`curl -sL -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $refresh" $url`
|
||||
echo $j
|
||||
echo $j >! $cfg.t
|
||||
}
|
29
scpt/reply.zsh
Executable file
29
scpt/reply.zsh
Executable file
@ -0,0 +1,29 @@
|
||||
function reply() {
|
||||
|
||||
url="https://$host/xrpc/com.atproto.repo.createRecord"
|
||||
col="app.bsky.feed.post"
|
||||
|
||||
json="{
|
||||
\"repo\": \"$handle\",
|
||||
\"did\": \"$did\",
|
||||
\"collection\": \"$col\",
|
||||
\"record\": {
|
||||
\"text\": \"$text\",
|
||||
\"createdAt\": \"$date\",
|
||||
\"reply\": {
|
||||
\"root\": {
|
||||
\"cid\": \"$cid\",
|
||||
\"uri\": \"$uri\"
|
||||
},
|
||||
\"parent\": {
|
||||
\"cid\": \"$cid_p\",
|
||||
\"uri\": \"$uri_p\"
|
||||
}
|
||||
}
|
||||
}
|
||||
}"
|
||||
|
||||
echo $json|jq .
|
||||
url=https://$host/xrpc/com.atproto.repo.createRecord
|
||||
j=`curl -sL -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $token" -d "$json" $url`
|
||||
}
|
6
scpt/token.zsh
Executable file
6
scpt/token.zsh
Executable file
@ -0,0 +1,6 @@
|
||||
function token() {
|
||||
url=https://$host/xrpc/com.atproto.server.createSession
|
||||
j=`curl -sL -X POST -H "Content-Type: application/json" -d "{\"identifier\":\"$handle\",\"password\":\"$pass\"}" $url`
|
||||
echo $j
|
||||
echo $j >! $cfg.t
|
||||
}
|
Reference in New Issue
Block a user