2020-02-03 23:37:18 +00:00
|
|
|
import logging
|
|
|
|
from google.cloud import pubsub_v1
|
|
|
|
|
|
|
|
publisher = pubsub_v1.PublisherClient()
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def update_tag(username, tag_id):
|
2020-05-08 15:19:27 +01:00
|
|
|
"""Queue serverless tag update for user"""
|
2020-02-03 23:37:18 +00:00
|
|
|
logger.info(f'queuing {tag_id} update for {username}')
|
2020-05-08 15:19:27 +01:00
|
|
|
|
2020-06-30 16:38:06 +01:00
|
|
|
if username is None or tag_id is None:
|
|
|
|
logger.error(f'less than two args provided, {username} / {tag_id}')
|
2020-05-08 15:19:27 +01:00
|
|
|
return
|
|
|
|
|
2020-06-30 16:38:06 +01:00
|
|
|
if not isinstance(username, str) or not isinstance(tag_id, str):
|
|
|
|
logger.error(f'less than two strings provided, {type(username)} / {type(tag_id)}')
|
2020-05-08 15:19:27 +01:00
|
|
|
return
|
|
|
|
|
2020-02-03 23:37:18 +00:00
|
|
|
publisher.publish('projects/sarsooxyz/topics/update_tag', b'', tag_id=tag_id, username=username)
|
2020-06-30 16:38:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
def run_user_playlist_function(username, playlist_name):
|
|
|
|
"""Queue serverless playlist update for user"""
|
|
|
|
logger.info(f'queuing {playlist_name} update for {username}')
|
|
|
|
|
|
|
|
if username is None or playlist_name is None:
|
|
|
|
logger.error(f'less than two args provided, {username} / {playlist_name}')
|
|
|
|
return
|
|
|
|
|
|
|
|
if not isinstance(username, str) or not isinstance(playlist_name, str):
|
|
|
|
logger.error(f'less than two strings provided, {type(username)} / {type(playlist_name)}')
|
|
|
|
return
|
|
|
|
|
|
|
|
publisher.publish('projects/sarsooxyz/topics/run_user_playlist', b'', name=playlist_name, username=username)
|