def profile_preview_screenshot(self, user_id): user = User.objects.get(id=user_id) profile_url = profile_url_for(user.public_address) image_uuid = uuid4() image_path = '{}/profile_preview/{}-{}.png'.format(settings.ENVIRONMENT, user.public_address, image_uuid) image_url = 'https://assets.bounties.network/' + image_path user.page_preview = image_url user.save() sns_publish('screenshot', {'url': profile_url, 'key': image_path})
def bounty_preview_screenshot(self, platform, bounty_id, contract_version): if (platform == 'bounties-network' or platform == 'gitcoin') and settings.ENVIRONMENT == 'rinkeby': return if platform not in settings.PLATFORM_MAPPING and platform != 'gitcoin': return bounty = Bounty.objects.get(bounty_id=bounty_id, contract_version=contract_version) bounty_url = bounty_url_for(bounty_id, platform) image_uuid = uuid4() image_path = '{}/bounty_preview/{}-{}.png'.format(settings.ENVIRONMENT, str(bounty_id), image_uuid) image_url = 'https://assets.bounties.network/' + image_path sns_publish('screenshot', {'url': bounty_url, 'key': image_path}) bounty.image_preview = image_url bounty.save()
def publish_new_sitemap(self, platform): if (platform == 'bounties-network' or platform == 'gitcoin') and settings.ENVIRONMENT == 'rinkeby': return if platform not in settings.PLATFORM_MAPPING and platform != 'gitcoin': return url = base_url_for(platform) domain = url.replace('https://', '') base_api_url = 'https://api.bounties.network/' if settings.ENVIRONMENT == 'rinkeby': base_api_url = 'https://rinkeby.api.bounties.network/' sitemap_url = '{}sitemap.xml?domain={}'.format(base_api_url, domain) if url != 'https://explorer.bounties.network': sitemap_url = '{}&platform__in={}'.format(sitemap_url, platform) else: sitemap_url = '{}&platform__in={}'.format(sitemap_url, 'gitcoin,bounties-network,sf,prague') sns_publish('sitemap', {'url': sitemap_url, 'bucket': domain}) sns_publish('ssrcache', {'url': url + '/explorer'}) sns_publish('ssrcache', {'url': url + '/'}) sns_publish('ssrcache', {'url': url})
def clear_cache(self, platform, bounty_id): bounty_url = bounty_url_for(bounty_id, platform) sns_publish('ssrcache', {'url': bounty_url})