代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
import os
import platform
import shutil
import sys
import re
import stat
import subprocess
from proxy import stop_proxy
# 导入用于显示弹窗的消息框模块
if platform.system() == 'Windows':
import tkinter
from tkinter import messagebox
else:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Prevent running as root on Linux
if platform.system() == 'Linux' and os.environ['USER'] == 'root':
print("This addon cannot be installed as root!", file=sys.stderr)
sys.exit(1)
# Check whether Python 3 is in PATH
def checkpy():
def runcmd(cmd):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
code = p.wait()
res = [line.decode() for line in p.stdout.readlines()]
return code, res
if platform.system() == 'Windows':
cmd = 'where python'
else:
cmd = 'which python'
_, pyexes = runcmd(cmd)
ver = None
if len(pyexes) > 0:
_, res = runcmd('{} --version'.format(pyexes[0].strip()))
if len(res) > 0 and res[0].startswith('Python 3'):
ver = res[0]
if ver is None:
print('Please add Python 3 to the PATH environment variable!')
else:
print('Python in PATH:', ver)
return ver
if platform.system() == 'Windows':
checkpy()
# File & directory paths
PKG_PATH = os.path.dirname(os.path.abspath(__file__))
with open(PKG_PATH + os.path.sep + 'version.js') as f:
VERSION = f.readlines()[0].split('=')[-1].strip()[1:-1]
APPNAME = 'wps-zotero_{}'.format(VERSION)
if os.name == 'posix':
ADDON_PATH = os.environ['HOME'] + '/.local/share/Kingsoft/wps/jsaddons'
else:
ADDON_PATH = os.environ['APPDATA'] + '\\kingsoft\\wps\\jsaddons'
XML_PATHS = {
'jsplugins': ADDON_PATH + os.path.sep + 'jsplugins.xml',
'publish': ADDON_PATH + os.path.sep + 'publish.xml',
'authwebsite': ADDON_PATH + os.path.sep + 'authwebsite.xml'
}
PROXY_PATH = ADDON_PATH + os.path.sep + 'proxy.py'
def uninstall():
print("Trying to quit proxy server if it's currently listening...")
stop_proxy()
def del_rw(action, name, exc):
os.chmod(name, stat.S_IWRITE)
os.remove(name)
if not os.path.isdir(ADDON_PATH):
return
for x in os.listdir(ADDON_PATH):
if os.path.isdir(ADDON_PATH + os.path.sep + x) and 'wps-zotero' in x:
print('Removing {}'.format(ADDON_PATH + os.path.sep + x))
shutil.rmtree(ADDON_PATH + os.path.sep + x, onerror=del_rw)
for fp in XML_PATHS.values():
if not os.path.isfile(fp):
continue
with open(fp) as f:
xmlStr = f.read()
records = [(m.start(),m.end()) for m in re.finditer(r'[\ \t]*<.*wps-zotero.*/>\s*', xmlStr)]
for r in records:
print('Removing record from {}'.format(fp))
with open(fp, 'w') as f:
f.write(xmlStr[:r[0]] + xmlStr[r[1]:])
# Uninstall existing installation
print('Uninstalling previous installations if there is any ...')
uninstall()
if len(sys.argv) > 1 and sys.argv[1] == '-u':
sys.exit()
# Begin installation
print('Installing')
# Create necessary directory and files
if not os.path.exists(ADDON_PATH):
os.makedirs(ADDON_PATH, exist_ok=True)
if not os.path.exists(XML_PATHS['jsplugins']):
with open(XML_PATHS['jsplugins'], 'w') as f:
f.write('''<jsplugins>
</jsplugins>
''')
if not os.path.exists(XML_PATHS['publish']):
with open(XML_PATHS['publish'], 'w') as f:
f.write('''<?xml version="1.0" encoding="UTF-8"?>
<jsplugins>
</jsplugins>
''')
if not os.path.exists(XML_PATHS['authwebsite']):
with open(XML_PATHS['authwebsite'], 'w') as f:
f.write('''<?xml version="1.0" encoding="UTF-8"?>
<websites>
</websites>
''')
# Copy to jsaddons
shutil.copytree(PKG_PATH, ADDON_PATH + os.path.sep + APPNAME)
# Write records to XML files
def register(fp, tagname, record):
with open(fp) as f:
content = f.read()
pos = [m.end() for m in re.finditer(r'<' + tagname + r'>\s*', content)]
if len(pos) == 0:
content += f'<{tagname}></{tagname}>'
pos = [content.index(f'</{tagname}>')]
i = pos[0]
with open(fp, 'w') as f:
f.write(content[:i] + record + os.linesep + content[i:])
rec = '<jsplugin name="wps-zotero" type="wps" url="http://127.0.0.1:3889/" version="{}"/>'.format(VERSION)
register(XML_PATHS['jsplugins'], 'jsplugins', rec)
rec = '<jsplugin url="http://127.0.0.1:3889/" type="wps" enable="enable_dev" install="null" version="{}" name="wps-zotero"/>'.format(VERSION)
register(XML_PATHS['publish'], 'jsplugins', rec)
rec = '<website origin="null" name="wps-zotero" status="enable"/>'
register(XML_PATHS['authwebsite'], 'websites', rec)
# Alleviate the "Zotero window not brought to front" problem.
# https://www.zotero.org/support/kb/addcitationdialog_raised
if os.name == 'nt':
print('Change zotero preference to alleviate the problem of Zotero window not showing in front.')
tmp = os.environ['APPDATA'] + '\\Zotero\\Zotero\\Profiles\\'
for fn in os.listdir(tmp):
if os.path.isdir(fn) and tmp.endswith('.default') and os.path.isfile(fn + '\\prefs.js'):
pref_fn = fn + '\\prefs.js'
with open(pref_fn) as f:
content = f.read()
if 'extensions.zotero.integration.keepAddCitationDialogRaised' in content:
content = content.replace('user_pref("extensions.zotero.integration.keepAddCitationDialogRaised", false)', 'user_pref("extensions.zotero.integration.keepAddCitationDialogRaised", true);')
else:
content += '\nuser_pref("extensions.zotero.integration.keepAddCitationDialogRaised", true);\n'
with open(pref_fn, 'w') as f:
f.write(content)
# 所有安装步骤完成后,添加这一段代码来显示弹窗
if platform.system() == 'Windows':
# 对于 Windows 使用 tkinter 创建弹窗
root = tkinter.Tk()
root.withdraw() # 隐藏主窗口
messagebox.showinfo('安装成功', '所有操作已完成,现在可以使用插件了!')
root.destroy()
else:
# 对于 Linux 使用 GTK 创建弹窗
dialog = Gtk.MessageDialog(
flags=0,
type=Gtk.MessageType.INFO,
buttons=Gtk.ButtonsType.OK,
message_format="所有操作已完成,现在可以使用插件了!"
)
dialog.run()
dialog.destroy()
print('All done, enjoy!')
print('(run ./install.py -u to uninstall)')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。