-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathpackage.py
93 lines (73 loc) · 3.14 KB
/
package.py
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import os
import datetime
import argparse
import re
# 要排除的目录列表
EXCLUDE_DIRS = ['.git', '.idea', 'soft', 'pyTools', 'drop_code', 'jstest', 'local', 'logs', '对话1.txt','vod_cache','data/mv']
# 要排除的文件列表
EXCLUDE_FILES = ['config/env.json', '.env','js/UC分享.js','js/百忙无果[官].js','json/UC分享.json','jx/奇奇.js','jx/芒果关姐.js','data/settings/link_data.json','index.json','custom.json']
def get_script_dir():
"""
获取当前脚本所在目录
"""
return os.path.dirname(os.path.abspath(__file__))
def filter_green_files(script_dir):
"""
筛选 js 目录下所有带 [密] 的文件
"""
js_dir = os.path.join(script_dir, 'js')
green_files = []
if os.path.exists(js_dir):
for root, _, files in os.walk(js_dir):
for file in files:
if re.search(r'\[密[^\]]*\]', file):
green_files.append(os.path.relpath(os.path.join(root, file), script_dir))
return green_files
def compress_directory(script_dir, green=False):
# 获取当前目录名
current_dir = os.path.basename(script_dir)
# 获取当前时间
current_time = datetime.datetime.now().strftime("%Y%m%d")
# 根据是否传入 green 参数生成压缩包文件名
archive_suffix = "-green" if green else ""
archive_name = f"{current_dir}-{current_time}{archive_suffix}.7z"
# 压缩包输出路径 (脚本所在目录的外面)
parent_dir = os.path.abspath(os.path.join(script_dir, ".."))
archive_path = os.path.join(parent_dir, archive_name)
# 构建 7z 压缩命令
exclude_params = []
# 排除目录
for exclude_dir in EXCLUDE_DIRS:
exclude_params.append(f"-xr!{exclude_dir}")
# 排除文件
for exclude_file in EXCLUDE_FILES:
# 使用相对路径来确保文件的准确性
exclude_file_path = os.path.join(script_dir, exclude_file)
if os.path.exists(exclude_file_path):
exclude_params.append(f"-xr!{exclude_file}")
else:
print(f"警告: {exclude_file} 不存在!")
# 如果启用 green 筛选,排除不符合条件的文件
if green:
green_files = filter_green_files(script_dir)
for file in green_files:
exclude_params.append(f"-x!{file}")
# 构建命令,打包目录内容而不包含目录本身
command = f"7z a \"{archive_path}\" \"{script_dir}\\*\" " + " ".join(exclude_params)
# 打印构建的命令进行调试
print(f"构建的 7z 命令: {command}")
try:
# 执行压缩命令
os.system(command)
print(f"压缩完成: {archive_path}")
except Exception as e:
print(f"压缩失败: {e}")
if __name__ == "__main__":
# 获取脚本所在目录
script_dir = get_script_dir()
# 解析命令行参数
parser = argparse.ArgumentParser(description="压缩当前目录为 7z 包,支持可选参数。")
parser.add_argument('-g', '--green', action='store_true', help="启用 green 模式,筛选 js 目录下所有带 [密] 的文件。")
args = parser.parse_args()
# 调用压缩函数
compress_directory(script_dir, green=args.green)