mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
7eaa3b1a2b
Injects environment variables into the app through webpack, rather than script snippets in index.html. As part of this: * Updated server.js to use node’s path package to resolve file paths * Ensure that all url environment variables passed to the app don’t have a trailing slash, allowing for cleaner template urls **Note**: There are still a number of constants that should be taken out of the app and put into environment variables.
36 lines
1.9 KiB
JavaScript
36 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
import walletConstants from './wallet_application_constants';
|
|
|
|
// gets subdomain as a parameter
|
|
function getWalletApiUrls(subdomain) {
|
|
if (subdomain === 'cyland') {
|
|
return {
|
|
'pieces_list': walletConstants.walletApiEndpoint + '/' + subdomain + '/pieces/',
|
|
'piece': walletConstants.walletApiEndpoint + '/' + subdomain + '/pieces/${piece_id}/',
|
|
'piece_extradata': walletConstants.walletApiEndpoint + '/' + subdomain + '/pieces/${piece_id}/extradata/',
|
|
'user': walletConstants.walletApiEndpoint + '/' + subdomain + '/users/'
|
|
};
|
|
} else if (subdomain === 'ikonotv') {
|
|
return {
|
|
'pieces_list': walletConstants.walletApiEndpoint + '/' + subdomain + '/pieces/',
|
|
'piece': walletConstants.walletApiEndpoint + '/' + subdomain + '/pieces/${piece_id}/',
|
|
'user': walletConstants.walletApiEndpoint + '/' + subdomain + '/users/'
|
|
};
|
|
} else if (subdomain === 'lumenus' || subdomain === '23vivi' ||
|
|
subdomain === 'polline' || subdomain === 'artcity' ||
|
|
subdomain === 'demo' || subdomain === 'liquidgallery') {
|
|
return {
|
|
'editions_list': walletConstants.walletApiEndpoint + '/markets/' + subdomain + '/pieces/${piece_id}/editions/',
|
|
'edition': walletConstants.walletApiEndpoint + '/markets/' + subdomain + '/editions/${bitcoin_id}/',
|
|
'pieces_list': walletConstants.walletApiEndpoint + '/markets/' + subdomain + '/pieces/',
|
|
'piece': walletConstants.walletApiEndpoint + '/markets/' + subdomain + '/pieces/${piece_id}/',
|
|
'piece_extradata': walletConstants.walletApiEndpoint + '/markets/' + subdomain + '/pieces/${piece_id}/extradata/',
|
|
'user': walletConstants.walletApiEndpoint + '/markets/' + subdomain + '/users/'
|
|
};
|
|
}
|
|
return {};
|
|
}
|
|
|
|
export default getWalletApiUrls;
|