-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #279 from aopell/develop
Version 7.4
- Loading branch information
Showing
9 changed files
with
322 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
(async function () { | ||
// Wait for loader.js to finish running | ||
while (!window.splusLoaded) { | ||
await new Promise(resolve => setTimeout(resolve, 10)); | ||
} | ||
await loadDependencies("api-key", ["all"]); | ||
})(); | ||
|
||
(function () { | ||
let currentKey = document.getElementById("edit-current-key"); | ||
let currentSecret = document.getElementById("edit-current-secret"); | ||
currentKey.parentElement.style.display = "none"; | ||
currentSecret.parentElement.style.display = "none"; | ||
|
||
if (currentSecret.value.indexOf("*") === -1) { | ||
let key = currentKey.value; | ||
let secret = currentSecret.value; | ||
|
||
trackEvent("Change Access", "allowed", "API Key"); | ||
|
||
Setting.setValue("apikey", key, () => { | ||
Setting.setValue("apisecret", secret, () => { | ||
Setting.setValue("apiuser", getUserId(), () => { | ||
Setting.setValue("apistatus", "allowed", () => { | ||
location.pathname = "/"; | ||
}); | ||
}); | ||
}); | ||
}); | ||
} | ||
|
||
let centerInner = document.getElementById("center-inner"); | ||
centerInner.classList.add("splus-api-key-page"); | ||
centerInner.parentElement.classList.add("splus-api-key-page"); | ||
|
||
centerInner.prepend(createElement("div", ["splus-permissions-wrapper"], {}, [ | ||
createElement("div", ["splus-permissions-box"], {}, [ | ||
createElement("div", ["splus-permissions-icon-wrapper"], {}, [ | ||
createElement("img", ["splus-permissions-icon"], { src: chrome.runtime.getURL("/imgs/logo-full.png") }), | ||
]), | ||
createElement("div", ["splus-permissions-header"], {}, [ | ||
createElement("h2", ["splus-permissions-title"], { textContent: "Schoology Plus Needs Access to Your Account" }), | ||
createElement("p", ["splus-permissions-description"], {}, [ | ||
createElement("span", [], { textContent: "Due to a new security feature, Schoology Plus needs access to your Schoology API Key for the following features to work correctly:" }), | ||
createElement("div", ["splus-permissions-section"], {}, [ | ||
createElement("ul", ["splus-permissions-features-list"], {}, [ | ||
createElement("li", [], { textContent: "What-If Grades" }), | ||
createElement("li", [], { textContent: "Assignment Checkmarks" }), | ||
createElement("li", [], { textContent: "Quick Access" }), | ||
createElement("li", [], { textContent: "Courses in Common" }), | ||
]), | ||
]), | ||
createElement("span", [], { textContent: "By providing access to your API key, Schoology Plus can view extra details about the courses you're enrolled in." }), | ||
createElement("div", ["splus-permissions-section"], {}, [ | ||
createElement("strong", [], { textContent: "Schoology Plus will never:" }), | ||
createElement("ul", ["splus-permissions-never-list"], {}, [ | ||
createElement("li", [], { textContent: "Collect or store any personal information" }), | ||
createElement("li", [], { textContent: "Have access to your account's password" }), | ||
]), | ||
]), | ||
createElement("div", ["splus-permissions-section"], {}, [ | ||
createElement("span", [], { textContent: "If you have any questions, you can" }), | ||
createElement("a", [], { textContent: " view our code on Github", href: "https://github.com/aopell/SchoologyPlus" }), | ||
createElement("span", [], { textContent: " or" }), | ||
createElement("a", [], { textContent: " contact us on Discord", href: "https://discord.schoologypl.us" }), | ||
createElement("span", [], { textContent: ". You can change this setting at any time in the Schoology Plus settings menu." }), | ||
]), | ||
]), | ||
]), | ||
]) | ||
])); | ||
|
||
let submitButton = document.getElementById("edit-reveal"); | ||
submitButton.parentElement.classList.add("splus-allow-access"); | ||
submitButton.value = "Allow Access"; | ||
|
||
submitButton.parentElement.insertAdjacentElement("afterend", createElement("div", ["splus-api-key-footer"], {style: {textAlign: "center"}}, [ | ||
createElement("a", [], { | ||
textContent: "Deny Access", onclick: () => { | ||
alert("API key access was denied. Please keep in mind many Schoology Plus features will not work correctly with this disabled. You can change this at any time from the Schoology Plus settings menu."); | ||
trackEvent("Change Access", "denied", "API Key"); | ||
Setting.setValue("apiuser", getUserId(), () => { | ||
Setting.setValue("apistatus", "denied", () => { | ||
location.pathname = "/"; | ||
}); | ||
}); | ||
} | ||
}), | ||
])); | ||
})(); |
Oops, something went wrong.