change to wechat for mac

This commit is contained in:
zsbai
2022-08-19 23:42:44 +08:00
parent d3caf2afb6
commit 021b945d39
3 changed files with 135 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ on:
download_link:
description: 'The manual WechatSetup.exe download link'
required: false
default: 'https://dldir1.qq.com/weixin/Windows/WeChatSetup.exe'
default: 'https://dldir1.qq.com/weixin/mac/WeChatMac.dmg'
jobs:
save_new_wechat:
@@ -20,4 +20,4 @@ jobs:
- name: Check new version and push
env:
GHTOKEN: ${{ secrets.GHTOKEN }}
run: bash -x ./scripts/destVersionRelease.sh ${{ github.event.inputs.download_link }}
run: sudo apt update && sudo apt install python3 python3-pip -y && pip install lxml requests && bash -x ./scripts/destVersionForMac.sh ${{ github.event.inputs.download_link }}

View File

@@ -0,0 +1,119 @@
#!/usr/bin/env bash
set -eo pipefail
temp_path="WeChatMac/temp"
latest_path="WeChatMac/latest"
download_link="$1"
if [ -z "$1" ]; then
>&2 echo -e "Missing argument. Using default download link"
download_link="https://dldir1.qq.com/weixin/mac/WeChatMac.dmg"
fi
function install_depends() {
printf "#%.0s" {1..60}
echo
echo -e "## \033[1;33mInstalling 7zip, shasum, wget, curl, git\033[0m"
printf "#%.0s" {1..60}
echo
apt install -y p7zip-full p7zip-rar libdigest-sha-perl wget curl git python3 python3-pip
pip install lxml request
}
function login_gh() {
printf "#%.0s" {1..60}
echo
echo -e "## \033[1;33mLogin to github to use github-cli...\033[0m"
printf "#%.0s" {1..60}
echo
if [ -z $GHTOKEN ]; then
>&2 echo -e "\033[1;31mMissing Github Token! Please get a BotToken from 'Github Settings->Developer settings->Personal access tokens' and set it in Repo Secrect\033[0m"
exit 1
fi
echo $GHTOKEN > WeChatMac/temp/GHTOKEN
gh auth login --with-token < WeChatMac/temp/GHTOKEN
if [ "$?" -ne 0 ]; then
>&2 echo -e "\033[1;31mLogin Failed, please check your network or token!\033[0m"
clean_data 1
fi
rm -rfv WeChatMac/temp/GHTOKEN
}
function download_wechat() {
printf "#%.0s" {1..60}
echo
echo -e "## \033[1;33mDownloading the newest WeChatMac...\033[0m"
printf "#%.0s" {1..60}
echo
wget "$download_link" -O ${temp_path}/WeChatMac.dmg
if [ "$?" -ne 0 ]; then
>&2 echo -e "\033[1;31mDownload Failed, please check your network!\033[0m"
clean_data 1
fi
}
function get_version() {
dest_version=`python scripts/getVersion.py`
}
# rename and replace
function prepare_commit() {
printf "#%.0s" {1..60}
echo
echo -e "## \033[1;33mPrepare to commit new version\033[0m"
printf "#%.0s" {1..60}
echo
mkdir -p WeChatMac/$dest_version
cp $temp_path/WeChatMac.dmg WeChatMac/$dest_version/WeChatMac-$dest_version.dmg
echo "DestVersion: $dest_version" > WeChatMac/$dest_version/WeChatMac-$dest_version.dmg.sha256
echo "Sha256: $now_sum256" >> WeChatMac/$dest_version/WeChatMac-$dest_version.dmg.sha256
echo "UpdateTime: $(date -u '+%Y-%m-%d %H:%M:%S') (UTC)" >> WeChatMac/$dest_version/WeChatMac-$dest_version.dmg.sha256
echo "DownloadFrom: $download_link" >> WeChatMac/$dest_version/WeChatMac-$dest_version.dmg.sha256
}
function clean_data() {
printf "#%.0s" {1..60}
echo
echo -e "## \033[1;33mClean runtime and exit...\033[0m"
printf "#%.0s" {1..60}
echo
rm -rfv WeChatMac/*
exit $1
}
function main() {
# rm -rfv WeChatSetup/*
mkdir -p ${temp_path}/temp
login_gh
## https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md
# install_depends
download_wechat
now_sum256=`shasum -a 256 ${temp_path}/WeChatMac.dmg | awk '{print $1}'`
local latest_sum256=`gh release view --json body --jq ".body" | awk '/Sha256/{ print $2 }'`
if [ "$now_sum256" = "$latest_sum256" ]; then
>&2 echo -e "\n\033[1;32mThis is the newest Version!\033[0m\n"
clean_data 0
fi
## if not the newest
get_version
prepare_commit
gh release create v$dest_version ./WeChatMac/$dest_version/WeChatMac-$dest_version.dmg -F ./WeChatMac/$dest_version/WeChatMac-$dest_version.dmg.sha256 -t "Wechat For Mac v$dest_version"
gh auth logout --hostname github.com | echo "y"
clean_data 0
}
main

14
scripts/getVersion.py Normal file
View File

@@ -0,0 +1,14 @@
import lxml
import lxml.etree
import requests
url = "https://mac.weixin.qq.com/?t=mac&lang=zh_CN"
header = {
'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',
}
r = requests.get(url,headers=header).text
tree = lxml.etree.HTML(r)
version = tree.xpath("/html/body/div/div[2]/div/div[1]/a[1]/div/p[2]/text()")
print(version[0])