前言

之前一直通过 多吉云控制台 手动刷新博客全站 CDN 缓存,CDN 源站为 Vercel 部署的网址

空梦:全自动博客部署方案 这篇文章萌生了自动化的念头,且这些 CDN 服务商都提供了相应的 API 文档和代码样例,开箱即用

仓库示例:https://github.com/mycpen/blog/tree/main/.github

个人示例

1. 新增 Workflow 文件

以我为例,新增 source/.github/workflows/refresh-dogecloud.yml 文件,内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Refresh dogecloud CDN

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: szenius/set-timezone@v1.0 # 设置执行环境的时区
with:
timezoneLinux: "Asia/Shanghai"
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Wait for 3 minutes
run: sleep 180 # 等待 3 分钟,单位为秒
- name: Run refresh script
env:
ACCESS_KEY: ${{ secrets.ACCESS_KEY }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
run: |
pip install requests
python .github/refresh-dogecloud.py

2. 新增 PY 脚本:刷新缓存

以我为例,新增 source/.github/refresh-dogecloud.py 文件,内容如下:

脚本里的 url_list 为需要刷新的目录,需手动修改为自己的。代码来自多吉云 API 验证刷新目录任务

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from hashlib import sha1
import hmac
import requests
import json
import urllib
import os

def dogecloud_api(api_path, data={}, json_mode=False):
"""
调用多吉云API

:param api_path: 调用的 API 接口地址,包含 URL 请求参数 QueryString,例如:/console/vfetch/add.json?url=xxx&a=1&b=2
:param data: POST 的数据,字典,例如 {'a': 1, 'b': 2},传递此参数表示不是 GET 请求而是 POST 请求
:param json_mode: 数据 data 是否以 JSON 格式请求,默认为 false 则使用表单形式(a=1&b=2)

:type api_path: string
:type data: dict
:type json_mode bool

:return dict: 返回的数据
"""

# 这里替换为你的多吉云永久 AccessKey 和 SecretKey,可在用户中心 - 密钥管理中查看
# 请勿在客户端暴露 AccessKey 和 SecretKey,否则恶意用户将获得账号完全控制权
access_key = os.environ["ACCESS_KEY"]
secret_key = os.environ["SECRET_KEY"]

body = ''
mime = ''
if json_mode:
body = json.dumps(data)
mime = 'application/json'
else:
body = urllib.parse.urlencode(data) # Python 2 可以直接用 urllib.urlencode
mime = 'application/x-www-form-urlencoded'
sign_str = api_path + "\n" + body
signed_data = hmac.new(secret_key.encode('utf-8'), sign_str.encode('utf-8'), sha1)
sign = signed_data.digest().hex()
authorization = 'TOKEN ' + access_key + ':' + sign
response = requests.post('https://api.dogecloud.com' + api_path, data=body, headers = {
'Authorization': authorization,
'Content-Type': mime
})
return response.json()


url_list = [
"https://cpen.top/",
]

api = dogecloud_api('/cdn/refresh/add.json', {
'rtype': 'path',
'urls': json.dumps(url_list)
})
if api['code'] == 200:
print(api['data']['task_id'])
else:
print("api failed: " + api['msg']) # 失败

3. 新增 Secrets 变量

Actions 新增 2 个 Secrets 变量,ACCESS_KEYSECRET_KEY,对应的值在 多吉云 用户中心 - 密钥管理 中查看。link

image-20230502225346425

避免因权限问题导致工作流执行失败,也可以设置下 Actions 读写权限

image-20230502225900571

4. 新增 JS 代码:复制 .github

前言:source/.github 这类 . 开头的隐藏文件默认是不会被 hexo generate 渲染生成到 public 目录下的。网上和 ChatGPT 给出的解决办法大多试了(如 skip_render),没有生效,打算直接用 JS 代码将 source/.github 目录复制到 public/.github 目录下。以下代码每次 hexo generate 之后能实现复制的效果

以我为例,新增 scripts/before_generate.js 文件,内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const fs = require('fs-extra');
const path = require('path');

function copyFolder(source, target) {
// Create the target folder if it doesn't exist
fs.ensureDirSync(target);

// Get the list of files in the source folder
const files = fs.readdirSync(source);

// Loop through each file and copy it to the target folder
files.forEach((file) => {
const sourcePath = path.join(source, file);
const targetPath = path.join(target, file);

if (fs.statSync(sourcePath).isDirectory()) {
// Recursively copy subfolders
copyFolder(sourcePath, targetPath);
} else {
// Copy the file
fs.copyFileSync(sourcePath, targetPath);
}
});
}

copyFolder('./source/.github', './public/.github');

5. 更新 _config.yml 配置

当 hexo deploy 将渲染后的静态仓库推送到 Github 时,默认会取消推送 . 开头的隐藏文件,具体如下:

image-20230502224949276

在 Hexo 配置文件 _config.yml 进行修改,新增 git 部署器 ignore_hidden 配置项,样例如下:

1
2
3
4
5
6
7
8
9
10
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
- type: git
repository: git@github.com:mycpen/blog.git
branch: main
commit: Site updated
message: "{{ now('YYYY/MM/DD') }}"
+ ignore_hidden: false

参考链接

  1. 多吉云:API 验证机制(Python)

  2. 多吉云:SDK 文档 - 刷新预热

  3. ChatGPT(deploy.ignore_hidden、js 代码 复制目录、sleep)