-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub_utils.py
executable file
·94 lines (61 loc) · 2.56 KB
/
pubsub_utils.py
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env python
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Utility module for this Pub/Sub sample."""
import os
import threading
from google.appengine.api import app_identity
from google.appengine.api import memcache
from google.appengine.api import modules
from googleapiclient import discovery
import httplib2
from oauth2client.client import GoogleCredentials
import constants
APPLICATION_NAME = "gcp-next2016-pubsub-demo/1.0"
PUBSUB_SCOPES = ["https://www.googleapis.com/auth/pubsub"]
client_store = threading.local()
def is_devserver():
"""Check if the app is running on devserver or not."""
return os.getenv('SERVER_SOFTWARE', '').startswith('Dev')
def get_client():
"""Creates Pub/Sub client and returns it."""
if not hasattr(client_store, 'client'):
client_store.client = get_client_from_credentials(
GoogleCredentials.get_application_default())
return client_store.client
def get_client_from_credentials(credentials):
"""Creates Pub/Sub client from a given credentials and returns it."""
if credentials.create_scoped_required():
credentials = credentials.create_scoped(PUBSUB_SCOPES)
http = httplib2.Http(memcache)
credentials.authorize(http)
return discovery.build('pubsub', 'v1', http=http)
def get_full_topic_name():
return 'projects/{}/topics/{}'.format(
get_project_id(), get_app_topic_name())
def get_full_subscription_name():
return 'projects/{}/subscriptions/{}'.format(
get_project_id(), get_app_subscription_name())
def get_app_topic_name():
return 'topic-gcp-next2016-pubsub-demo'
def get_app_subscription_name():
return 'subscription-python-{}'.format(get_project_id())
def get_app_endpoint_url():
return 'https://{}-dot-{}.appspot.com/receive_message?token={}'.format(
get_current_version(), get_project_id(),
constants.SUBSCRIPTION_UNIQUE_TOKEN)
def get_project_id():
return app_identity.get_application_id()
def get_current_version():
return modules.get_current_version_name()