2017-06-15 06:26:26 +02:00
|
|
|
import lbryio from "./lbryio.js";
|
|
|
|
import lighthouse from "./lighthouse.js";
|
|
|
|
import jsonrpc from "./jsonrpc.js";
|
|
|
|
import lbryuri from "./lbryuri.js";
|
|
|
|
import { getLocal, getSession, setSession, setLocal } from "./utils.js";
|
2016-12-09 07:54:18 +01:00
|
|
|
|
2017-06-15 06:26:26 +02:00
|
|
|
const { remote, ipcRenderer } = require("electron");
|
|
|
|
const menu = remote.require("./menu/main-menu");
|
2017-03-08 09:56:34 +01:00
|
|
|
|
2017-05-19 01:14:26 +02:00
|
|
|
let lbry = {
|
2017-06-15 06:26:26 +02:00
|
|
|
isConnected: false,
|
|
|
|
daemonConnectionString: "http://localhost:5279/lbryapi",
|
|
|
|
pendingPublishTimeout: 20 * 60 * 1000,
|
|
|
|
defaultClientSettings: {
|
|
|
|
showNsfw: false,
|
|
|
|
showUnavailable: true,
|
|
|
|
debug: false,
|
|
|
|
useCustomLighthouseServers: false,
|
|
|
|
customLighthouseServers: [],
|
|
|
|
showDeveloperMenu: false,
|
|
|
|
language: "en",
|
|
|
|
},
|
2017-05-19 01:14:26 +02:00
|
|
|
};
|
|
|
|
|
2017-06-15 02:21:31 +02:00
|
|
|
function apiCall(method, params, resolve, reject) {
|
|
|
|
return jsonrpc.call(
|
|
|
|
lbry.daemonConnectionString,
|
|
|
|
method,
|
|
|
|
params,
|
|
|
|
resolve,
|
|
|
|
reject,
|
|
|
|
reject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-03-15 04:05:07 +01:00
|
|
|
/**
|
|
|
|
* Records a publish attempt in local storage. Returns a dictionary with all the data needed to
|
|
|
|
* needed to make a dummy claim or file info object.
|
|
|
|
*/
|
2017-06-29 00:08:16 +02:00
|
|
|
let pendingId = 0;
|
2017-06-06 06:21:55 +02:00
|
|
|
function savePendingPublish({ name, channel_name }) {
|
2017-06-15 06:26:26 +02:00
|
|
|
let uri;
|
|
|
|
if (channel_name) {
|
|
|
|
uri = lbryuri.build({ name: channel_name, path: name }, false);
|
|
|
|
} else {
|
|
|
|
uri = lbryuri.build({ name: name }, false);
|
|
|
|
}
|
2017-06-29 00:08:16 +02:00
|
|
|
++pendingId;
|
2017-06-15 06:26:26 +02:00
|
|
|
const pendingPublishes = getLocal("pendingPublishes") || [];
|
|
|
|
const newPendingPublish = {
|
|
|
|
name,
|
|
|
|
channel_name,
|
2017-06-29 00:08:16 +02:00
|
|
|
claim_id: "pending-" + pendingId,
|
|
|
|
txid: "pending-" + pendingId,
|
2017-06-15 06:26:26 +02:00
|
|
|
nout: 0,
|
2017-06-29 00:08:16 +02:00
|
|
|
outpoint: "pending-" + pendingId + ":0",
|
2017-06-15 06:26:26 +02:00
|
|
|
time: Date.now(),
|
|
|
|
};
|
|
|
|
setLocal("pendingPublishes", [...pendingPublishes, newPendingPublish]);
|
|
|
|
return newPendingPublish;
|
2017-03-15 04:05:07 +01:00
|
|
|
}
|
|
|
|
|
2017-04-13 01:24:04 +02:00
|
|
|
/**
|
|
|
|
* If there is a pending publish with the given name or outpoint, remove it.
|
|
|
|
* A channel name may also be provided along with name.
|
|
|
|
*/
|
2017-06-06 06:21:55 +02:00
|
|
|
function removePendingPublishIfNeeded({ name, channel_name, outpoint }) {
|
2017-06-15 06:26:26 +02:00
|
|
|
function pubMatches(pub) {
|
|
|
|
return (
|
|
|
|
pub.outpoint === outpoint ||
|
|
|
|
(pub.name === name &&
|
|
|
|
(!channel_name || pub.channel_name === channel_name))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
setLocal(
|
|
|
|
"pendingPublishes",
|
|
|
|
lbry.getPendingPublishes().filter(pub => !pubMatches(pub))
|
|
|
|
);
|
2017-03-15 04:05:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current list of pending publish attempts. Filters out any that have timed out and
|
|
|
|
* removes them from the list.
|
|
|
|
*/
|
2017-05-19 01:14:26 +02:00
|
|
|
lbry.getPendingPublishes = function() {
|
2017-06-15 06:26:26 +02:00
|
|
|
const pendingPublishes = getLocal("pendingPublishes") || [];
|
|
|
|
const newPendingPublishes = pendingPublishes.filter(
|
|
|
|
pub => Date.now() - pub.time <= lbry.pendingPublishTimeout
|
|
|
|
);
|
|
|
|
setLocal("pendingPublishes", newPendingPublishes);
|
|
|
|
return newPendingPublishes;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-03-15 04:05:07 +01:00
|
|
|
|
|
|
|
/**
|
2017-04-13 01:24:04 +02:00
|
|
|
* Gets a pending publish attempt by its name or (fake) outpoint. A channel name can also be
|
|
|
|
* provided along withe the name. If no pending publish is found, returns null.
|
2017-03-15 04:05:07 +01:00
|
|
|
*/
|
2017-06-06 06:21:55 +02:00
|
|
|
function getPendingPublish({ name, channel_name, outpoint }) {
|
2017-06-15 06:26:26 +02:00
|
|
|
const pendingPublishes = lbry.getPendingPublishes();
|
|
|
|
return (
|
|
|
|
pendingPublishes.find(
|
|
|
|
pub =>
|
|
|
|
pub.outpoint === outpoint ||
|
|
|
|
(pub.name === name &&
|
|
|
|
(!channel_name || pub.channel_name === channel_name))
|
|
|
|
) || null
|
|
|
|
);
|
2017-03-15 04:05:07 +01:00
|
|
|
}
|
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
function pendingPublishToDummyClaim({
|
2017-06-15 06:26:26 +02:00
|
|
|
channel_name,
|
|
|
|
name,
|
|
|
|
outpoint,
|
|
|
|
claim_id,
|
|
|
|
txid,
|
|
|
|
nout,
|
2017-06-06 06:21:55 +02:00
|
|
|
}) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return { name, outpoint, claim_id, txid, nout, channel_name };
|
2017-03-15 04:05:07 +01:00
|
|
|
}
|
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
function pendingPublishToDummyFileInfo({ name, outpoint, claim_id }) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return { name, outpoint, claim_id, metadata: null };
|
2017-03-15 04:05:07 +01:00
|
|
|
}
|
|
|
|
|
2016-03-14 23:05:24 +01:00
|
|
|
//core
|
2017-04-09 17:06:23 +02:00
|
|
|
lbry._connectPromise = null;
|
|
|
|
lbry.connect = function() {
|
2017-06-15 06:26:26 +02:00
|
|
|
if (lbry._connectPromise === null) {
|
|
|
|
lbry._connectPromise = new Promise((resolve, reject) => {
|
|
|
|
let tryNum = 0;
|
|
|
|
|
|
|
|
function checkDaemonStartedFailed() {
|
2017-06-14 17:21:16 +02:00
|
|
|
if (tryNum <= 200) {
|
2017-06-15 06:26:26 +02:00
|
|
|
// Move # of tries into constant or config option
|
|
|
|
setTimeout(() => {
|
|
|
|
tryNum++;
|
|
|
|
checkDaemonStarted();
|
|
|
|
}, tryNum < 50 ? 400 : 1000);
|
|
|
|
} else {
|
|
|
|
reject(new Error("Unable to connect to LBRY"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check every half second to see if the daemon is accepting connections
|
|
|
|
function checkDaemonStarted() {
|
2017-06-15 02:21:31 +02:00
|
|
|
lbry.status().then(resolve).catch(checkDaemonStartedFailed);
|
2017-06-15 06:26:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
checkDaemonStarted();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return lbry._connectPromise;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-03-14 23:05:24 +01:00
|
|
|
|
2017-04-13 20:57:12 +02:00
|
|
|
/**
|
|
|
|
* Takes a LBRY URI; will first try and calculate a total cost using
|
|
|
|
* Lighthouse. If Lighthouse can't be reached, it just retrives the
|
|
|
|
* key fee.
|
|
|
|
*
|
|
|
|
* Returns an object with members:
|
|
|
|
* - cost: Number; the calculated cost of the name
|
|
|
|
* - includes_data: Boolean; indicates whether or not the data fee info
|
|
|
|
* from Lighthouse is included.
|
|
|
|
*/
|
2017-06-06 06:21:55 +02:00
|
|
|
lbry.costPromiseCache = {};
|
2017-04-18 21:14:42 +02:00
|
|
|
lbry.getCostInfo = function(uri) {
|
2017-06-15 06:26:26 +02:00
|
|
|
if (lbry.costPromiseCache[uri] === undefined) {
|
|
|
|
lbry.costPromiseCache[uri] = new Promise((resolve, reject) => {
|
|
|
|
const COST_INFO_CACHE_KEY = "cost_info_cache";
|
|
|
|
let costInfoCache = getSession(COST_INFO_CACHE_KEY, {});
|
|
|
|
|
|
|
|
function cacheAndResolve(cost, includesData) {
|
|
|
|
costInfoCache[uri] = { cost, includesData };
|
|
|
|
setSession(COST_INFO_CACHE_KEY, costInfoCache);
|
|
|
|
resolve({ cost, includesData });
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!uri) {
|
|
|
|
return reject(new Error(`URI required.`));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (costInfoCache[uri] && costInfoCache[uri].cost) {
|
|
|
|
return resolve(costInfoCache[uri]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCost(uri, size) {
|
|
|
|
lbry
|
|
|
|
.stream_cost_estimate({ uri, ...(size !== null ? { size } : {}) })
|
|
|
|
.then(cost => {
|
|
|
|
cacheAndResolve(cost, size !== null);
|
|
|
|
}, reject);
|
|
|
|
}
|
|
|
|
|
|
|
|
const uriObj = lbryuri.parse(uri);
|
|
|
|
const name = uriObj.path || uriObj.name;
|
|
|
|
|
|
|
|
lighthouse.get_size_for_name(name).then(size => {
|
|
|
|
if (size) {
|
|
|
|
getCost(name, size);
|
|
|
|
} else {
|
|
|
|
getCost(name, null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return lbry.costPromiseCache[uri];
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-12-09 07:54:18 +01:00
|
|
|
|
2017-03-15 04:05:07 +01:00
|
|
|
/**
|
|
|
|
* Publishes a file. The optional fileListedCallback is called when the file becomes available in
|
|
|
|
* lbry.file_list() during the publish process.
|
|
|
|
*
|
|
|
|
* This currently includes a work-around to cache the file in local storage so that the pending
|
|
|
|
* publish can appear in the UI immediately.
|
|
|
|
*/
|
2017-06-15 02:21:31 +02:00
|
|
|
lbry.publishDeprecated = function(
|
2017-06-15 06:26:26 +02:00
|
|
|
params,
|
|
|
|
fileListedCallback,
|
|
|
|
publishedCallback,
|
|
|
|
errorCallback
|
2017-06-06 06:21:55 +02:00
|
|
|
) {
|
2017-06-15 02:21:31 +02:00
|
|
|
lbry.publish(params).then(
|
2017-06-15 06:26:26 +02:00
|
|
|
result => {
|
2017-07-10 16:44:49 +02:00
|
|
|
if (returnPendingTimeout) clearTimeout(returnPendingTimeout);
|
2017-06-15 06:26:26 +02:00
|
|
|
publishedCallback(result);
|
|
|
|
},
|
|
|
|
err => {
|
2017-07-10 16:44:49 +02:00
|
|
|
if (returnPendingTimeout) clearTimeout(returnPendingTimeout);
|
2017-06-15 06:26:26 +02:00
|
|
|
errorCallback(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Give a short grace period in case publish() returns right away or (more likely) gives an error
|
2017-07-10 16:44:49 +02:00
|
|
|
const returnPendingTimeout = setTimeout(
|
|
|
|
() => {
|
|
|
|
if (publishedCallback) {
|
|
|
|
savePendingPublish({
|
|
|
|
name: params.name,
|
|
|
|
channel_name: params.channel_name,
|
|
|
|
});
|
|
|
|
publishedCallback(true);
|
|
|
|
}
|
2017-06-15 06:26:26 +02:00
|
|
|
|
2017-07-10 16:44:49 +02:00
|
|
|
if (fileListedCallback) {
|
|
|
|
const { name, channel_name } = params;
|
|
|
|
savePendingPublish({
|
|
|
|
name: params.name,
|
|
|
|
channel_name: params.channel_name,
|
|
|
|
});
|
|
|
|
fileListedCallback(true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
2000,
|
|
|
|
{ once: true }
|
|
|
|
);
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-04-12 12:30:25 +02:00
|
|
|
|
2016-08-22 21:07:41 +02:00
|
|
|
lbry.getClientSettings = function() {
|
2017-06-15 06:26:26 +02:00
|
|
|
var outSettings = {};
|
|
|
|
for (let setting of Object.keys(lbry.defaultClientSettings)) {
|
|
|
|
var localStorageVal = localStorage.getItem("setting_" + setting);
|
|
|
|
outSettings[setting] = localStorageVal === null
|
|
|
|
? lbry.defaultClientSettings[setting]
|
|
|
|
: JSON.parse(localStorageVal);
|
|
|
|
}
|
|
|
|
return outSettings;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-08-22 21:07:41 +02:00
|
|
|
|
|
|
|
lbry.getClientSetting = function(setting) {
|
2017-06-15 06:26:26 +02:00
|
|
|
var localStorageVal = localStorage.getItem("setting_" + setting);
|
|
|
|
if (setting == "showDeveloperMenu") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return localStorageVal === null
|
|
|
|
? lbry.defaultClientSettings[setting]
|
|
|
|
: JSON.parse(localStorageVal);
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-08-22 21:07:41 +02:00
|
|
|
|
|
|
|
lbry.setClientSettings = function(settings) {
|
2017-06-15 06:26:26 +02:00
|
|
|
for (let setting of Object.keys(settings)) {
|
|
|
|
lbry.setClientSetting(setting, settings[setting]);
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-08-22 21:07:41 +02:00
|
|
|
|
|
|
|
lbry.setClientSetting = function(setting, value) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return localStorage.setItem("setting_" + setting, JSON.stringify(value));
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-08-22 21:07:41 +02:00
|
|
|
|
2016-09-01 09:28:07 +02:00
|
|
|
lbry.formatName = function(name) {
|
2017-06-15 06:26:26 +02:00
|
|
|
// Converts LBRY name to standard format (all lower case, no special characters, spaces replaced by dashes)
|
|
|
|
name = name.replace("/s+/g", "-");
|
2017-07-22 11:10:37 +02:00
|
|
|
name = name.toLowerCase().replace(lbryuri.REGEXP_INVALID_URI, "");
|
2017-06-15 06:26:26 +02:00
|
|
|
return name;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-03-14 23:05:24 +01:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
lbry.imagePath = function(file) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return "img/" + file;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-04-20 10:46:36 +02:00
|
|
|
|
2016-09-02 10:48:01 +02:00
|
|
|
lbry.getMediaType = function(contentType, fileName) {
|
2017-06-15 06:26:26 +02:00
|
|
|
if (contentType) {
|
|
|
|
return /^[^/]+/.exec(contentType)[0];
|
|
|
|
} else if (fileName) {
|
|
|
|
var dotIndex = fileName.lastIndexOf(".");
|
|
|
|
if (dotIndex == -1) {
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
var ext = fileName.substr(dotIndex + 1);
|
2017-06-30 22:33:49 +02:00
|
|
|
if (/^mp4|m4v|webm|flv|f4v|ogv$/i.test(ext)) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return "video";
|
2017-06-26 16:00:24 +02:00
|
|
|
} else if (/^mp3|m4a|aac|wav|flac|ogg|opus$/i.test(ext)) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return "audio";
|
2017-06-26 16:00:24 +02:00
|
|
|
} else if (
|
|
|
|
/^html|htm|xml|pdf|odf|doc|docx|md|markdown|txt|epub|org$/i.test(ext)
|
|
|
|
) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return "document";
|
|
|
|
} else {
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return "unknown";
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-05-16 10:16:40 +02:00
|
|
|
|
2017-03-26 20:30:18 +02:00
|
|
|
lbry._subscribeIdCount = 0;
|
|
|
|
lbry._balanceSubscribeCallbacks = {};
|
|
|
|
lbry._balanceSubscribeInterval = 5000;
|
2017-01-13 03:03:34 +01:00
|
|
|
|
2017-04-21 02:31:52 +02:00
|
|
|
lbry._balanceUpdateInterval = null;
|
2017-03-26 20:30:18 +02:00
|
|
|
lbry._updateBalanceSubscribers = function() {
|
2017-06-15 06:26:26 +02:00
|
|
|
lbry.wallet_balance().then(function(balance) {
|
|
|
|
for (let callback of Object.values(lbry._balanceSubscribeCallbacks)) {
|
|
|
|
callback(balance);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (
|
|
|
|
!lbry._balanceUpdateInterval &&
|
|
|
|
Object.keys(lbry._balanceSubscribeCallbacks).length
|
|
|
|
) {
|
|
|
|
lbry._balanceUpdateInterval = setInterval(() => {
|
|
|
|
lbry._updateBalanceSubscribers();
|
|
|
|
}, lbry._balanceSubscribeInterval);
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-03-26 20:30:18 +02:00
|
|
|
|
|
|
|
lbry.balanceSubscribe = function(callback) {
|
2017-06-15 06:26:26 +02:00
|
|
|
const subscribeId = ++lbry._subscribeIdCount;
|
|
|
|
lbry._balanceSubscribeCallbacks[subscribeId] = callback;
|
|
|
|
lbry._updateBalanceSubscribers();
|
|
|
|
return subscribeId;
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-03-26 20:30:18 +02:00
|
|
|
|
|
|
|
lbry.balanceUnsubscribe = function(subscribeId) {
|
2017-06-15 06:26:26 +02:00
|
|
|
delete lbry._balanceSubscribeCallbacks[subscribeId];
|
|
|
|
if (
|
|
|
|
lbry._balanceUpdateInterval &&
|
|
|
|
!Object.keys(lbry._balanceSubscribeCallbacks).length
|
|
|
|
) {
|
|
|
|
clearInterval(lbry._balanceUpdateInterval);
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2016-05-16 10:16:40 +02:00
|
|
|
|
2017-03-08 09:56:34 +01:00
|
|
|
lbry.showMenuIfNeeded = function() {
|
2017-06-15 06:26:26 +02:00
|
|
|
const showingMenu = sessionStorage.getItem("menuShown") || null;
|
|
|
|
const chosenMenu = lbry.getClientSetting("showDeveloperMenu")
|
|
|
|
? "developer"
|
|
|
|
: "normal";
|
|
|
|
if (chosenMenu != showingMenu) {
|
|
|
|
menu.showMenubar(chosenMenu == "developer");
|
|
|
|
}
|
|
|
|
sessionStorage.setItem("menuShown", chosenMenu);
|
2017-03-08 09:56:34 +01:00
|
|
|
};
|
|
|
|
|
2017-05-25 20:29:28 +02:00
|
|
|
lbry.getAppVersionInfo = function() {
|
2017-06-15 06:26:26 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
ipcRenderer.once("version-info-received", (event, versionInfo) => {
|
|
|
|
resolve(versionInfo);
|
|
|
|
});
|
|
|
|
ipcRenderer.send("version-info-requested");
|
|
|
|
});
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-04-27 08:52:14 +02:00
|
|
|
|
2017-03-15 04:05:07 +01:00
|
|
|
/**
|
|
|
|
* Wrappers for API methods to simulate missing or future behavior. Unlike the old-style stubs,
|
|
|
|
* these are designed to be transparent wrappers around the corresponding API methods.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns results from the file_list API method, plus dummy entries for pending publishes.
|
|
|
|
* (If a real publish with the same name is found, the pending publish will be ignored and removed.)
|
|
|
|
*/
|
2017-06-06 06:21:55 +02:00
|
|
|
lbry.file_list = function(params = {}) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const { name, channel_name, outpoint } = params;
|
2017-03-15 04:05:07 +01:00
|
|
|
|
2017-06-15 06:26:26 +02:00
|
|
|
/**
|
2017-03-15 04:05:07 +01:00
|
|
|
* If we're searching by outpoint, check first to see if there's a matching pending publish.
|
|
|
|
* Pending publishes use their own faux outpoints that are always unique, so we don't need
|
|
|
|
* to check if there's a real file.
|
|
|
|
*/
|
2017-06-15 06:26:26 +02:00
|
|
|
if (outpoint) {
|
|
|
|
const pendingPublish = getPendingPublish({ outpoint });
|
|
|
|
if (pendingPublish) {
|
|
|
|
resolve([pendingPublishToDummyFileInfo(pendingPublish)]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-06-20 14:08:52 +02:00
|
|
|
|
2017-06-15 02:21:31 +02:00
|
|
|
apiCall(
|
2017-06-15 06:26:26 +02:00
|
|
|
"file_list",
|
|
|
|
params,
|
|
|
|
fileInfos => {
|
|
|
|
removePendingPublishIfNeeded({ name, channel_name, outpoint });
|
|
|
|
|
|
|
|
const dummyFileInfos = lbry
|
|
|
|
.getPendingPublishes()
|
|
|
|
.map(pendingPublishToDummyFileInfo);
|
|
|
|
resolve([...fileInfos, ...dummyFileInfos]);
|
|
|
|
},
|
|
|
|
reject
|
|
|
|
);
|
|
|
|
});
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-03-15 04:05:07 +01:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
lbry.claim_list_mine = function(params = {}) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-15 02:21:31 +02:00
|
|
|
apiCall(
|
2017-06-15 06:26:26 +02:00
|
|
|
"claim_list_mine",
|
|
|
|
params,
|
|
|
|
claims => {
|
|
|
|
for (let { name, channel_name, txid, nout } of claims) {
|
|
|
|
removePendingPublishIfNeeded({
|
|
|
|
name,
|
|
|
|
channel_name,
|
|
|
|
outpoint: txid + ":" + nout,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const dummyClaims = lbry
|
|
|
|
.getPendingPublishes()
|
|
|
|
.map(pendingPublishToDummyClaim);
|
|
|
|
resolve([...claims, ...dummyClaims]);
|
|
|
|
},
|
|
|
|
reject
|
|
|
|
);
|
|
|
|
});
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-03-15 04:05:07 +01:00
|
|
|
|
2017-06-29 09:44:34 +02:00
|
|
|
lbry.claim_abandon = function(params = {}) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
apiCall("claim_abandon", params, resolve, reject);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
lbry._resolveXhrs = {};
|
|
|
|
lbry.resolve = function(params = {}) {
|
2017-06-15 06:26:26 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (!params.uri) {
|
|
|
|
throw __("Resolve has hacked cache on top of it that requires a URI");
|
|
|
|
}
|
2017-06-15 15:36:25 +02:00
|
|
|
lbry._resolveXhrs[params.uri] = apiCall(
|
2017-06-15 06:26:26 +02:00
|
|
|
"resolve",
|
|
|
|
params,
|
|
|
|
function(data) {
|
2017-06-15 15:36:25 +02:00
|
|
|
resolve(data && data[params.uri] ? data[params.uri] : {});
|
2017-06-15 06:26:26 +02:00
|
|
|
},
|
|
|
|
reject
|
|
|
|
);
|
|
|
|
});
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-04-13 20:52:26 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
lbry.cancelResolve = function(params = {}) {
|
2017-06-15 06:26:26 +02:00
|
|
|
const xhr = lbry._resolveXhrs[params.uri];
|
|
|
|
if (xhr && xhr.readyState > 0 && xhr.readyState < 4) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-05-15 18:34:33 +02:00
|
|
|
|
2017-03-08 07:23:07 +01:00
|
|
|
lbry = new Proxy(lbry, {
|
2017-06-15 06:26:26 +02:00
|
|
|
get: function(target, name) {
|
|
|
|
if (name in target) {
|
|
|
|
return target[name];
|
|
|
|
}
|
|
|
|
|
|
|
|
return function(params = {}) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-06-15 02:21:31 +02:00
|
|
|
apiCall(name, params, resolve, reject);
|
2017-06-15 06:26:26 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
},
|
2017-03-08 07:23:07 +01:00
|
|
|
});
|
|
|
|
|
2017-01-17 11:06:39 +01:00
|
|
|
export default lbry;
|