aboutsummaryrefslogtreecommitdiff
path: root/src/js/url-generators.js
blob: 239ce53e90881a298d653b14f5e1e083abd9c911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Arching Kaos URL Generators
//
// Kaotisk Hund - 2024
//
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
//

/*
 * URL generators
 *
 * This file contains functions that generate URL
 * based on the settings.
 *
 * Apparently, we need `arching-kaos-web-ui-settings` to be loaded first
 *
 */
import { getSettings } from "./arching-kaos-web-ui-settings.js";

const settings = getSettings();

export function getStellarConfigurationVariableURL(stellarAddress){
    return settings.stellar.horizon.list[settings.stellar.horizon.active]+
        'accounts/'+
        stellarAddress+
        '/data/'+
        settings.stellar.variableNames.list[settings.stellar.variableNames.active];
}

export function getIPNSURL(ipnsKey){
    return settings.ipfs.gateway.list[settings.ipfs.gateway.active]+'ipns/'+ipnsKey;
}

export function getIPFSURL(ipfsHash){
    return settings.ipfs.gateway.list[settings.ipfs.gateway.active]+'ipfs/'+ipfsHash;
}

export function getHoldersOfActiveAssetURL(){
    return settings.stellar.horizon.list[settings.stellar.horizon.active]+
        'accounts?asset='+
        settings.stellar.asset.list[settings.stellar.asset.active].code+
        ':'+
        settings.stellar.asset.list[settings.stellar.asset.active].issuer+
        '&limit=200';
}

export function getTrustlinesURL(code=null, issuer=null){
    var code = (code === null)? settings.stellar.asset.list[settings.stellar.asset.active].code : code;
    var issuer = (issuer === null) ? settings.stellar.asset.list[settings.stellar.asset.active].issuer : issuer;
    return settings.stellar.horizon.list[settings.stellar.horizon.active]+
        'assets?asset_code='+code+
        '&asset_issuer='+issuer;
}

// vim: tabstop=4 shiftwidth=4 expandtab softtabstop=4
// @license-end