2019-04-23 19:22:14 +02:00
|
|
|
// @flow
|
|
|
|
declare type StatusResponse = {
|
|
|
|
blob_manager: {
|
|
|
|
finished_blobs: number,
|
|
|
|
},
|
|
|
|
blockchain_headers: {
|
|
|
|
download_progress: number,
|
|
|
|
downloading_headers: boolean,
|
|
|
|
},
|
|
|
|
connection_status: {
|
|
|
|
code: string,
|
|
|
|
message: string,
|
|
|
|
},
|
|
|
|
dht: {
|
|
|
|
node_id: string,
|
|
|
|
peers_in_routing_table: number,
|
|
|
|
},
|
|
|
|
hash_announcer: {
|
|
|
|
announce_queue_size: number,
|
|
|
|
},
|
|
|
|
installation_id: string,
|
|
|
|
is_running: boolean,
|
|
|
|
skipped_components: Array<string>,
|
|
|
|
startup_status: {
|
|
|
|
blob_manager: boolean,
|
|
|
|
blockchain_headers: boolean,
|
|
|
|
database: boolean,
|
|
|
|
dht: boolean,
|
|
|
|
exchange_rate_manager: boolean,
|
|
|
|
hash_announcer: boolean,
|
|
|
|
peer_protocol_server: boolean,
|
|
|
|
stream_manager: boolean,
|
|
|
|
upnp: boolean,
|
|
|
|
wallet: boolean,
|
|
|
|
},
|
|
|
|
stream_manager: {
|
|
|
|
managed_files: number,
|
|
|
|
},
|
|
|
|
upnp: {
|
|
|
|
aioupnp_version: string,
|
|
|
|
dht_redirect_set: boolean,
|
|
|
|
external_ip: string,
|
|
|
|
gateway: string,
|
|
|
|
peer_redirect_set: boolean,
|
|
|
|
redirects: {},
|
|
|
|
},
|
|
|
|
wallet: ?{
|
|
|
|
best_blockhash: string,
|
|
|
|
blocks: number,
|
|
|
|
blocks_behind: number,
|
|
|
|
is_encrypted: boolean,
|
|
|
|
is_locked: boolean,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
declare type VersionResponse = {
|
|
|
|
build: string,
|
|
|
|
lbrynet_version: string,
|
|
|
|
os_release: string,
|
|
|
|
os_system: string,
|
|
|
|
platform: string,
|
|
|
|
processor: string,
|
|
|
|
python_version: string,
|
|
|
|
};
|
|
|
|
|
2019-08-13 20:40:55 +02:00
|
|
|
declare type BalanceResponse = {
|
|
|
|
available: string,
|
|
|
|
reserved: string,
|
|
|
|
reserved_subtotals: ?{
|
|
|
|
claims: string,
|
|
|
|
supports: string,
|
|
|
|
tips: string,
|
|
|
|
},
|
|
|
|
total: string,
|
|
|
|
};
|
|
|
|
|
2019-04-23 19:22:14 +02:00
|
|
|
declare type ResolveResponse = {
|
|
|
|
// Keys are the url(s) passed to resolve
|
2019-08-20 22:00:26 +02:00
|
|
|
[string]: { error?: {}, stream?: StreamClaim, channel?: ChannelClaim, claimsInChannel?: number },
|
2019-04-23 19:22:14 +02:00
|
|
|
};
|
|
|
|
|
2019-08-02 08:21:28 +02:00
|
|
|
declare type GetResponse = FileListItem & { error?: string };
|
2019-04-23 19:22:14 +02:00
|
|
|
|
|
|
|
declare type GenericTxResponse = {
|
|
|
|
height: number,
|
|
|
|
hex: string,
|
|
|
|
inputs: Array<{}>,
|
|
|
|
outputs: Array<{}>,
|
|
|
|
total_fee: string,
|
|
|
|
total_input: string,
|
|
|
|
total_output: string,
|
|
|
|
txid: string,
|
|
|
|
};
|
|
|
|
|
|
|
|
declare type PublishResponse = GenericTxResponse & {
|
|
|
|
// Only first value in outputs is a claim
|
|
|
|
// That's the only value we care about
|
2019-06-06 23:37:36 +02:00
|
|
|
outputs: Array<Claim>,
|
2019-04-23 19:22:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
declare type ClaimSearchResponse = {
|
2019-06-06 23:37:36 +02:00
|
|
|
items: Array<Claim>,
|
2019-04-23 19:22:14 +02:00
|
|
|
page: number,
|
|
|
|
page_size: number,
|
2019-06-06 23:37:36 +02:00
|
|
|
total_items: number,
|
|
|
|
total_pages: number,
|
2019-04-23 19:22:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
declare type ClaimListResponse = {
|
2019-06-06 23:37:36 +02:00
|
|
|
claims: Array<ChannelClaim | Claim>,
|
2019-04-23 19:22:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
declare type ChannelCreateResponse = GenericTxResponse & {
|
|
|
|
outputs: Array<ChannelClaim>,
|
|
|
|
};
|
|
|
|
|
2019-07-02 19:47:42 +02:00
|
|
|
declare type ChannelUpdateResponse = GenericTxResponse & {
|
|
|
|
outputs: Array<ChannelClaim>,
|
|
|
|
};
|
|
|
|
|
2019-06-12 03:14:37 +02:00
|
|
|
declare type CommentCreateResponse = Comment;
|
|
|
|
declare type CommentListResponse = Array<Comment>;
|
|
|
|
|
2019-04-23 19:22:14 +02:00
|
|
|
declare type ChannelListResponse = Array<ChannelClaim>;
|
|
|
|
|
|
|
|
declare type FileListResponse = Array<FileListItem>;
|
|
|
|
|
|
|
|
declare type TxListResponse = Array<Transaction>;
|
|
|
|
|
|
|
|
declare type BlobListResponse = Array<string>;
|
|
|
|
|
|
|
|
declare type AccountListResponse = Array<{
|
|
|
|
id: string,
|
|
|
|
is_default: string,
|
|
|
|
ledger: string,
|
|
|
|
name: string,
|
|
|
|
seed: string,
|
|
|
|
encrypted: string,
|
|
|
|
private_key: string,
|
|
|
|
public_key: string,
|
|
|
|
address_generator: string,
|
|
|
|
modified_on: string,
|
|
|
|
}>;
|
|
|
|
|
2019-04-24 08:10:55 +02:00
|
|
|
declare type SyncApplyResponse = {
|
|
|
|
hash: string,
|
|
|
|
data: string,
|
|
|
|
};
|
|
|
|
|
2019-05-15 11:58:36 +02:00
|
|
|
declare type AccountSetResponse = Array<{
|
|
|
|
id: string,
|
|
|
|
is_default: string,
|
|
|
|
ledger: string,
|
|
|
|
name: string,
|
|
|
|
seed: string,
|
|
|
|
encrypted: string,
|
|
|
|
private_key: string,
|
|
|
|
public_key: string,
|
|
|
|
address_generator: string,
|
|
|
|
modified_on: string,
|
|
|
|
}>;
|
|
|
|
|
2019-05-10 07:02:03 +02:00
|
|
|
declare type SupportAbandonResponse = GenericTxResponse;
|
|
|
|
|
2019-04-23 19:22:14 +02:00
|
|
|
//
|
|
|
|
// Types used in the generic Lbry object that is exported
|
|
|
|
//
|
|
|
|
declare type LbryTypes = {
|
|
|
|
isConnected: boolean,
|
|
|
|
connectPromise: ?Promise<any>,
|
|
|
|
connect: () => void,
|
|
|
|
daemonConnectionString: string,
|
2019-07-02 19:47:42 +02:00
|
|
|
apiRequestHeaders: { [key: string]: string },
|
2019-04-23 19:22:14 +02:00
|
|
|
setDaemonConnectionString: string => void,
|
2019-05-30 17:24:46 +02:00
|
|
|
setApiHeader: (string, string) => void,
|
2019-07-02 19:47:42 +02:00
|
|
|
unsetApiHeader: string => void,
|
2019-04-23 19:22:14 +02:00
|
|
|
overrides: { [string]: ?Function },
|
|
|
|
setOverride: (string, Function) => void,
|
|
|
|
getMediaType: (string, ?string) => string,
|
|
|
|
|
|
|
|
// Lbry Methods
|
|
|
|
stop: () => Promise<string>,
|
|
|
|
status: () => Promise<StatusResponse>,
|
|
|
|
version: () => Promise<VersionResponse>,
|
|
|
|
resolve: (params: {}) => Promise<ResolveResponse>,
|
|
|
|
get: (params: {}) => Promise<GetResponse>,
|
|
|
|
publish: (params: {}) => Promise<PublishResponse>,
|
|
|
|
|
|
|
|
claim_search: (params: {}) => Promise<ClaimSearchResponse>,
|
|
|
|
claim_list: (params?: {}) => Promise<ClaimListResponse>,
|
|
|
|
channel_create: (params: {}) => Promise<ChannelCreateResponse>,
|
2019-07-02 19:47:42 +02:00
|
|
|
channel_update: (params: {}) => Promise<ChannelUpdateResponse>,
|
2019-09-12 21:06:49 +02:00
|
|
|
channel_import: (params: {}) => Promise<string>,
|
2019-04-23 19:22:14 +02:00
|
|
|
channel_list: () => Promise<ChannelListResponse>,
|
|
|
|
stream_abandon: (params: {}) => Promise<GenericTxResponse>,
|
|
|
|
channel_abandon: (params: {}) => Promise<GenericTxResponse>,
|
|
|
|
support_create: (params: {}) => Promise<GenericTxResponse>,
|
|
|
|
|
|
|
|
// File fetching and manipulation
|
|
|
|
file_list: (params: {}) => Promise<FileListResponse>,
|
|
|
|
file_delete: (params: {}) => Promise<boolean>,
|
|
|
|
blob_delete: (params: {}) => Promise<string>,
|
|
|
|
blob_list: (params: {}) => Promise<BlobListResponse>,
|
|
|
|
|
2019-09-30 23:52:41 +02:00
|
|
|
// Preferences
|
|
|
|
preference_get: (params: {}) => Promise<any>,
|
|
|
|
preference_set: (params: {}) => Promise<any>,
|
|
|
|
|
2019-06-12 03:14:37 +02:00
|
|
|
// Commenting
|
|
|
|
comment_list: (params: {}) => Promise<CommentListResponse>,
|
|
|
|
comment_create: (params: {}) => Promise<CommentCreateResponse>,
|
2019-04-23 19:22:14 +02:00
|
|
|
// Wallet utilities
|
2019-08-13 20:40:55 +02:00
|
|
|
account_balance: (params: {}) => Promise<BalanceResponse>,
|
2019-04-23 19:22:14 +02:00
|
|
|
account_decrypt: (prams: {}) => Promise<boolean>,
|
|
|
|
account_encrypt: (params: {}) => Promise<boolean>,
|
|
|
|
account_unlock: (params: {}) => Promise<boolean>,
|
|
|
|
account_list: (params: {}) => Promise<AccountListResponse>,
|
|
|
|
account_send: (params: {}) => Promise<GenericTxResponse>,
|
2019-05-15 11:58:36 +02:00
|
|
|
account_set: (params: {}) => Promise<AccountSetResponse>,
|
2019-04-23 19:22:14 +02:00
|
|
|
address_is_mine: (params: {}) => Promise<boolean>,
|
|
|
|
address_unused: (params: {}) => Promise<string>, // New address
|
2019-09-17 19:48:41 +02:00
|
|
|
address_list: (params: {}) => Promise<string>,
|
2019-04-23 19:22:14 +02:00
|
|
|
transaction_list: (params: {}) => Promise<TxListResponse>,
|
2019-05-10 07:02:03 +02:00
|
|
|
support_abandon: (params: {}) => Promise<SupportAbandonResponse>,
|
2019-04-24 08:10:55 +02:00
|
|
|
|
|
|
|
// Sync
|
|
|
|
sync_hash: (params: {}) => Promise<string>,
|
|
|
|
sync_apply: (params: {}) => Promise<SyncApplyResponse>,
|
|
|
|
|
2019-04-23 19:22:14 +02:00
|
|
|
// The app shouldn't need to do this
|
|
|
|
utxo_release: () => Promise<any>,
|
|
|
|
};
|