lbry-desktop/ui/js/lbryio.js

193 lines
5.4 KiB
JavaScript
Raw Normal View History

2017-06-08 02:56:52 +02:00
import { getSession, setSession, setLocal } from "./utils.js";
import lbry from "./lbry.js";
2017-04-09 17:06:23 +02:00
2017-06-08 02:56:52 +02:00
const querystring = require("querystring");
2017-04-09 17:06:23 +02:00
const lbryio = {
2017-06-08 02:56:52 +02:00
_accessToken: getSession("accessToken"),
_authenticationPromise: null,
enabled: true,
2017-04-17 16:01:33 +02:00
};
2017-06-06 06:21:55 +02:00
const CONNECTION_STRING = process.env.LBRY_APP_API_URL
2017-06-08 02:56:52 +02:00
? process.env.LBRY_APP_API_URL.replace(/\/*$/, "/") // exactly one slash at the end
: "https://api.lbry.io/";
const EXCHANGE_RATE_TIMEOUT = 20 * 60 * 1000;
2017-05-12 20:36:44 +02:00
lbryio._exchangePromise = null;
lbryio._exchangeLastFetched = null;
lbryio.getExchangeRates = function() {
2017-06-08 02:56:52 +02:00
if (
!lbryio._exchangeLastFetched ||
Date.now() - lbryio._exchangeLastFetched > EXCHANGE_RATE_TIMEOUT
) {
lbryio._exchangePromise = new Promise((resolve, reject) => {
lbryio
.call("lbc", "exchange_rate", {}, "get", true)
.then(({ lbc_usd, lbc_btc, btc_usd }) => {
const rates = { lbc_usd, lbc_btc, btc_usd };
resolve(rates);
})
.catch(reject);
});
lbryio._exchangeLastFetched = Date.now();
}
return lbryio._exchangePromise;
2017-06-06 06:21:55 +02:00
};
2017-06-08 23:15:34 +02:00
lbryio.call = function(resource, action, params = {}, method = "get") {
2017-06-08 02:56:52 +02:00
return new Promise((resolve, reject) => {
2017-06-08 23:15:34 +02:00
if (!lbryio.enabled && (resource != "discover" || action != "list")) {
2017-06-08 02:56:52 +02:00
console.log(__("Internal API disabled"));
reject(new Error(__("LBRY internal API is disabled")));
return;
}
const xhr = new XMLHttpRequest();
xhr.addEventListener("error", function(event) {
reject(
new Error(__("Something went wrong making an internal API call."))
);
});
xhr.addEventListener("timeout", function() {
reject(new Error(__("XMLHttpRequest connection timed out")));
});
xhr.addEventListener("load", function() {
const response = JSON.parse(xhr.responseText);
if (!response.success) {
if (reject) {
let error = new Error(response.error);
error.xhr = xhr;
reject(error);
} else {
document.dispatchEvent(
new CustomEvent("unhandledError", {
detail: {
connectionString: connectionString,
method: action,
params: params,
message: response.error.message,
...(response.error.data ? { data: response.error.data } : {}),
},
})
);
}
} else {
resolve(response.data);
}
});
// For social media auth:
//const accessToken = localStorage.getItem('accessToken');
//const fullParams = {...params, ... accessToken ? {access_token: accessToken} : {}};
// Temp app ID based auth:
const fullParams = { app_id: lbryio.getAccessToken(), ...params };
if (method == "get") {
xhr.open(
"get",
CONNECTION_STRING +
resource +
"/" +
action +
"?" +
querystring.stringify(fullParams),
true
);
xhr.send();
} else if (method == "post") {
xhr.open("post", CONNECTION_STRING + resource + "/" + action, true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send(querystring.stringify(fullParams));
} else {
reject(new Error(__("Invalid method")));
}
});
};
2017-04-18 21:45:15 +02:00
lbryio.getAccessToken = () => {
2017-06-08 02:56:52 +02:00
const token = getSession("accessToken");
return token ? token.toString().trim() : token;
2017-06-06 06:21:55 +02:00
};
2017-04-18 21:45:15 +02:00
2017-06-06 06:21:55 +02:00
lbryio.setAccessToken = token => {
2017-06-08 02:56:52 +02:00
setSession("accessToken", token ? token.toString().trim() : token);
};
lbryio.setCurrentUser = (resolve, reject) => {
lbryio
.call("user", "me")
.then(data => {
resolve(data);
})
.catch(function(err) {
lbryio.setAccessToken(null);
reject(err);
});
2017-06-06 06:21:55 +02:00
};
2017-04-09 17:06:23 +02:00
2017-04-10 14:32:40 +02:00
lbryio.authenticate = function() {
2017-06-01 01:29:10 +02:00
if (!lbryio.enabled) {
return new Promise((resolve, reject) => {
resolve({
id: 1,
2017-06-08 02:56:52 +02:00
language: "en",
has_email: true,
has_verified_email: true,
is_reward_approved: false,
is_reward_eligible: false,
});
});
2017-06-01 01:29:10 +02:00
}
if (lbryio._authenticationPromise === null) {
lbryio._authenticationPromise = new Promise((resolve, reject) => {
2017-06-08 02:56:52 +02:00
lbry
.status()
.then(response => {
let installation_id = response.installation_id;
if (!lbryio.getAccessToken()) {
lbryio
.call(
"user",
"new",
{
language: "en",
app_id: installation_id,
},
"post"
)
.then(function(responseData) {
if (!responseData.id) {
reject(
new Error("Received invalid authentication response.")
);
}
lbryio.setAccessToken(installation_id);
lbryio.setCurrentUser(resolve, reject);
})
.catch(function(error) {
/*
until we have better error code format, assume all errors are duplicate application id
if we're wrong, this will be caught by later attempts to make a valid call
*/
lbryio.setAccessToken(installation_id);
lbryio.setCurrentUser(resolve, reject);
});
} else {
lbryio.setCurrentUser(resolve, reject);
}
})
.catch(reject);
});
}
return lbryio._authenticationPromise;
2017-06-06 06:21:55 +02:00
};
2017-04-09 17:06:23 +02:00
export default lbryio;