Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import querystring from 'querystring';
import config from '@automattic/calypso-config';
const getWordPressOptions = ( environmentUrlSuffix ) => ( {
gcm_sender_id: '87234302238',
icons: [
{
src: '/calypso/images/manifest/icon-144x144.png' + environmentUrlSuffix,
sizes: '144x144',
type: 'image/png',
},
{
src: '/calypso/images/manifest/icon-192x192.png' + environmentUrlSuffix,
sizes: '192x192',
type: 'image/png',
},
{
src: '/calypso/images/manifest/icon-512x512.png' + environmentUrlSuffix,
sizes: '512x512',
type: 'image/png',
},
],
related_applications: [
{
platform: 'play',
url: 'https://play.google.com/store/apps/details?id=org.wordpress.android',
},
{
platform: 'itunes',
url: 'https://itunes.apple.com/app/wordpress/id335703880',
},
],
} );
const getJetpackCloudOptions = ( environmentUrlSuffix ) => ( {
icons: [
{
src: '/calypso/images/manifest/jetpack-icon-144x144.png' + environmentUrlSuffix,
sizes: '144x144',
type: 'image/png',
},
{
src: '/calypso/images/manifest/jetpack-icon-192x192.png' + environmentUrlSuffix,
sizes: '192x192',
type: 'image/png',
},
{
src: '/calypso/images/manifest/jetpack-icon-512x512.png' + environmentUrlSuffix,
sizes: '512x512',
type: 'image/png',
},
],
} );
/**
* TODO:
* - l10n
* @returns {Object} An express app that returns /manifest.json
*/
const buildManifest = ( { branchName } ) => {
// These options exist to make sure that manifest-linked URLs load correctly even if
// cookies haven't been set yet in the calypso.live environment.
// If we find a way to make calypso.live set its cookies before the manifest is loaded,
// then this can be safely removed.
const environmentUrlOptions = { source: 'pwa' };
if ( branchName && 'trunk' !== branchName ) {
environmentUrlOptions.branch = branchName;
}
const environmentUrlSuffix = '?' + querystring.stringify( environmentUrlOptions );
return {
display: 'standalone',
name: config( 'site_name' ),
short_name: config( 'site_name' ),
start_url: '/' + environmentUrlSuffix,
background_color: config( 'theme_color' ),
theme_color: config( 'theme_color' ),
...( config.isEnabled( 'jetpack-cloud' )
? getJetpackCloudOptions( environmentUrlSuffix )
: getWordPressOptions( environmentUrlSuffix ) ),
};
};
export default ( request, response ) => {
response.json( buildManifest( { branchName: request.query.branch } ) );
};