-
Notifications
You must be signed in to change notification settings - Fork 11
/
install_mecab_for_yomichan.py
executable file
·233 lines (213 loc) · 8.32 KB
/
install_mecab_for_yomichan.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#!/usr/bin/env python3
# Copyright (C) 2019 siikamiika
# Author: siikamiika
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import os
import json
import copy
import zipfile
if sys.version_info[0] == 3:
from urllib.request import urlretrieve
elif sys.version_info[0] == 2:
from urllib import urlretrieve
input = raw_input
DIR = os.path.realpath(os.path.dirname(__file__))
NAME = 'yomichan_mecab'
MANIFEST_TEMPLATE = {
'name': 'yomichan_mecab',
'description': 'MeCab for Yomichan',
'type': 'stdio',
}
BROWSER_DATA = {
'firefox': {
'extension_id_key': 'allowed_extensions',
'extension_ids': ['[email protected]'],
},
'chrome': {
'extension_id_key': 'allowed_origins',
'extension_ids': ['chrome-extension://ogmnaimimemjmbakcfefmnahgdfhfami/'],
},
'chromium': {
'extension_id_key': 'allowed_origins',
'extension_ids': ['chrome-extension://ogmnaimimemjmbakcfefmnahgdfhfami/'],
},
'edge': {
'extension_id_key': 'allowed_origins',
'extension_ids': ['chrome-extension://ogmnaimimemjmbakcfefmnahgdfhfami/'],
},
}
PLATFORM_DATA = {
'linux': {
'platform_aliases': ['linux', 'linux2', 'riscos', 'freebsd7', 'freebsd8', 'freebsdN', 'openbsd6'],
'manifest_install_data': {
'firefox': {
'methods': ['file'],
'path': os.path.expanduser('~/.mozilla/native-messaging-hosts/'),
},
'chrome': {
'methods': ['file'],
'path': os.path.expanduser('~/.config/google-chrome/NativeMessagingHosts/'),
},
'chromium': {
'methods': ['file'],
'path': os.path.expanduser('~/.config/chromium/NativeMessagingHosts/'),
},
}
},
'windows': {
'platform_aliases': ['win32', 'cygwin'],
'manifest_install_data': {
'firefox': {
'methods': ['file', 'registry'],
'path': DIR,
'registry_path': 'SOFTWARE\\Mozilla\\NativeMessagingHosts\\{}'.format(NAME),
},
'chrome': {
'methods': ['file', 'registry'],
'path': DIR,
'registry_path': 'SOFTWARE\\Google\\Chrome\\NativeMessagingHosts\\{}'.format(NAME),
},
'chromium': {
'methods': ['file', 'registry'],
'path': DIR,
},
'edge': {
'methods': ['file', 'registry'],
'path': DIR,
'registry_path': 'SOFTWARE\\Microsoft\\Edge\\NativeMessagingHosts\\{}'.format(NAME),
},
}
},
'mac': {
'platform_aliases': ['darwin'],
'manifest_install_data': {
'firefox': {
'methods': ['file'],
'path': os.path.expanduser('~/Library/Application Support/Mozilla/NativeMessagingHosts/'),
},
'chrome': {
'methods': ['file'],
'path': os.path.expanduser('~/Library/Application Support/Google/Chrome/NativeMessagingHosts/'),
},
'chromium': {
'methods': ['file'],
'path': os.path.expanduser('~/Library/Application Support/Chromium/NativeMessagingHosts/'),
},
}
},
}
DICTIONARY_DATA = {
'ipadic': {
'url': 'https://github.com/siikamiika/yomichan-mecab-installer/releases/download/ipadic-1/ipadic.zip',
'compression': 'zip',
'size': '51M',
'description': 'A basic dictionary',
},
'unidic-mecab-translate': {
'url': 'https://github.com/siikamiika/unidic-mecab-translate/releases/download/1.2/unidic-mecab-translate-1.2.zip',
'compression': 'zip',
'size': '191M',
'description': 'A dictionary that prefers shorter words to longer ones, is usually more accurate, and shows pronunciation instead of reading',
}
}
def platform_data_get():
for platform_name in PLATFORM_DATA:
data = copy.deepcopy(PLATFORM_DATA[platform_name])
data['platform'] = platform_name
if sys.platform in data['platform_aliases']:
return data
raise Exception('Unsupported platform: {}'.format(sys.platform))
def manifest_get(browser, messaging_host_path, additional_ids=[]):
manifest = copy.deepcopy(MANIFEST_TEMPLATE)
data = BROWSER_DATA[browser]
manifest['path'] = messaging_host_path
manifest[data['extension_id_key']] = []
for extension_id in data['extension_ids'] + additional_ids:
manifest[data['extension_id_key']].append(extension_id)
return json.dumps(manifest, indent=4)
def manifest_install_file(manifest, path):
try: os.makedirs(path)
except: pass
with open(os.path.join(path, NAME + '.json'), 'w') as f:
f.write(manifest)
def download_dict(url, compression):
print('Downloading...')
try: os.makedirs('data')
except: pass
tmp_path, _ = urlretrieve(url)
if compression == 'zip':
extract_zip(tmp_path, 'data')
print('Done!')
def extract_zip(zip_path, extract_path):
print('Extracting...')
with zipfile.ZipFile(zip_path, 'r') as z:
z.extractall(extract_path)
def main():
platform_data = platform_data_get()
# choose browser
browsers = list(platform_data['manifest_install_data'].keys())
for i, browser in enumerate(browsers):
print('{}: {}'.format(i + 1, browser))
browser = browsers[int(input('Choose browser: ')) - 1]
# generate manifest
print('')
print('Using default Yomichan extension ID for {}.'.format(browser))
print('Add more extension IDs, or press enter to continue')
additional_extension_ids = []
while True:
extension_id = input('Extension ID: ')
if not extension_id:
break
additional_extension_ids.append(extension_id)
script_path = os.path.join(DIR, 'mecab.py')
if platform_data['platform'] == 'windows':
bat_path = os.path.join(DIR, 'mecab_yomichan.bat')
with open(bat_path, 'w') as f:
f.write('@echo off\n"{}" -u "{}"'.format(
sys.executable,
script_path
))
script_path = bat_path
manifest = manifest_get(browser, script_path, additional_extension_ids)
manifest_install_data = platform_data['manifest_install_data'][browser]
for method in manifest_install_data['methods']:
if method == 'file':
manifest_install_file(manifest, manifest_install_data['path'])
if method == 'registry':
if sys.version_info[0] == 3:
import winreg
elif sys.version_info[0] == 2:
import _winreg as winreg
winreg.CreateKey(winreg.HKEY_CURRENT_USER,
manifest_install_data['registry_path'])
registry_key = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
manifest_install_data['registry_path'],
0, winreg.KEY_WRITE)
winreg.SetValueEx(registry_key, '', 0, winreg.REG_SZ,
os.path.join(manifest_install_data['path'], NAME + '.json'))
winreg.CloseKey(registry_key)
# install dictionaries
print('')
if input('Install a MeCab dictionary? (Y/n): ').lower() in ['', 'y']:
mecab_dictionaries = list(DICTIONARY_DATA)
for i, dict_name in enumerate(mecab_dictionaries):
dict_data = DICTIONARY_DATA[dict_name]
print('{}: {} [{}] - {}'.format(i + 1, dict_name, dict_data['size'], dict_data['description']))
dictionary = mecab_dictionaries[int(input('Choose dictionary: ')) - 1]
dictionary_data = DICTIONARY_DATA[dictionary]
download_dict(dictionary_data['url'], 'zip')
if __name__ == '__main__':
main()