Skip to content

Commit

Permalink
Merge branch 'yihong0618:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
tiny656 authored Oct 11, 2023
2 parents 0ad2949 + a0d6ed5 commit 0f601fb
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 34 deletions.
33 changes: 33 additions & 0 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -867,6 +867,39 @@ Actions [源码](https://github.com/yihong0618/running_page/blob/master/.github/

</details>

## 快捷指令

<details>

<summary>使用 iOS 的 Shortcuts 实现自动化</summary>

下面拿 keep app 举例,当结束跑步后关闭 app,然后自动触发 Actions 更新数据。

1. 拿到项目的 actions id(需要自行申请 token)

```shell
curl https://api.github.com/repos/yihong0618/running_page/actions/workflows -H "Authorization: token d8xxxxxxxxxx" # change to your config
```
<center><img src="https://cdn.jujimeizuo.cn/blog/2023/10/get-action-id.jpg" alt="get-action-id"></center>

2. 结合快捷指令

1. 通过 icloud 获取 [running-page-shortcuts-template](https://www.icloud.com/shortcuts/4a5807a98b9a4e359815ff179c62bacb)

2. 修改下图字典参数
<center> <img src="https://cdn.jujimeizuo.cn/blog/2023/10/running-page-template.jpg"> </center>

3. 自动化

<center>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/new-automation.png" width=20% height=20%>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/select-close.png" width=20% height=20%>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/select-shortcut.png" width=20% height=20%>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/finish-automation.png" width=20% height=20%>
</center>

</details>

## 把数据文件放在 github cache 中

<details>
Expand Down
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,40 @@ The following steps need to be taken

</details>

## Shortcuts

<details>

<summary>Automate with <code> iOS Shortcuts </code> </summary>

Take the keep app as an example. Close the app after running, and then automatically trigger Actions to update the data.

1. Get actions id(need to apply token)

```shell
curl https://api.github.com/repos/yihong0618/running_page/actions/workflows -H "Authorization: token d8xxxxxxxxxx" # change to your config
```
<center><img src="https://cdn.jujimeizuo.cn/blog/2023/10/get-action-id.jpg" alt="get-action-id"></center>

2. Binding shortcut instruction

1. Get it via icloud [running-page-shortcuts-template](https://www.icloud.com/shortcuts/4a5807a98b9a4e359815ff179c62bacb)

2. Modify the dictionary parameters in the following figure
<center> <img src="https://cdn.jujimeizuo.cn/blog/2023/10/running-page-template.jpg"> </center>

3. Automation

<center>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/new-automation.png" width=20% height=20%>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/select-close.png" width=20% height=20%>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/select-shortcut.png" width=20% height=20%>
<img src="https://cdn.jujimeizuo.cn/blog/2023/10/finish-automation.png" width=20% height=20%>
</center>

</details>


## Storing Data Files in GitHub Cache

<details>
Expand Down
38 changes: 4 additions & 34 deletions run_page/garmin_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"MODERN_URL": "https://connectapi.garmin.com",
"SIGNIN_URL": "https://sso.garmin.com/sso/signin",
"CSS_URL": "https://static.garmincdn.com/com.garmin.connect/ui/css/gauth-custom-v1.2-min.css",
"UPLOAD_URL": "https://connectapi.garmin.com/upload-service/upload/.gpx",
"UPLOAD_URL": "https://connectapi.garmin.com/upload-service/upload/",
"ACTIVITY_URL": "https://connectapi.garmin.com/activity-service/activity/{activity_id}",
}

Expand All @@ -45,7 +45,7 @@
"MODERN_URL": "https://connectapi.garmin.cn",
"SIGNIN_URL": "https://sso.garmin.cn/sso/signin",
"CSS_URL": "https://static.garmincdn.cn/cn.garmin.connect/ui/css/gauth-custom-v1.2-min.css",
"UPLOAD_URL": "https://connectapi.garmin.cn/upload-service/upload/.gpx",
"UPLOAD_URL": "https://connectapi.garmin.cn/upload-service/upload/",
"ACTIVITY_URL": "https://connectapi.garmin.cn/activity-service/activity/{activity_id}",
}

Expand Down Expand Up @@ -123,39 +123,9 @@ async def download_activity(self, activity_id, file_type="gpx"):
response.raise_for_status()
return response.read()

async def upload_activities(self, files):
for file, garmin_type in files:
files = {"data": ("file.gpx", file)}
try:
res = await self.req.post(
self.upload_url, files=files, headers={"nk": "NT"}
)
except Exception as e:
print(str(e))
# just pass for now
continue
try:
resp = res.json()["detailedImportResult"]
except Exception as e:
print(e)
raise Exception("failed to upload")
# change the type
if resp["successes"]:
activity_id = resp["successes"][0]["internalId"]
print(f"id {activity_id} uploaded...")
data = {"activityTypeDTO": {"typeKey": garmin_type}}
encoding_headers = {"Content-Type": "application/json; charset=UTF-8"}
r = await self.req.put(
self.activity_url.format(activity_id=activity_id),
data=json.dumps(data),
headers=encoding_headers,
)
r.raise_for_status()
await self.req.aclose()

async def upload_activities_original(self, datas, use_fake_garmin_device=False):
print(
"start upload activities to garmin!!!, use_fake_garmin_device:",
"start upload activities to garmin!, use_fake_garmin_device:",
use_fake_garmin_device,
)
for data in datas:
Expand All @@ -169,7 +139,7 @@ async def upload_activities_original(self, datas, use_fake_garmin_device=False):
file_body = wrap_device_info(f)
else:
file_body = BytesIO(f.read())
files = {"data": (data.filename, file_body)}
files = {"file": (data.filename, file_body)}

try:
res = await self.req.post(
Expand Down

0 comments on commit 0f601fb

Please sign in to comment.