ai/at
ai/at
1
0
This commit is contained in:
syui 2025-04-22 18:29:30 +09:00
parent b3eb75e50e
commit 01bd6048c3
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56
3 changed files with 34 additions and 1 deletions

View File

@ -61,6 +61,9 @@ case $1 in
source $d/src/ai/syui/game/character.zsh
delete_game_user $2 $3
;;
verify-icon)
verify-icon
;;
*)
echo "${help[@]}"
echo "${host[@]}"

View File

@ -210,6 +210,7 @@ delete_game_user() {
req=com.atproto.repo.DeleteRecord
url=https://$pds/xrpc/$req
repo=$did
#repo=did:plc:6qyecktefllvenje24fcxnie
json="{\"collection\":\"$col\", \"rkey\":\"$rkey\", \"repo\":\"$repo\"}"
echo $json
curl -sL -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $token" -d $json $url

View File

@ -8,7 +8,7 @@ function at-env() {
did_syui=did:plc:uqzpqmrjnptsxezjx4xuh2mn
handle=$handle_yui
did=$did_yui
created=2020-01-01T00:00:00+09:00
created=2025-04-21T00:00:00.323Z
at_uri=at://$did_yui/ai.syui.game.user/syui
docs_uri=https://docs.bsky.app/docs/api
did=`echo $at_uri|cut -d / -f 3`
@ -173,3 +173,32 @@ function at-profile() {
url="${host}${req}?actor=$did"
curl -sL -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $token" $url|jq .
}
function verify-icon() {
syuisadmin_handle=ai.syu.is
syuisadmin_did=did:plc:6qyecktefllvenje24fcxnie
#rkey=
col=app.bsky.graph.verification
handle=syui.syu.is
subject=did:plc:vzsvtbtbnwn22xjqhcu3vd6y
displayName=syui
req=/xrpc/com.atproto.repo.createRecord
url=${host}${req}
json="
{
\"repo\": \"$syuisadmin_handle\",
\"did\": \"$syuisadmin_did\",
\"collection\": \"$col\",
\"record\": {
\"subject\": \"$subject\",
\"handle\": \"$handle\",
\"displayName\": \"$displayName\",
\"createdAt\": \"${created}\"
}
}"
if echo $json|jq . ;then
t=`curl -sL -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $token" -d $json $url`
echo $t
fi
}