-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsourceRedirect.html
More file actions
45 lines (42 loc) · 1.62 KB
/
sourceRedirect.html
File metadata and controls
45 lines (42 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProStore Redirect</title>
<script>
window.addEventListener('DOMContentLoaded', () => {
const urlParams = new URLSearchParams(window.location.search);
const app = urlParams.get('app');
let redirectURL = null;
// Hardcoded URLs for each app
switch(app) {
case 'altstore':
redirectURL = 'altstore://source?url=https://prostore-ios.github.io/apps.json';
break;
case 'sidestore':
redirectURL = 'sidestore://source?url=https://prostore-ios.github.io/apps.json';
break;
case 'esign':
redirectURL = 'esign://addsource?url=https://prostore-ios.github.io/apps.json';
break;
case 'feather':
redirectURL = 'feather://source/https://prostore-ios.github.io/apps.json';
break;
case 'scarlet':
redirectURL = 'scarlet://repo=https://prostore-ios.github.io/apps.json';
break;
}
if(redirectURL) {
document.body.innerHTML = `<p>Opening <strong>${app}</strong>…</p>`;
window.location.href = redirectURL;
} else {
document.body.innerHTML = "<h1>Invalid or missing app parameter!</h1>";
}
});
</script>
</head>
<body>
<p>Redirecting…</p>
</body>
</html>