2019-02-12 00:47:01 +01:00
|
|
|
"use strict"; /* global document, history, send, window */
|
2019-02-05 00:42:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-02-12 00:47:01 +01:00
|
|
|
document.getElementById("get-started").onclick = event => {
|
2019-02-05 00:42:52 +01:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
send({
|
|
|
|
message: "auth me with github"
|
|
|
|
});
|
2019-02-12 00:47:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if (window.location.search.includes("?code=")) {
|
|
|
|
document.querySelector("developer-program").innerHTML = `
|
|
|
|
<form>
|
|
|
|
<input-submit>
|
|
|
|
<input id="walletAddress" placeholder="Your LBRY wallet address" type="text"/>
|
|
|
|
<input id="oauthCode" type="hidden" value="${window.location.search.split("?code=").pop()}"/>
|
|
|
|
<button id="creditsAcquire" title="Get LBRY credits" type="button">Get credits</button>
|
|
|
|
</input-submit>
|
|
|
|
</form>
|
|
|
|
`;
|
|
|
|
|
|
|
|
history.replaceState({}, "", window.location.pathname); // clean up URL bar
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.getElementById("creditsAcquire")) {
|
|
|
|
document.getElementById("creditsAcquire").onclick = () => {
|
|
|
|
send({
|
|
|
|
address: document.getElementById("walletAddress").value,
|
|
|
|
code: document.getElementById("oauthCode").value,
|
|
|
|
message: "verify github auth"
|
|
|
|
});
|
|
|
|
|
|
|
|
document.querySelector("developer-program").innerHTML = "<p><em>Awaiting response from internal LBRY API</em></p>";
|
|
|
|
};
|
|
|
|
}
|