-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhelperFunctions.js
137 lines (129 loc) · 3.92 KB
/
helperFunctions.js
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
const checkIfRepoExists = async (repoName) => {
const { accessToken } = await chrome.storage.local.get(["accessToken"]);
const url = `https://api.github.com/user/repos`;
const options = {
method: "GET",
headers: new Headers({
Accept: "application/vnd.github+json",
Authorization: `Bearer ${accessToken}`,
}),
};
try {
const response = await fetch(url, options);
if (!response.ok) {
console.log(
`GitHub API error: ${response.status} - ${response.statusText}`
);
return false;
}
const json = await response.json();
for (let i = 0; i < json.length; i++) {
let currentRepoName = json[i]["name"].toLowerCase();
if (currentRepoName === repoName.toLowerCase()) return true;
}
return false;
} catch (e) {
console.log("Error checking if repo exists:", e.message);
}
};
const checkIfRepoAndDirectoryExists = async (repoName, directory) => {
const { accessToken, githubUsername } = await chrome.storage.local.get([
"accessToken",
"githubUsername",
]);
const url = `https://api.github.com/repos/${githubUsername}/${repoName}/contents/${directory}`;
const options = {
method: "GET",
headers: new Headers({
Accept: "application/vnd.github+json",
Authorization: `Bearer ${accessToken}`,
}),
};
try {
const response = await fetch(url, options);
if (response.status === 404) {
console.log("Repo and directory path does not exist!");
return false;
}
if (!response.ok) {
console.log(
`GitHub API error: ${response.status} - ${response.statusText}`
);
return false;
}
return true;
} catch (e) {
console.log("Error checking if repo and directory exists:", e);
return false;
}
};
const sanitizeRepoName = (name) => {
return name.replace(/[^a-zA-Z0-9\-\/]/g, "-");
};
const extractRepoNameAndDirectoryName = (input, idxOfForwardSlash) => {
let repoName = "";
let directoryName = "";
if (idxOfForwardSlash === -1) {
repoName = sanitizeRepoName(input);
} else {
repoName = sanitizeRepoName(input.slice(0, idxOfForwardSlash));
directoryName = encodeURIComponent(input.slice(idxOfForwardSlash + 1));
}
return { repoName, directoryName };
};
const toggleVisibility = (section, visible) => {
section.style.display = visible ? "block" : "none";
section.style.visibility = visible ? "visible" : "hidden";
};
const updateUI = (
authRequestSection,
linkRepoRequestSection,
repoConnectedSection,
aTagForRepoUrl
) => {
chrome.storage.local.get(
[
"isUserAuthenticated",
"isRepoConnected",
"githubUsername",
"repo",
"directory",
],
(result) => {
const {
isUserAuthenticated,
isRepoConnected,
githubUsername,
repo,
directory,
} = result;
if (!isUserAuthenticated && !isRepoConnected) {
toggleVisibility(linkRepoRequestSection, false);
toggleVisibility(repoConnectedSection, false);
toggleVisibility(authRequestSection, true);
} else if (isUserAuthenticated && !isRepoConnected) {
toggleVisibility(authRequestSection, false);
toggleVisibility(repoConnectedSection, false);
toggleVisibility(linkRepoRequestSection, true);
} else if (isUserAuthenticated && isRepoConnected) {
toggleVisibility(authRequestSection, false);
toggleVisibility(linkRepoRequestSection, false);
toggleVisibility(repoConnectedSection, true);
aTagForRepoUrl.innerHTML = `${githubUsername}/${repo}${
directory ? "/" + decodeURIComponent(directory) : ""
}`;
aTagForRepoUrl.href = `https://github.com/${githubUsername}/${repo}${
directory ? "/tree/main/" + directory : ""
}`;
aTagForRepoUrl.target = "_blank";
}
}
);
};
export {
checkIfRepoExists,
checkIfRepoAndDirectoryExists,
extractRepoNameAndDirectoryName,
toggleVisibility,
updateUI,
};