• create_time: 2021-10-03 Sun
  • update_time:2022.04.04 Mon

由于我目前在思源笔记集市需要维护四个主题,且每次更新基本是需要同时更新四个主题的,如果按手动的方法,我需要

  1. 先把修改提交到自己的主题 repo,push 到 github
  2. 一个主题一个主题复制 40 位的 commit SHA-1 码,一个个修改 bazaar 里的 themes.json
  3. 然后在pull request

这样维护主题起来就很麻烦了,而且每次提交我害怕把不同主题的 SHA-1 搞混搞漏,还需要校对一下。

无奈,正好最近在接触 shell 脚本,就打算用 shell 写一个自动化提交到集市的脚本

主要功能大概是

  1. 由于我的主题 repo 都是 siyuan-themes 开头,且都放在 conf/themes 文件夹下,于是希望脚本可以识别我的主题 repo,然后批量把修改上传到 github。
  2. 各个主题生成 SHA-1 码,生成一个 temp.json 文件,这样我可以直接把生成的 json 内容手动替换 bazaar 的 json
  3. 要是可以一步到位,直接修改 bazaar 中 json 内对应我 repo 的文字内容,直接提交就好啦。这样我只负责修改主题,主题一修改好,确定没问题,直接运行脚本就好。然后有空去Achuan-2/bazaar点击一个pull request就好啦。

结果嘛……看起来还不错

先展示下我的工作区,工作区就在 conf/themes, 我把 bazaar 和自己的主题 repo 都 clone 到了 themes 文件内,后面脚本都是按照这个文件目录编排来的,当然你可以根据自己的需要修改脚本。

【主题维护】使用shell脚本来自动化提交思源笔记集市 - 图1

接下来简要介绍下我的脚本

repo_commit.sh

对应第一点需求,识别 siyuan-themes 开头的文件夹,然后提交修改,push 到 Github

  1. #!/bin/bash
  2. echo -e "\e[1;31m\nRun 1_repo_commit.sh\n\e[0m"
  3. cd ../
  4. THEME=`pwd`
  5. echo $message
  6. find ${THEME} -maxdepth 1 -type d -name "siyuan-themes*" | while read repo;
  7. do
  8. echo -e "\e[1;31mCommitting\e[0m" $repo
  9. cd $repo
  10. echo `pwd`
  11. git add -A
  12. git commit -m "${message}"
  13. git push origin main
  14. echo -e "done\n"
  15. done

get_sha1.sh

对应第二点需求,主题提交完成后,生成 temp.json 文件,得到 “repo_name@SHA-1” 格式的内容

  1. #!/bin/bash
  2. SCRIPTS=`pwd`
  3. # into the upper folder
  4. cd ../
  5. THEME=`pwd`
  6. # generate json
  7. echo -e "\e[1;36m\n$THEME temp.json.json started generating\n\e[0m"
  8. echo "" > ${SCRIPTS}/temp.json
  9. echo -e "{ \n \"repos\": [" >> ${SCRIPTS}/temp.json
  10. # find + absolute path -> return absolute path
  11. find ${THEME} -maxdepth 1 -type d -name "siyuan-themes*" | while read repo;
  12. do
  13. cd $repo
  14. # rexp: (?<=exp) match after the exp
  15. # grep : -P use regular expression,-o print the matched parts
  16. # git rev-parse HEAD -> get the latest SHA-1
  17. git remote -v | tail -n 1 | grep -P "(?<=github.com\/)[^\.]+" -o | xargs -i echo " \"{}@`git rev-parse HEAD`\","
  18. done >> ${SCRIPTS}/temp.json
  19. echo -e " ] \n}" >> ${SCRIPTS}/temp.json
  20. # info
  21. echo -e "\e[1;36m\n${SCRIPTS}/temp.json.json generated successfully\n\e[0m"

siyuan_bazaar.sh

对应第三点需求,先fork siyuan_bazaar,然后clone放到themes文件夹下

直接修改 fork来的bazaar 中自己 repo 的对应行内容,先同步bazaar的内容覆盖本地repo,然后再提交修改强制 push 到 Github。这样只需要打开自己fork来的repo,点击pull request就可以了

  1. #!/bin/bash
  2. # set commit message
  3. message="Update ${THEME} ${VERSION}"
  4. # set path
  5. cd ..
  6. BAZAAR=`pwd`/bazaar
  7. THEME=`pwd`
  8. # update remote repo to local
  9. cd ${BAZAAR}
  10. # update local repo from fork repo
  11. git restore .
  12. git fetch fork
  13. git reset --hard fork/main
  14. # change bazaar json
  15. echo -e "\e[1;34m\nchanging theme.json in bazaar\n\e[0m"
  16. find ${THEME} -maxdepth 1 -type d -name "siyuan-themes*" | while read repo;
  17. do
  18. cd $repo
  19. # rexp: (?<=exp) match after the exp
  20. # grep : -P use regular expression,-o print the matched parts
  21. name=`git remote -v | tail -n 1 | grep -P "(?<=github.com\/)[^\.]+" -o`
  22. # git rev-parse HEAD -> get the latest SHA-1
  23. sha1=`git rev-parse HEAD`
  24. sed -i "s|${name}@[^\"]*|"${name}@${sha1}"|g" ${BAZAAR}/themes.json
  25. echo -e "\e[1;34m\n...\n\e[0m"
  26. done
  27. # git commit and push
  28. cd ${BAZAAR}
  29. git add -A
  30. git commit -m "${message}"
  31. git push -f
  32. echo -e "\e[1;34m\npushed to bazaar over\n\e[0m"