Skip to content

Commit

Permalink
版本v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TECHEN\zhangfajin committed Aug 16, 2024
0 parents commit 0f71203
Show file tree
Hide file tree
Showing 15 changed files with 690 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/CloudMusicBot-master.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

166 changes: 166 additions & 0 deletions bot.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
import base64
import codecs
import os
import random
import re
import string
import sys
from typing import Callable, Any
import requests
import json
from dingLog import DingLog
from Crypto.Cipher import AES
import wyylog


class Bot:
def __init__(self, context, dinglog,runlog):
self.userInfoUrl = "https://music.163.com/api/nuser/account/get"
self.taskDataUrl = "https://interface.music.163.com/api/music/partner/daily/task/get"
self.session = requests.session()
self.dinglog = dinglog
self.context = context
self.mylog = runlog
def run(self) -> bool:
try:
self.__loadCookie()
self.__getUserName()
complete, taskData = self.__getUserTask()
if not complete:
self.__sign(taskData)
except RuntimeError:
return False
return True

def __loadCookie(self):
flag = False
for key in ["MUSIC_U", "__csrf"]:
cookie = self.context.getUserData("Cookie_" + key)
if cookie:
self.session.cookies.set(key, cookie)
else:
self.dinglog.info(f"未填写cookie「{key}」")
self.mylog.write_to_log_file(f"未填写cookie「{key}」", "error")
flag = True
if flag:
raise RuntimeError

def __getUserName(self):
profile = self.session.get(url=self.userInfoUrl).json()["profile"]
if profile:
self.dinglog.info(f'用户名: {profile["nickname"]}')
self.mylog.write_to_log_file(f'用户名: {profile["nickname"]}', "info")
else:
self.dinglog.info("未能获取用户信息,请重新设置Cookie")
self.mylog.write_to_log_file("未能获取用户信息,请重新设置Cookie", "error")
raise RuntimeError

def __getUserTask(self) -> [bool, json]:
taskData = self.session.get(url=self.taskDataUrl).json()["data"]
count = taskData["count"]
completedCount = taskData["completedCount"]
todayTask = f"[{completedCount}/{count}]"
complete = count == completedCount
self.dinglog.info(f'今日任务:{"已完成" if complete else "未完成"}{todayTask}')
self.mylog.write_to_log_file(f'今日任务:{"已完成" if complete else "未完成"}{todayTask}', "info")
return complete, taskData

def __sign(self, taskData):
self.dinglog.info("开始评分...")
self.mylog.write_to_log_file("开始评分...", "info")
signer = Signer(self.session, taskData["id"], self.dinglog,self.mylog)
for task in taskData["works"]:
work = task["work"]
if task["completed"]:
self.dinglog.info(f'{work["name"]}{work["authorName"]}」已有评分:{int(task["score"])}分')
self.mylog.write_to_log_file(f'{work["name"]}{work["authorName"]}」已有评分:{int(task["score"])}分', "info")
else:
signer.sign(work)


def addTo16(data: str):
while len(data) % 16 != 0:
data += '\0'
return str.encode(data)


class Signer:
def __init__(self, session: requests.Session, taskID, log,runlog):
self.signUrl = "https://interface.music.163.com/weapi/music/partner/work/evaluate?csrf_token="

self.randomStr = "".join(random.choice(
string.ascii_letters + string.digits) for _ in range(16)) # 随机生成长度为16的字符串
self.pubKey = "010001" # buU9L(["流泪", "强"])的值
# buU9L(Rg4k.md)的值
self.modulus = "00e0b509f6259df8642dbc35662901477df22677ec152b5ff68ace615bb7b725152b3ab17a876aea8a5aa76d2e417629ec4ee341f56135fccf695280104e0312ecbda92557c93870114af6c9d05c4f7f0c3685b7a46bee255932575cce10b424d813cfe4875d3e82047b97ddef52741d546b8e289dc6935b3ece0462db0a22b8e7"
self.iv = "0102030405060708" # 偏移量
self.aesKey = '0CoJUm6Qyw8W8jud' # buU9L(["爱心", "女孩", "惊恐", "大笑"])的值

self.pattern = re.compile('.*[a-zA-Z].*')
self.session = session
self.taskID = taskID
self.dinglog = log
self.mylog=runlog

def __getScoreAndTag(self, work) -> [str, str]:
star = "3"
if self.pattern.match(work["name"] + work["authorName"]):
star = "4"
return star, star + "-A-1"

