2018-08-22 14:41:01 +09:00
#!/usr/bin/env bash
2018-09-01 14:54:40 +09:00
# __MISSKEY_BEARER_TOKEN=
# __MISSKEY_CAMPAIGN_ID=
# __MISSKEY_GITHUB_TOKEN=
2019-02-04 16:41:11 +09:00
# __MISSKEY_HEAD=syuilo:patch-autogen
2018-09-01 14:54:40 +09:00
# __MISSKEY_REPO=syuilo/misskey
# __MISSKEY_BRANCH=develop
2018-12-10 23:22:52 +09:00
test " $( curl -LSs -w '\n' -- " https://api.github.com/repos/ $REPO /pulls?access_token= $__MISSKEY_GITHUB_TOKEN " | jq -r -f check_pr.jq | grep $__MISSKEY_HEAD ) " && exit 1
2018-08-22 14:41:01 +09:00
cd " $( dirname $0 ) /.. " && \
touch null.cache && \
rm *.cache && \
2018-09-01 14:54:40 +09:00
git checkout $__MISSKEY_BRANCH && \
git pull origin $__MISSKEY_BRANCH && \
git pull upstream $__MISSKEY_BRANCH && \
2018-08-22 14:41:01 +09:00
git stash && \
2018-09-01 14:54:40 +09:00
git rebase -f upstream/$__MISSKEY_BRANCH && \
2018-08-22 14:41:01 +09:00
git branch patch-autogen && \
git checkout patch-autogen && \
git reset --hard HEAD || \
exit 1
touch patreon.md.cache && \
rm patreon.md.cache && \
echo '<!-- PATREON_START -->' > patreon.md.cache && \
2018-09-01 14:54:40 +09:00
url = " https://www.patreon.com/api/oauth2/v2/campaigns/ $__MISSKEY_CAMPAIGN_ID /members?include=currently_entitled_tiers,user&fields%5Btier%5D=title&fields%5Buser%5D=full_name,thumb_url,url,hide_pledges "
2018-08-22 14:41:01 +09:00
while :
do
touch patreon.raw.cache && \
rm patreon.raw.cache && \
2018-09-01 14:54:40 +09:00
curl -LSs -w '\n' -H " Authorization: Bearer $__MISSKEY_BEARER_TOKEN " -- $url > patreon.raw.cache && \
2018-08-22 14:41:01 +09:00
touch patreon.cache && \
rm patreon.cache && \
cat patreon.raw.cache | \
2018-12-10 23:22:52 +09:00
jq -r -f patreon.jq >> patreon.cache && \
2018-08-22 14:41:01 +09:00
echo '<table><tr>' >> patreon.md.cache && \
cat patreon.cache | \
awk -F'\t' '{print $2,$1}' | \
sed -e 's/ /\\" alt=\\"/' | \
2019-01-06 18:20:47 +09:00
xargs -I% echo '<td><img src="%" width="100"></td>' >> patreon.md.cache && \
2018-08-22 14:41:01 +09:00
echo '</tr><tr>' >> patreon.md.cache && \
cat patreon.cache | \
awk -F'\t' '{print $3,$1}' | \
sed -e 's/ /\\">/' | \
xargs -I% echo '<td><a href="%</a></td>' >> patreon.md.cache && \
echo '</tr></table>' >> patreon.md.cache || \
exit 1
2018-12-10 23:22:52 +09:00
new_url = " $( cat patreon.raw.cache | jq -r -f next_url.jq) "
2018-09-01 14:54:40 +09:00
test " $new_url " = 'null' && \
2018-08-22 14:41:01 +09:00
break || \
2018-09-01 14:54:40 +09:00
URL = " $url "
2018-08-22 14:41:01 +09:00
done
2018-09-01 14:54:40 +09:00
ignore = && \
2018-08-22 14:41:01 +09:00
echo -e " \n**Last updated:** $( date -uR | sed 's/\+0000/UTC/' ) \n<!-- PATREON_END --> " >> patreon.md.cache && \
touch README.md && \
touch .autogen/README.md && \
rm .autogen/README.md && \
mv README.md .autogen/README.md && \
2018-09-01 14:54:40 +09:00
cat .autogen/README.md | while IFS = read line;
2018-08-22 14:41:01 +09:00
do
2018-09-01 14:54:40 +09:00
if [ [ -z " $ignore " ] ]
2018-08-22 14:41:01 +09:00
then
2018-09-01 14:54:40 +09:00
if [ [ " $line " = '<!-- PATREON_START -->' ] ]
2018-08-22 14:41:01 +09:00
then
2018-09-01 14:54:40 +09:00
ignore = 'PATREON_INSIDE'
2018-08-22 14:41:01 +09:00
else
2018-09-01 14:54:40 +09:00
echo " $line " >> README.md
2018-08-22 14:41:01 +09:00
fi
else
if [ [ " $LINE " = '<!-- PATREON_END -->' ] ]
then
2018-09-01 14:54:40 +09:00
ignore =
2018-08-22 14:41:01 +09:00
cat patreon.md.cache >> README.md
fi
fi
done
cat patreon.md.cache
touch null.cache && \
rm *.cache && \
diff .autogen/README.md README.md > diff.cache
cat diff.cache && \
test 4 -lt $( cat diff.cache | wc -l) && \
git add README.md && \
git commit -m 'Update README.md [AUTOGEN]' && \
git push -f origin patch-autogen && \
2018-09-01 14:54:40 +09:00
curl -LSs -w '\n' -X POST -d '{"title":"[AUTOMATED] Update README.md","body":"*This pull request was created by a tool.*","head":"' $__MISSKEY_HEAD '","base":"' $__MISSKEY_BRANCH '"}' -- " https://api.github.com/repos/ $__MISSKEY_REPO /pulls?access_token= $__MISSKEY_GITHUB_TOKEN "
2018-08-22 14:41:01 +09:00
git stash
2018-09-01 14:54:40 +09:00
git checkout $__MISSKEY_BRANCH
2018-08-22 14:41:01 +09:00
git branch -D patch-autogen