Skip to content

Commit 18bbb47

Browse files
committed
Show country code in random proxy mode
1 parent 06e07eb commit 18bbb47

File tree

3 files changed

+35
-17
lines changed

3 files changed

+35
-17
lines changed

src/helpers/proxyBadge.ts

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { ProxyDetails } from '@/helpers/socksProxy/socksProxy.types';
21
import { checkDomain } from '@/helpers/domain';
3-
import { getActiveProxyDetails, getActiveTab } from '@/helpers/tabs';
2+
import { domainProxyDetailsMap } from '@/helpers/socksProxy/getRandomSessionProxy';
43
import { isLocalOrReservedIP } from '@/helpers/socksProxy/socksProxy';
4+
import { ProxyDetails } from '@/helpers/socksProxy/socksProxy.types';
5+
import { getActiveProxyDetails, getActiveTab } from '@/helpers/tabs';
56

67
export const updateCurrentTabProxyBadge = async () => {
78
const activeTab = await getActiveTab();
@@ -19,10 +20,12 @@ export const updateTabProxyBadge = async (
1920
const { excludedHosts } = await browser.storage.local.get('excludedHosts');
2021
const { hostProxiesDetails } = await browser.storage.local.get('hostProxiesDetails');
2122
const { globalProxyDetails } = await browser.storage.local.get('globalProxyDetails');
23+
const { randomProxyMode } = await browser.storage.local.get('randomProxyMode');
2224

2325
const hostProxiesDetailsParsed = JSON.parse(hostProxiesDetails);
2426
const excludedHostsParsed = JSON.parse(excludedHosts);
2527
const globalProxyDetailsParsed = JSON.parse(globalProxyDetails);
28+
const randomProxyModeParsed = JSON.parse(randomProxyMode);
2629

2730
const tabHost = new URL(url!).hostname;
2831
const { domain, subDomain, hasSubdomain } = checkDomain(tabHost);
@@ -34,6 +37,18 @@ export const updateTabProxyBadge = async (
3437
return;
3538
}
3639

40+
// 0. Check for random proxy mode
41+
if (randomProxyModeParsed) {
42+
const proxyDetails = domainProxyDetailsMap[domain];
43+
if (proxyDetails) {
44+
const proxyDNSMessage = proxyDetails.proxyDNS ? 'DNS proxied' : 'DNS not proxied';
45+
const title = `${proxyDetails.city}, ${proxyDetails.country}\nServer: ${proxyDetails.server}\n${proxyDNSMessage}`;
46+
browser.browserAction.setTitle({ tabId, title });
47+
await setTabExtBadge(tab, true, false, proxyDetails.countryCode);
48+
return;
49+
}
50+
}
51+
3752
// 1. Check subdomain level
3853
if (hasSubdomain) {
3954
if (excludedHostsParsed.includes(subDomain)) {
+13-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
import { SocksProxy } from '@/helpers/socksProxy/socksProxies.types';
22

3-
export const addCountryCode = (data: SocksProxy[]) => {
4-
return data.map((proxy) => {
5-
const { location } = proxy;
3+
export const addCountryCodeToProxy = (proxy: SocksProxy) => {
4+
const { location } = proxy;
5+
const countryCode = location.code.substring(0, 2);
66

7-
const countryCode = location.code.substring(0, 2);
7+
return {
8+
...proxy,
9+
location: {
10+
...location,
11+
countryCode,
12+
},
13+
};
14+
};
815

9-
return {
10-
...proxy,
11-
location: {
12-
...location,
13-
countryCode,
14-
},
15-
};
16-
});
16+
export const addCountryCode = (data: SocksProxy[]) => {
17+
return data.map(addCountryCodeToProxy);
1718
};

src/helpers/socksProxy/getRandomSessionProxy.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { addCountryCodeToProxy } from '@/helpers/socksProxy/addCountryCode';
2+
import { baseConfig, socksIp } from '@/helpers/socksProxy/constants';
13
import { SocksProxy } from '@/helpers/socksProxy/socksProxies.types';
24
import {
35
ProxyInfo,
@@ -6,10 +8,9 @@ import {
68
ProxyDetailsMap,
79
ProxyInfoType,
810
} from '@/helpers/socksProxy/socksProxy.types';
9-
import { baseConfig, socksIp } from './constants';
1011

1112
const domainProxyInfoMap: ProxyInfoMap = {};
12-
const domainProxyDetailsMap: ProxyDetailsMap = {};
13+
export const domainProxyDetailsMap: ProxyDetailsMap = {};
1314

1415
export async function getRandomSessionProxy(domain: string) {
1516
try {
@@ -36,11 +37,12 @@ export async function getRandomSessionProxy(domain: string) {
3637
domainProxyInfoMap[domain] = proxyInfo;
3738

3839
// Optionally store user-facing details in ProxyDetailsMap
40+
console.log({ randomProxy });
3941
const proxyDetails: ProxyDetails = {
4042
socksEnabled: true,
4143
server: randomProxy.hostname!.replace('socks5-', '')!.replace('.relays.mullvad.net', ''),
4244
country: randomProxy.location.country,
43-
countryCode: randomProxy.location.countryCode,
45+
countryCode: addCountryCodeToProxy(randomProxy).location.countryCode,
4446
city: randomProxy.location.city,
4547
proxyDNS: baseConfig.proxyDNS,
4648
};

0 commit comments

Comments
 (0)