def __getAesEncrypt(self, data: str, key: str):
bs = AES.block_size
pad2: Callable[[Any], Any] = lambda s: s + (bs - len(s) % bs) * chr(bs - len(s) % bs)
encryptor = AES.new(addTo16(key), AES.MODE_CBC, addTo16(self.iv))
encrypt_aes = encryptor.encrypt(str.encode(pad2(data)))
encrypt_text = str(base64.encodebytes(encrypt_aes), encoding='utf-8')
return encrypt_text

def __getParams(self, data) -> str:
return self.__getAesEncrypt(self.__getAesEncrypt(str(data), self.aesKey), self.randomStr)

def __getEncSecKey(self) -> str:
text = self.randomStr[::-1]
rs = int(codecs.encode(text.encode('utf-8'), 'hex_codec'), 16) ** int(self.pubKey, 16) % int(self.modulus, 16)
return format(rs, 'x').zfill(256)

def sign(self, work):
try:
csrf = str(self.session.cookies["__csrf"])
score, tag = self.__getScoreAndTag(work)
data = {
"params": self.__getParams({
"taskId": self.taskID,
"workId": work['id'],
"score": score,
"tags": tag,
"customTags": "%5B%5D",
"comment": "",
"syncYunCircle": "true",
"csrf_token": csrf
}).replace("\n", ""),
"encSecKey": self.__getEncSecKey()
}
response = self.session.post(url=f'{self.signUrl}={csrf}', data=data).json()
if response["code"] == 200:
self.dinglog.info(f'{work["name"]}{work["authorName"]}」评分完成:{score}分')
self.mylog.write_to_log_file(f'{work["name"]}{work["authorName"]}」评分完成:{score}分', "info")
except Exception as e:
self.dinglog.info(f'歌曲「{work["name"]}」评分异常:{str(e)}')
self.mylog.write_to_log_file(f'歌曲「{work["name"]}」评分异常:{str(e)}', "info")
raise RuntimeError


# 以下是本地使用时的代码
class Context:
def __init__(self):
# 需要在同一文件夹下建一个json文件,写入"Cookie_MUSIC_U","Cookie___csrf","BOT_URL"(供钉钉机器人使用,选填)
#script_path = os.path.dirname(__file__) # 获取当前.py文件的执行目录(打包为exe后激活 158,159两行代码,注释掉160,161行代码)
#self.settings_file = os.path.join(script_path, "setting.json") #读取json配置
#script_path = os.path.abspath(sys.executable) #获取exe文件的执行目录,根据该目录查询settings.json(原生运行时激活160,161 两行代码,注释掉158,159行代码)
#self.settings_file = os.path.join(os.path.dirname(script_path), "setting.json")
with open("setting.json", "r", encoding="utf-8") as file:
self.dic = json.loads(file.read())

def getUserData(self, key):
return self.dic[key]
31 changes: 31 additions & 0 deletions dingLog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 实现在钉钉使用机器人发送任务日志

from datetime import datetime

import requests


class DingLog:
def __init__(self, url: str):
now = datetime.now()
self.msg = now.strftime("%Y/%m/%d (%A) %H:%M:%S")
self.msg += "\n= = = = = = = = = = = = = = = = = ="
self.url = url

def end(self, msg: str, atAll=False):
headers = {"Content-Type": "application/json"}
self.msg += "\n= = = = = = = = = = = = = = = = = ="
self.info(msg)
if self.url is None or self.url == "ignore":
pass
elif self.url == "":
print(self.msg)
else:
data = {"msgtype": "text", "text": {"content": self.msg}}
if atAll:
data["at"] = {"isAtAll": "true"}
data = str(data).encode("utf-8")
requests.session().post(url=self.url, headers=headers, data=data)

