2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 """Creates a directory with with the unpacked contents of the remoting webapp.
8 The directory will contain a copy-of or a link-to to all remoting webapp
9 resources. This includes HTML/JS and any plugin binaries. The script also
10 massages resulting files appropriately with host plugin data. Finally,
11 a zip archive for all of the above is produced.
14 # Python 2.5 compatibility
15 from __future__
import with_statement
28 # Update the module path, assuming that this script is in src/remoting/webapp,
29 # and that the google_api_keys module is in src/google_apis. Note that
30 # sys.path[0] refers to the directory containing this script.
31 if __name__
== '__main__':
33 os
.path
.abspath(os
.path
.join(sys
.path
[0], '../../google_apis')))
34 import google_api_keys
37 def findAndReplace(filepath
, findString
, replaceString
):
38 """Does a search and replace on the contents of a file."""
39 oldFilename
= os
.path
.basename(filepath
) + '.old'
40 oldFilepath
= os
.path
.join(os
.path
.dirname(filepath
), oldFilename
)
41 os
.rename(filepath
, oldFilepath
)
42 with
open(oldFilepath
) as input:
43 with
open(filepath
, 'w') as output
:
45 output
.write(s
.replace(findString
, replaceString
))
46 os
.remove(oldFilepath
)
49 def createZip(zip_path
, directory
):
50 """Creates a zipfile at zip_path for the given directory."""
51 zipfile_base
= os
.path
.splitext(os
.path
.basename(zip_path
))[0]
52 zip = zipfile
.ZipFile(zip_path
, 'w', zipfile
.ZIP_DEFLATED
)
53 for (root
, dirs
, files
) in os
.walk(directory
):
55 full_path
= os
.path
.join(root
, f
)
56 rel_path
= os
.path
.relpath(full_path
, directory
)
57 zip.write(full_path
, os
.path
.join(zipfile_base
, rel_path
))
61 def replaceString(destination
, placeholder
, value
):
62 findAndReplace(os
.path
.join(destination
, 'plugin_settings.js'),
63 "'" + placeholder
+ "'", "'" + value
+ "'")
66 def replaceBool(destination
, placeholder
, value
):
67 # Look for a "!!" in the source code so the expession we're
68 # replacing looks like a boolean to the compiler. A single "!"
69 # would satisfy the compiler but might confused human readers.
70 findAndReplace(os
.path
.join(destination
, 'plugin_settings.js'),
71 "!!'" + placeholder
+ "'", 'true' if value
else 'false')
74 def parseBool(boolStr
):
75 """Tries to parse a string as a boolean value.
77 Returns a bool on success; raises ValueError on failure.
79 lower
= boolStr
.lower()
80 if lower
in ['0', 'false']: return False
81 if lower
in ['1', 'true']: return True
82 raise ValueError('not a boolean string {!r}'.format(boolStr
))
85 def getenvBool(name
, defaultValue
):
86 """Gets an environment value as a boolean."""
87 rawValue
= os
.environ
.get(name
)
91 return parseBool(rawValue
)
93 raise Exception('Value of ${} must be boolean!'.format(name
))
96 def processJinjaTemplate(input_file
, include_paths
, output_file
, context
):
97 jinja2_path
= os
.path
.normpath(
98 os
.path
.join(os
.path
.abspath(__file__
),
99 '../../../third_party/jinja2'))
100 sys
.path
.append(os
.path
.split(jinja2_path
)[0])
102 (template_path
, template_name
) = os
.path
.split(input_file
)
103 include_paths
= [template_path
] + include_paths
104 env
= jinja2
.Environment(loader
=jinja2
.FileSystemLoader(include_paths
))
105 template
= env
.get_template(template_name
)
106 rendered
= template
.render(context
)
107 io
.open(output_file
, 'w', encoding
='utf-8').write(rendered
)
109 def buildWebApp(buildtype
, version
, destination
, zip_path
,
110 manifest_template
, webapp_type
, appid
, app_client_id
, app_name
,
111 app_description
, app_capabilities
, manifest_key
, files
,
112 files_listfile
, locales_listfile
, jinja_paths
,
113 service_environment
, use_gcd
):
114 """Does the main work of building the webapp directory and zipfile.
117 buildtype: the type of build ("Official", "Release" or "Dev").
118 destination: A string with path to directory where the webapp will be
120 zipfile: A string with path to the zipfile to create containing the
121 contents of |destination|.
122 manifest_template: jinja2 template file for manifest.
123 webapp_type: webapp type ("v1", "v2", "v2_pnacl" or "app_remoting").
124 appid: A string with the Remoting Application Id (only used for app
125 remoting webapps). If supplied, it defaults to using the
127 app_client_id: The OAuth2 client ID for the webapp.
128 app_name: A string with the name of the application.
129 app_description: A string with the description of the application.
130 app_capabilities: A set of strings naming the capabilities that should be
131 enabled for this application.
132 manifest_key: The manifest key for the webapp.
133 files: An array of strings listing the paths for resources to include
135 files_listfile: The name of a file containing a list of files, one per
136 line, identifying the resources to include in this webapp.
137 This is an alternate to specifying the files directly via
138 the 'files' option. The files listed in this file are
139 appended to the files passed via the 'files' option, if any.
140 locales_listfile: The name of a file containing a list of locales, one per
141 line, which are copied, along with their directory
142 structure, from the _locales directory down.
143 jinja_paths: An array of paths to search for {%include} directives in
144 addition to the directory containing the manifest template.
145 service_environment: Used to point the webapp to one of the
146 dev/test/staging/prod/prod-testing environments
147 use_gcd: True if GCD support should be enabled.
150 # Load the locales files from the locales_listfile.
151 if not locales_listfile
:
152 raise Exception('You must specify a locales_listfile')
154 with
open(locales_listfile
) as input:
156 locales
.append(s
.rstrip())
158 # Load the files from the files_listfile.
160 with
open(files_listfile
) as input:
162 files
.append(s
.rstrip())
164 # Ensure a fresh directory.
166 shutil
.rmtree(destination
)
168 if os
.path
.exists(destination
):
172 os
.mkdir(destination
, 0775)
174 if buildtype
!= 'Official' and buildtype
!= 'Release' and buildtype
!= 'Dev':
175 raise Exception('Unknown buildtype: ' + buildtype
)
178 'webapp_type': webapp_type
,
179 'buildtype': buildtype
,
182 # Copy all the files.
183 for current_file
in files
:
184 destination_file
= os
.path
.join(destination
, os
.path
.basename(current_file
))
186 # Process *.jinja2 files as jinja2 templates
187 if current_file
.endswith(".jinja2"):
188 destination_file
= destination_file
[:-len(".jinja2")]
189 processJinjaTemplate(current_file
, jinja_paths
,
190 destination_file
, jinja_context
)
192 shutil
.copy2(current_file
, destination_file
)
194 # Copy all the locales, preserving directory structure
195 destination_locales
= os
.path
.join(destination
, '_locales')
196 os
.mkdir(destination_locales
, 0775)
197 remoting_locales
= os
.path
.join(destination
, 'remoting_locales')
198 os
.mkdir(remoting_locales
, 0775)
199 for current_locale
in locales
:
200 extension
= os
.path
.splitext(current_locale
)[1]
201 if extension
== '.json':
202 locale_id
= os
.path
.split(os
.path
.split(current_locale
)[0])[1]
203 destination_dir
= os
.path
.join(destination_locales
, locale_id
)
204 destination_file
= os
.path
.join(destination_dir
,
205 os
.path
.split(current_locale
)[1])
206 os
.mkdir(destination_dir
, 0775)
207 shutil
.copy2(current_locale
, destination_file
)
208 elif extension
== '.pak':
209 destination_file
= os
.path
.join(remoting_locales
,
210 os
.path
.split(current_locale
)[1])
211 shutil
.copy2(current_locale
, destination_file
)
213 raise Exception('Unknown extension: ' + current_locale
)
215 # Set client plugin type.
216 # TODO(wez): Use 'native' in app_remoting until b/17441659 is resolved.
217 client_plugin
= 'pnacl' if webapp_type
== 'v2_pnacl' else 'native'
218 findAndReplace(os
.path
.join(destination
, 'plugin_settings.js'),
219 "'CLIENT_PLUGIN_TYPE'", "'" + client_plugin
+ "'")
221 # Allow host names for google services/apis to be overriden via env vars.
222 oauth2AccountsHost
= os
.environ
.get(
223 'OAUTH2_ACCOUNTS_HOST', 'https://accounts.google.com')
224 oauth2ApiHost
= os
.environ
.get(
225 'OAUTH2_API_HOST', 'https://www.googleapis.com')
226 directoryApiHost
= os
.environ
.get(
227 'DIRECTORY_API_HOST', 'https://www.googleapis.com')
229 is_app_remoting_webapp
= webapp_type
== 'app_remoting'
230 is_prod_service_environment
= service_environment
== 'prod' or \
231 service_environment
== 'prod-testing'
232 if is_app_remoting_webapp
:
233 appRemotingApiHost
= os
.environ
.get(
234 'APP_REMOTING_API_HOST', None)
235 appRemotingApplicationId
= os
.environ
.get(
236 'APP_REMOTING_APPLICATION_ID', None)
238 # Release/Official builds are special because they are what we will upload
239 # to the web store. The checks below will validate that prod builds are
240 # being generated correctly (no overrides) and with the correct buildtype.
241 # They also verify that folks are not accidentally building dev/test/staging
242 # apps for release (no impersonation) instead of dev.
243 if is_prod_service_environment
and buildtype
== 'Dev':
244 raise Exception("Prod environment cannot be built for 'dev' builds")
246 if buildtype
!= 'Dev':
247 if not is_prod_service_environment
:
248 raise Exception('Invalid service_environment targeted for '
249 + buildtype
+ ': ' + service_environment
)
251 raise Exception('Cannot pass in an appid for '
252 + buildtype
+ ' builds: ' + service_environment
)
253 if appRemotingApiHost
!= None:
254 raise Exception('Cannot set APP_REMOTING_API_HOST env var for '
255 + buildtype
+ ' builds')
256 if appRemotingApplicationId
!= None:
257 raise Exception('Cannot set APP_REMOTING_APPLICATION_ID env var for '
258 + buildtype
+ ' builds')
260 # If an Application ID was set (either from service_environment variable or
261 # from a command line argument), hardcode it, otherwise get it at runtime.
262 effectiveAppId
= appRemotingApplicationId
or appid
264 appRemotingApplicationId
= "'" + effectiveAppId
+ "'"
266 appRemotingApplicationId
= "chrome.i18n.getMessage('@@extension_id')"
267 findAndReplace(os
.path
.join(destination
, 'plugin_settings.js'),
268 "'APP_REMOTING_APPLICATION_ID'", appRemotingApplicationId
)
270 oauth2BaseUrl
= oauth2AccountsHost
+ '/o/oauth2'
271 oauth2ApiBaseUrl
= oauth2ApiHost
+ '/oauth2'
272 directoryApiBaseUrl
= directoryApiHost
+ '/chromoting/v1'
274 if is_app_remoting_webapp
:
275 # Set the apiary endpoint and then set the endpoint version
276 if not appRemotingApiHost
:
277 if is_prod_service_environment
:
278 appRemotingApiHost
= 'https://www.googleapis.com'
280 appRemotingApiHost
= 'https://www-googleapis-test.sandbox.google.com'
282 if service_environment
== 'dev':
283 appRemotingServicePath
= '/appremoting/v1beta1_dev'
284 elif service_environment
== 'test':
285 appRemotingServicePath
= '/appremoting/v1beta1'
286 elif service_environment
== 'staging':
287 appRemotingServicePath
= '/appremoting/v1beta1_staging'
288 elif service_environment
== 'prod':
289 appRemotingServicePath
= '/appremoting/v1beta1'
290 elif service_environment
== 'prod-testing':
291 appRemotingServicePath
= '/appremoting/v1beta1_prod_testing'
293 raise Exception('Unknown service environment: ' + service_environment
)
294 appRemotingApiBaseUrl
= appRemotingApiHost
+ appRemotingServicePath
296 appRemotingApiBaseUrl
= ''
298 replaceBool(destination
, 'USE_GCD', use_gcd
)
299 replaceString(destination
, 'OAUTH2_BASE_URL', oauth2BaseUrl
)
300 replaceString(destination
, 'OAUTH2_API_BASE_URL', oauth2ApiBaseUrl
)
301 replaceString(destination
, 'DIRECTORY_API_BASE_URL', directoryApiBaseUrl
)
302 if is_app_remoting_webapp
:
303 replaceString(destination
, 'APP_REMOTING_API_BASE_URL',
304 appRemotingApiBaseUrl
)
306 # Substitute hosts in the manifest's CSP list.
307 # Ensure we list the API host only once if it's the same for multiple APIs.
308 googleApiHosts
= ' '.join(set([oauth2ApiHost
, directoryApiHost
]))
310 # WCS and the OAuth trampoline are both hosted on talkgadget. Split them into
311 # separate suffix/prefix variables to allow for wildcards in manifest.json.
312 talkGadgetHostSuffix
= os
.environ
.get(
313 'TALK_GADGET_HOST_SUFFIX', 'talkgadget.google.com')
314 talkGadgetHostPrefix
= os
.environ
.get(
315 'TALK_GADGET_HOST_PREFIX', 'https://chromoting-client.')
316 oauth2RedirectHostPrefix
= os
.environ
.get(
317 'OAUTH2_REDIRECT_HOST_PREFIX', 'https://chromoting-oauth.')
319 # Use a wildcard in the manifest.json host specs if the prefixes differ.
320 talkGadgetHostJs
= talkGadgetHostPrefix
+ talkGadgetHostSuffix
321 talkGadgetBaseUrl
= talkGadgetHostJs
+ '/talkgadget/'
322 if talkGadgetHostPrefix
== oauth2RedirectHostPrefix
:
323 talkGadgetHostJson
= talkGadgetHostJs
325 talkGadgetHostJson
= 'https://*.' + talkGadgetHostSuffix
327 # Set the correct OAuth2 redirect URL.
328 oauth2RedirectHostJs
= oauth2RedirectHostPrefix
+ talkGadgetHostSuffix
329 oauth2RedirectHostJson
= talkGadgetHostJson
330 oauth2RedirectPath
= '/talkgadget/oauth/chrome-remote-desktop'
331 oauth2RedirectBaseUrlJs
= oauth2RedirectHostJs
+ oauth2RedirectPath
332 oauth2RedirectBaseUrlJson
= oauth2RedirectHostJson
+ oauth2RedirectPath
333 if buildtype
== 'Official':
334 oauth2RedirectUrlJs
= ("'" + oauth2RedirectBaseUrlJs
+
335 "/rel/' + chrome.i18n.getMessage('@@extension_id')")
336 oauth2RedirectUrlJson
= oauth2RedirectBaseUrlJson
+ '/rel/*'
338 oauth2RedirectUrlJs
= "'" + oauth2RedirectBaseUrlJs
+ "/dev'"
339 oauth2RedirectUrlJson
= oauth2RedirectBaseUrlJson
+ '/dev*'
340 thirdPartyAuthUrlJs
= oauth2RedirectBaseUrlJs
+ '/thirdpartyauth'
341 thirdPartyAuthUrlJson
= oauth2RedirectBaseUrlJson
+ '/thirdpartyauth*'
342 replaceString(destination
, 'TALK_GADGET_URL', talkGadgetBaseUrl
)
343 findAndReplace(os
.path
.join(destination
, 'plugin_settings.js'),
344 "'OAUTH2_REDIRECT_URL'", oauth2RedirectUrlJs
)
346 # Configure xmpp server and directory bot settings in the plugin.
348 destination
, 'XMPP_SERVER_USE_TLS',
349 getenvBool('XMPP_SERVER_USE_TLS', True))
350 xmppServer
= os
.environ
.get('XMPP_SERVER',
351 'talk.google.com:443')
352 replaceString(destination
, 'XMPP_SERVER', xmppServer
)
353 replaceString(destination
, 'DIRECTORY_BOT_JID',
354 os
.environ
.get('DIRECTORY_BOT_JID',
355 'remoting@bot.talk.google.com'))
356 replaceString(destination
, 'THIRD_PARTY_AUTH_REDIRECT_URL',
359 # Set the correct API keys.
360 # For overriding the client ID/secret via env vars, see google_api_keys.py.
361 apiClientId
= google_api_keys
.GetClientID('REMOTING')
362 apiClientSecret
= google_api_keys
.GetClientSecret('REMOTING')
363 apiKey
= google_api_keys
.GetAPIKeyRemoting()
365 if is_app_remoting_webapp
and buildtype
!= 'Dev':
366 if not app_client_id
:
367 raise Exception('Invalid app_client_id passed in: "' +
369 apiClientIdV2
= app_client_id
+ '.apps.googleusercontent.com'
371 apiClientIdV2
= google_api_keys
.GetClientID('REMOTING_IDENTITY_API')
373 replaceString(destination
, 'API_CLIENT_ID', apiClientId
)
374 replaceString(destination
, 'API_CLIENT_SECRET', apiClientSecret
)
375 replaceString(destination
, 'API_KEY', apiKey
)
377 # Write the application capabilities.
378 appCapabilities
= ','.join(
379 ['remoting.ClientSession.Capability.' + x
for x
in app_capabilities
])
380 findAndReplace(os
.path
.join(destination
, 'app_capabilities.js'),
381 "'APPLICATION_CAPABILITIES'", appCapabilities
)
383 # Use a consistent extension id for dev builds.
384 # AppRemoting builds always use the dev app id - the correct app id gets
385 # written into the manifest later.
386 if is_app_remoting_webapp
:
387 if buildtype
!= 'Dev':
389 raise Exception('Invalid manifest_key passed in: "' +
391 manifestKey
= '"key": "' + manifest_key
+ '",'
393 manifestKey
= '"key": "remotingdevbuild",'
394 elif buildtype
!= 'Official':
395 # TODO(joedow): Update the chromoting webapp GYP entries to include keys.
396 manifestKey
= '"key": "remotingdevbuild",'
401 if manifest_template
:
403 'webapp_type': webapp_type
,
404 'FULL_APP_VERSION': version
,
405 'MANIFEST_KEY_FOR_UNOFFICIAL_BUILD': manifestKey
,
406 'OAUTH2_REDIRECT_URL': oauth2RedirectUrlJson
,
407 'TALK_GADGET_HOST': talkGadgetHostJson
,
408 'THIRD_PARTY_AUTH_REDIRECT_URL': thirdPartyAuthUrlJson
,
409 'REMOTING_IDENTITY_API_CLIENT_ID': apiClientIdV2
,
410 'OAUTH2_BASE_URL': oauth2BaseUrl
,
411 'OAUTH2_API_BASE_URL': oauth2ApiBaseUrl
,
412 'DIRECTORY_API_BASE_URL': directoryApiBaseUrl
,
413 'APP_REMOTING_API_BASE_URL': appRemotingApiBaseUrl
,
414 'OAUTH2_ACCOUNTS_HOST': oauth2AccountsHost
,
415 'GOOGLE_API_HOSTS': googleApiHosts
,
416 'APP_NAME': app_name
,
417 'APP_DESCRIPTION': app_description
,
418 'OAUTH_GDRIVE_SCOPE': '',
420 'XMPP_SERVER': xmppServer
,
422 if 'GOOGLE_DRIVE' in app_capabilities
:
423 context
['OAUTH_GDRIVE_SCOPE'] = ('https://docs.google.com/feeds/ '
424 'https://www.googleapis.com/auth/drive')
425 processJinjaTemplate(manifest_template
,
427 os
.path
.join(destination
, 'manifest.json'),
431 createZip(zip_path
, destination
)
437 parser
= argparse
.ArgumentParser()
438 parser
.add_argument('buildtype')
439 parser
.add_argument('version')
440 parser
.add_argument('destination')
441 parser
.add_argument('zip_path')
442 parser
.add_argument('manifest_template')
443 parser
.add_argument('webapp_type')
444 parser
.add_argument('files', nargs
='*', metavar
='file', default
=[])
445 parser
.add_argument('--app_name', metavar
='NAME')
446 parser
.add_argument('--app_description', metavar
='TEXT')
447 parser
.add_argument('--app_capabilities',
448 nargs
='*', default
=[], metavar
='CAPABILITY')
449 parser
.add_argument('--appid')
450 parser
.add_argument('--app_client_id', default
='')
451 parser
.add_argument('--manifest_key', default
='')
452 parser
.add_argument('--files_listfile', default
='', metavar
='PATH')
453 parser
.add_argument('--locales_listfile', default
='', metavar
='PATH')
454 parser
.add_argument('--jinja_paths', nargs
='*', default
=[], metavar
='PATH')
455 parser
.add_argument('--service_environment', default
='', metavar
='ENV')
456 parser
.add_argument('--use_gcd', choices
=['0', '1'], default
='0')
458 args
= parser
.parse_args()
459 args
.use_gcd
= (args
.use_gcd
!= '0')
460 args
.app_capabilities
= set(args
.app_capabilities
)
461 return buildWebApp(**vars(args
))
464 if __name__
== '__main__':