-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeepL API key settings.js
More file actions
118 lines (112 loc) · 3.53 KB
/
DeepL API key settings.js
File metadata and controls
118 lines (112 loc) · 3.53 KB
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
const PROPERTY_NAMES = {
// Legacy
DEEPL: {
propertyApiKeySettingsName: 'DEEPL_API_KEY_SETTINGS',
propertyApiKeyName: 'DeepLAPIkey',
textName: 'DeepL'
},
// Legacy
CHATGPT: {
propertyApiKeySettingsName: 'CHATGPT_API_KEY_SETTINGS',
propertyApiKeyName: 'ChatGPTAPIkey',
textName: 'ChatGPT'
},
DeepL: {
propertyApiKeySettingsName: 'DEEPL_API_KEY_SETTINGS',
propertyApiKeyName: 'DeepLAPIkey',
textName: 'DeepL',
testKey: function (apiKey) {
return testDeeplKey(apiKey);
}
},
OpenAI: {
propertyApiKeySettingsName: 'CHATGPT_API_KEY_SETTINGS',
propertyApiKeyName: 'ChatGPTAPIkey',
textName: 'OpenAI',
testKey: function (apiKey) {
return testChatGPTKey(apiKey);
}
},
Anthropic: {
propertyApiKeySettingsName: 'ANTHROPIC_API_KEY_SETTINGS',
propertyApiKeyName: 'ANTHROPICAPIkey',
textName: 'Anthropic',
testKey: function (apiKey) {
return testAnthropicKey(apiKey);
}
}
};
// submenu_09_translate_basic, translateSelectionAndAppendL use the function
function getDeeplApiKeySettings(tryToRetrieveProperties, translator) {
const DEFAULT_SETTINGS = 'user';
const resultObj = {
marker: '',
settings: DEFAULT_SETTINGS,
menuText: deeplApiKeySettings[DEFAULT_SETTINGS]['menuText']
};
if (tryToRetrieveProperties === true) {
try {
const userProperties = PropertiesService.getUserProperties();
const settings = userProperties.getProperty(PROPERTY_NAMES[translator]['propertyApiKeySettingsName']);
if (settings != null && deeplApiKeySettings.hasOwnProperty(settings)) {
resultObj['settings'] = settings;
resultObj['menuText'] = translator === 'DEEPL' ? deeplApiKeySettings[settings]['menuText'] : chatGPTApiKeySettings[settings]['menuText'];
resultObj['marker'] = '✅';
if (settings == 'doc') {
const docKey = getDeepLAPIkey('doc', PROPERTY_NAMES[translator]['propertyApiKeyName']);
if (docKey == null) {
resultObj['marker'] = '❌';
}
}
}
if (settings == null) {
resultObj['marker'] = '✅';
}
}
catch (error) {
// Logger.log('Needs to activate!!! ' + error);
}
}
return resultObj;
}
// 2024
// DeepL, OpenAI, Anthropic
// user, doc, ask
function setDefaultAPIkey(provider, storage) {
const userProperties = PropertiesService.getUserProperties();
if (!['user', 'doc', 'ask'].includes(storage)){
return { status: 'error', message: 'Wrong storage name.'};
}
userProperties.setProperty(PROPERTY_NAMES[provider]['propertyApiKeySettingsName'], storage);
return { status: 'ok' };
}
// Menu items of DeepL API key settings
const deeplApiKeySettings = {
"user": {
"menuText": "Default to user DeepL API key",
"run": function () { activateDeeplApiKeySettings(this, 'DEEPL'); }
},
"doc": {
"menuText": "Default to document DeepL API key",
"run": function () { activateDeeplApiKeySettings(this, 'DEEPL'); }
},
"ask": {
"menuText": "Always ask",
"run": function () { activateDeeplApiKeySettings(this, 'DEEPL'); }
}
}
// Menu items of ChatGPT API key settings
const chatGPTApiKeySettings = {
"user": {
"menuText": "Default to user ChatGPT API key",
"run": function () { activateDeeplApiKeySettings(this, 'CHATGPT'); }
},
"doc": {
"menuText": "Default to document ChatGPT API key",
"run": function () { activateDeeplApiKeySettings(this, 'CHATGPT'); }
},
"ask": {
"menuText": "Always ask",
"run": function () { activateDeeplApiKeySettings(this, 'CHATGPT'); }
}
}