def info(self, msg: str):
self.msg += "\n" + msg
74 changes: 74 additions & 0 deletions logs/wyy1.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
2024-08-08 09:57:34 - INFO - 用户名: qqaxxk
2024-08-08 09:57:36 - INFO - 今日任务:已完成[5/5]
2024-08-08 09:57:36 - INFO - ✅ 执行成功
2024-08-08 09:57:39 - INFO - 用户名: qqaxxk
2024-08-08 09:57:39 - INFO - 用户名: qqaxxk
2024-08-08 09:57:41 - INFO - 今日任务:已完成[5/5]
2024-08-08 09:57:41 - INFO - 今日任务:已完成[5/5]
2024-08-08 09:57:41 - INFO - ✅ 执行成功
2024-08-08 09:57:41 - INFO - ✅ 执行成功
2024-08-08 09:57:44 - INFO - 用户名: qqaxxk
2024-08-08 09:57:44 - INFO - 用户名: qqaxxk
2024-08-08 09:57:44 - INFO - 用户名: qqaxxk
2024-08-08 09:57:45 - INFO - 今日任务:已完成[5/5]
2024-08-08 09:57:45 - INFO - 今日任务:已完成[5/5]
2024-08-08 09:57:45 - INFO - 今日任务:已完成[5/5]
2024-08-08 09:57:45 - INFO - ✅ 执行成功
2024-08-08 09:57:45 - INFO - ✅ 执行成功
2024-08-08 09:57:45 - INFO - ✅ 执行成功
2024-08-08 10:35:29 - INFO - 用户名: qqaxxk
2024-08-08 10:35:30 - INFO - 今日任务:已完成[5/5]
2024-08-08 10:35:30 - INFO - ✅ 执行成功
2024-08-08 10:51:26 - INFO - 用户名: qqaxxk
2024-08-08 10:51:27 - INFO - 今日任务:已完成[5/5]
2024-08-08 10:51:27 - INFO - ✅ 执行成功
2024-08-08 11:02:45 - INFO - 用户名: qqaxxk
2024-08-08 11:02:47 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:02:47 - INFO - ✅ 执行成功
2024-08-08 11:02:50 - INFO - 用户名: qqaxxk
2024-08-08 11:02:50 - INFO - 用户名: qqaxxk
2024-08-08 11:02:52 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:02:52 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:02:52 - INFO - ✅ 执行成功
2024-08-08 11:02:52 - INFO - ✅ 执行成功
2024-08-08 11:02:55 - INFO - 用户名: qqaxxk
2024-08-08 11:02:55 - INFO - 用户名: qqaxxk
2024-08-08 11:02:55 - INFO - 用户名: qqaxxk
2024-08-08 11:02:58 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:02:58 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:02:58 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:02:58 - INFO - ✅ 执行成功
2024-08-08 11:02:58 - INFO - ✅ 执行成功
2024-08-08 11:02:58 - INFO - ✅ 执行成功
2024-08-08 11:05:21 - INFO - 用户名: qqaxxk
2024-08-08 11:05:23 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:05:23 - INFO - ✅ 执行成功
2024-08-08 11:05:24 - INFO - 用户名: qqaxxk
2024-08-08 11:05:25 - INFO - 用户名: qqaxxk
2024-08-08 11:05:26 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:05:26 - INFO - ✅ 执行成功
2024-08-08 11:05:26 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:05:26 - INFO - ✅ 执行成功
2024-08-08 11:05:27 - INFO - 用户名: qqaxxk
2024-08-08 11:05:29 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:05:29 - INFO - ✅ 执行成功
2024-08-08 11:05:31 - INFO - 用户名: qqaxxk
2024-08-08 11:05:32 - INFO - 用户名: qqaxxk
2024-08-08 11:05:32 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:05:32 - INFO - ✅ 执行成功
2024-08-08 11:05:34 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:05:34 - INFO - ✅ 执行成功
2024-08-08 11:07:01 - INFO - 用户名: qqaxxk
2024-08-08 11:07:02 - INFO - 用户名: qqaxxk
2024-08-08 11:07:04 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:07:04 - INFO - ✅ 执行成功
2024-08-08 11:07:05 - INFO - 用户名: qqaxxk
2024-08-08 11:12:23 - INFO - 用户名: qqaxxk
2024-08-08 11:12:27 - INFO - 今日任务:已完成[5/5]
2024-08-08 11:12:27 - INFO - ✅ 执行成功
2024-08-16 15:28:01 - INFO - 用户名: qqaxxk
2024-08-16 15:28:03 - INFO - 今日任务:已完成[5/5]
2024-08-16 15:28:03 - INFO - ✅ 执行成功
2024-08-16 15:33:12 - INFO - 用户名: qqaxxk
2024-08-16 15:33:14 - INFO - 今日任务:已完成[5/5]
2024-08-16 15:33:14 - INFO - ✅ 执行成功
Empty file added logs/wyy2.log
Empty file.
Loading

0 comments on commit 0f71203

Please sign in to comment.