Revert "Fix support python 2.7"

This reverts commit 815adb0856.
This commit is contained in:
Sergey Konovalov
2023-06-05 09:01:16 +03:00
parent 815adb0856
commit 06a1b12069
4 changed files with 16 additions and 88 deletions

View File

@ -13,7 +13,6 @@ import codecs
import re
import stat
import json
from io import open
# common functions --------------------------------------
def get_script_dir(file=""):
@ -263,43 +262,43 @@ def copy_exe(src, dst, name):
copy_file(src + "/" + name + exe_ext, dst + "/" + name + exe_ext)
return
def replaceInFile(path, text, textReplace, encoding='utf8'):
def replaceInFile(path, text, textReplace):
if not is_file(path):
print("[replaceInFile] file not exist: " + path)
return
filedata = ""
with open(get_path(path), "r", encoding=encoding) as file:
with open(get_path(path), "r") as file:
filedata = file.read()
filedata = filedata.replace(text, textReplace)
delete_file(path)
with open(get_path(path), "w", encoding=encoding) as file:
with open(get_path(path), "w") as file:
file.write(filedata)
return
def replaceInFileRE(path, pattern, textReplace, encoding='utf8'):
def replaceInFileRE(path, pattern, textReplace):
if not is_file(path):
print("[replaceInFile] file not exist: " + path)
return
filedata = ""
with open(get_path(path), "r", encoding=encoding) as file:
with open(get_path(path), "r") as file:
filedata = file.read()
filedata = re.sub(pattern, textReplace, filedata)
delete_file(path)
with open(get_path(path), "w", encoding=encoding) as file:
with open(get_path(path), "w") as file:
file.write(filedata)
return
def readFile(path, encoding='utf8'):
def readFile(path):
if not is_file(path):
return ""
filedata = ""
with open(get_path(path), "r", encoding=encoding) as file:
with open(get_path(path), "r") as file:
filedata = file.read()
return filedata
def writeFile(path, data, encoding='utf8'):
def writeFile(path, data):
if is_file(path):
delete_file(path)
with open(get_path(path), "w", encoding=encoding) as file:
with open(get_path(path), "w") as file:
file.write(data)
return
@ -1331,62 +1330,6 @@ def copy_v8_files(core_dir, deploy_dir, platform, is_xp=False):
copy_files(directory_v8 + platform + "/icudt*.dat", deploy_dir + "/")
return
def change_plugin_license(path, license, start, end, encoding='utf8'):
with open(path, 'r', encoding=encoding) as file:
content = file.read()
start_index = content.find(start)
end_index = content.find(end)
if start_index >= 0 and end_index >= 0:
old_license = content[start_index:end_index+len(end)]
if (re.search(r'ascensio', old_license, re.IGNORECASE)):
file.close()
replaceInFile(path, old_license, license)
def check_correct_plugins(dir, license = '', branding=''):
js_license = license
html_license = license.replace('/*', '<!--')
html_license = html_license.replace('*/', '-->')
extensions = ['.js', '.html', '.md', '.txt', '.json']
ignoreNameDirs = ['vendor', 'thirdparty']
for address, dirs, files in os.walk(dir):
for i in ignoreNameDirs:
if (re.search(re.escape(i), address)):
break
else:
for i in files:
path = os.path.join(address, i)
filename, file_extension = os.path.splitext(i)
if file_extension in extensions:
if (file_extension == '.js'):
change_plugin_license(path, js_license, start='/*', end='*/')
replaceInFileRE(path, 'onlyoffice', branding.lower())
replaceInFileRE(path, 'ONLYOFFICE', branding.upper())
elif (file_extension == '.html'):
change_plugin_license(path, html_license, start='<!--', end='-->')
replaceInFile(path, "https://onlyoffice.github.io/sdkjs-plugins/", "../")
replaceInFileRE(path, 'onlyoffice', branding.lower())
replaceInFileRE(path, 'ONLYOFFICE', branding.upper())
elif (file_extension == '.md' or file_extension == '.txt'):
check = readFile(path)
if (re.search(r'onlyoffice', check, re.IGNORECASE) or re.search(r'ascensio', check, re.IGNORECASE)):
delete_file(path)
elif (file_extension == '.json'):
replaceInFileRE(path, 'onlyoffice', branding.lower())
replaceInFileRE(path, 'ONLYOFFICE', branding.upper())
# ATTENTION sdkjs-plugins\wordpress\scripts\wordpress.js -- changed proxy | https://onlyoffice-proxy.herokuapp.com/https://public-api.wordpress.com/oauth2/token | (Can kill the plugin)
# ATTENTION sdkjs-plugins\wordpress\index.html -- changed link to Learn More | https://github.com/ONLYOFFICE/plugin-wordpress/tree/develop#configuration |
# ATTENTION sdkjs-plugins\easybib\index.html -- changed link to Learn More | https://github.com/ONLYOFFICE/plugin-mendeley/tree/master#configuration |
# ATTENTION sdkjs-plugins\easybib\scripts\easybibhelper.js -- changed proxy | https://onlyoffice-proxy.herokuapp.com/ | (Can kill the plugin)
# ATTENTION sdkjs-plugins\deepl\index.html -- changed link to Learn More | https://github.com/ONLYOFFICE/plugin-deepl/tree/develop#configuration |
# ATTENTION sdkjs-plugins\chess\index_about.html -- changed link to Source Code | https://github.com/ONLYOFFICE/onlyoffice.github.io/tree/master/sdkjs-plugins/content/chess |
# ATTENTION sdkjs-plugins\macros\config.json -- changed link to API at "help" | https://api.onlyoffice.com/plugin/macros |
# ATTENTION sdkjs-plugins\marketplace\index.html -- changed link | https://onlyoffice.github.io/store/index.html |
def correct_plugins_branding(out_dir, license):
branding = config.option("branding")
if not "" == branding and not "onlyoffice" == branding:
check_correct_plugins(out_dir, license, branding)
def clone_marketplace_plugin(out_dir, is_name_as_guid=False, is_replace_paths=False, is_delete_git_dir=True, git_owner=""):
old_cur = os.getcwd()
os.chdir(out_dir)