File size: 4,867 Bytes
765bc42 |
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 |
/* eslint-disable import/no-unresolved */
/* eslint-disable global-require */
/* eslint-disable no-undef */
/* eslint-disable no-param-reassign */
/* global angular i18next sourceList platformSourceList */
angular.module('listenone').controller('ProfileController', [
'$scope',
($scope) => {
let defaultLang = 'zh-CN';
const supportLangs = ['zh-CN', 'en-US'];
if (supportLangs.indexOf(navigator.language) !== -1) {
defaultLang = navigator.language;
}
if (supportLangs.indexOf(localStorage.getObject('language')) !== -1) {
defaultLang = localStorage.getObject('language');
}
$scope.lastestVersion = '';
$scope.proxyModes = [
{ name: 'system', displayId: '_PROXY_SYSTEM' },
{ name: 'direct', displayId: '_PROXY_DIRECT' },
{ name: 'custom', displayId: '_PROXY_CUSTOM' },
];
[$scope.proxyModeInput] = $scope.proxyModes;
[$scope.proxyMode] = $scope.proxyModes;
$scope.proxyProtocols = ['http', 'https', 'quic', 'socks4', 'socks5'];
$scope.proxyProtocol = 'http';
$scope.proxyRules = '';
$scope.changeProxyProtocol = (newProtocol) => {
$scope.proxyProtocol = newProtocol;
};
$scope.changeProxyMode = (newMode) => {
$scope.proxyModeInput = newMode;
};
$scope.setProxyConfig = () => {
const mode = $scope.proxyModeInput.name;
$scope.proxyMode = $scope.proxyModeInput;
const host = document.getElementById('proxy-rules-host').value;
const port = document.getElementById('proxy-rules-port').value;
$scope.proxyRules = `${$scope.proxyProtocol}://${host}:${port}`;
if (isElectron()) {
const message = 'update_proxy_config';
const { ipcRenderer } = require('electron');
if (mode === 'system' || mode === 'direct') {
ipcRenderer.send('control', message, { mode });
} else {
ipcRenderer.send('control', message, {
proxyRules: $scope.proxyRules,
});
}
}
};
$scope.getProxyConfig = () => {
if (isElectron()) {
// get proxy config from main process
const message = 'get_proxy_config';
const { ipcRenderer } = require('electron');
ipcRenderer.send('control', message);
}
};
$scope.initProfile = () => {
const url = `https://api.github.com/repos/listen1/listen1_chrome_extension/releases/latest`;
axios.get(url).then((response) => {
$scope.lastestVersion = response.data.tag_name;
});
$scope.getProxyConfig();
};
if (isElectron()) {
const { ipcRenderer } = require('electron');
ipcRenderer.on('proxyConfig', (event, config) => {
// parse config
if (config.mode === 'system' || config.mode === 'direct') {
[$scope.proxyMode] = $scope.proxyModes.filter(
(i) => i.name === config.mode
);
$scope.proxyModeInput = $scope.proxyMode;
$scope.proxyRules = '';
} else {
[$scope.proxyMode] = $scope.proxyModes.filter(
(i) => i.name === 'custom'
);
$scope.proxyModeInput = $scope.proxyMode;
$scope.proxyRules = config.proxyRules;
// rules = 'socks5://127.0.0.1:1080'
const match = /(\w+):\/\/([\d.]+):(\d+)/.exec(config.proxyRules);
const [, protocol, host, port] = match;
$scope.proxyProtocol = protocol;
document.getElementById('proxy-rules-host').value = host;
document.getElementById('proxy-rules-port').value = port;
}
});
}
$scope.setLang = (langKey) => {
// You can change the language during runtime
i18next.changeLanguage(langKey).then((t) => {
axios.get('i18n/zh-CN.json').then((res) => {
Object.keys(res.data).forEach((key) => {
$scope[key] = t(key);
});
sourceList.forEach((item) => {
item.displayText = t(item.displayId);
});
platformSourceList.forEach((item) => {
item.displayText = t(item.displayId);
});
$scope.proxyModes.forEach((item) => {
item.displayText = t(item.displayId);
});
});
localStorage.setObject('language', langKey);
});
};
$scope.setLang(defaultLang);
let defaultTheme = 'white';
if (localStorage.getObject('theme') !== null) {
defaultTheme = localStorage.getObject('theme');
}
$scope.setTheme = (theme) => {
const themeFiles = {
white: 'css/iparanoid.css',
black: 'css/origin.css',
};
// You can change the language during runtime
if (themeFiles[theme] !== undefined) {
document.getElementById('theme').href = themeFiles[theme];
localStorage.setObject('theme', theme);
}
};
$scope.setTheme(defaultTheme);
},
]);
|