-
-
Notifications
You must be signed in to change notification settings - Fork 605
/
Copy pathbuild.py
166 lines (129 loc) · 4.03 KB
/
build.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/usr/bin/python
# -*- coding: utf-8 -*-
#---------------------------------------------------------------
# >>> TABLE OF CONTENTS:
#---------------------------------------------------------------
# 1.0 Import modules
# 2.0 Chromium
# 3.0 Firefox
# 4.0 Initialization
#---------------------------------------------------------------
#---------------------------------------------------------------
# 1.0 IMPORT MODULES
#---------------------------------------------------------------
import shutil
import sys
import json
import os
import pathlib
import re
import zipfile
#---------------------------------------------------------------
# 2.0 CHROMIUM
#---------------------------------------------------------------
def chromium(browser):
temporary_path = '../cached'
if (os.path.isdir(temporary_path)):
shutil.rmtree(temporary_path, ignore_errors=True)
os.mkdir(temporary_path)
os.chdir(temporary_path)
for item in os.listdir('../'):
if (
item != '.git' and
item != '.github' and
item != 'cached' and
item != 'previews' and
item != 'py' and
item != 'wiki' and
item != 'LICENSE' and
item != 'README.md' and
item != 'SECURITY.md' and
item.find('.zip') == -1
):
s = os.path.join('../', item)
d = os.path.join(temporary_path, item)
if os.path.isdir(s):
shutil.copytree(s, d, True, None)
else:
shutil.copy2(s, d)
with open('manifest.json', 'r+') as json_file:
data = json.load(json_file)
version = data['version']
if (browser == 'beta'):
data['name'] = 'ImprovedTube (testing)';
json_file.seek(0)
json.dump(data, json_file, indent=4, sort_keys=True)
json_file.truncate()
archive = zipfile.ZipFile('../chromium-' + version + '.zip', 'w', zipfile.ZIP_DEFLATED)
for root, dirs, files in os.walk('.'):
for file in files:
archive.write(os.path.join(root, file),
os.path.relpath(os.path.join(root, file),
os.path.join('.', '.')))
archive.close()
shutil.rmtree(temporary_path)
#---------------------------------------------------------------
# 3.0 FIREFOX
#---------------------------------------------------------------
def firefox():
temporary_path = '../cached'
if (os.path.isdir(temporary_path)):
shutil.rmtree(temporary_path, ignore_errors=True)
os.mkdir(temporary_path)
os.chdir(temporary_path)
for item in os.listdir('../'):
if (
item != '.git' and
item != '.github' and
item != 'cached' and
item != 'previews' and
item != 'py' and
item != 'wiki' and
item != 'LICENSE' and
item != 'README.md' and
item != 'SECURITY.md' and
item.find('.zip') == -1
):
s = os.path.join('../', item)
d = os.path.join(temporary_path, item)
if os.path.isdir(s):
shutil.copytree(s, d, True, None)
else:
shutil.copy2(s, d)
with open('background.js', 'r') as file:
lines = file.readlines()
with open('background.js', 'w') as file:
skip = False
for pos, line in enumerate(lines):
if (lines[pos].find('8.0 GOOGLE ANALYTICS') != -1):
skip = True
if (skip == False):
file.write(line)
if (line.find('/*--------------------------------------------------------------') != -1):
skip = False
with open('manifest.json', 'r+') as json_file:
data = json.load(json_file)
version = data['version']
del data['content_security_policy']
del data['update_url']
json_file.seek(0)
json.dump(data, json_file, indent=4, sort_keys=True)
json_file.truncate()
archive = zipfile.ZipFile('../firefox-' + version + '.zip', 'w', zipfile.ZIP_DEFLATED)
for root, dirs, files in os.walk('.'):
for file in files:
archive.write(os.path.join(root, file),
os.path.relpath(os.path.join(root, file),
os.path.join('.', '.')))
archive.close()
shutil.rmtree(temporary_path)
#---------------------------------------------------------------
# 4.0 INITIALIZATION
#---------------------------------------------------------------
for arg in sys.argv:
if arg == '-chromium-stable':
chromium('stable')
elif arg == '-chromium-beta':
chromium('beta')
elif arg == '-firefox':
firefox()