Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/tools/chromevox_webstore_util.py

Issue 417703002: Add scripts to semi-automate publishing of ChromeVox webstore extension using webstore API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remov logging. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 '''A set of utilities to interface with the Chrome Webstore API.'''
8
9 import os
dmazzoni 2014/07/30 05:39:55 nit: sort these
David Tseng 2014/07/31 21:52:57 Done.
10 import SimpleHTTPServer
11 import SocketServer
12 import httplib
13 import json
14 import re
15 import sys
16 import thread
17 import urllib
18 import webbrowser
19
20 PROJECT_ARGS = {
21 'client_id': ('937534751394-gbj5334v9144c57qjqghl7d283plj5r4.apps.googleuserc'
dmazzoni 2014/07/30 05:39:55 nit: maybe start the string on the next line and t
David Tseng 2014/07/31 21:52:57 Done.
22 'ontent.com'),
23 'grant_type': 'authorization_code',
24 'redirect_uri': 'http://localhost:8000'
25 }
26
27 PORT = 8000
28
29 APP_ID = 'kgejglhpjiefppelpmljglcjbhoiplfn'
30 OAUTH_DOMAIN = 'accounts.google.com'
31 OAUTH_AUTH_COMMAND = '/o/oauth2/auth'
32 OAUTH_TOKEN_COMMAND = '/o/oauth2/token'
33 WEBSTORE_API_SCOPE = 'https://www.googleapis.com/auth/chromewebstore'
34
35 API_ENDPOINT_DOMAIN = 'www.googleapis.com'
36 COMMAND_GET_UPLOAD_STATUS = (
37 '/chromewebstore/v1.1/items/%s?projection=draft' % APP_ID)
38 COMMAND_POST_PUBLISH = '/chromewebstore/v1.1/items/%s/publish' % APP_ID
39 COMMAND_POST_UPLOAD = '/upload/chromewebstore/v1.1/items/%s' % APP_ID
40
41 class CodeRequestHandler(SocketServer.StreamRequestHandler):
42 def handle(self):
43 content = self.rfile.readline()
44 self.server.code = re.search('code=(.*) ', content).groups()[0]
45 self.rfile.close()
46
47 def GetAuthCode():
48 Handler = CodeRequestHandler
49 httpd = SocketServer.TCPServer(("", PORT), Handler)
50 query = '&'.join(['response_type=code',
51 'scope=%s' % WEBSTORE_API_SCOPE,
52 'client_id=%(client_id)s' % PROJECT_ARGS,
53 'redirect_uri=%(redirect_uri)s' % PROJECT_ARGS])
54 auth_url = ' https://%s%s?%s' % (OAUTH_DOMAIN, OAUTH_AUTH_COMMAND, query)
55 print 'Navigating to %s' % auth_url
56 webbrowser.open(auth_url)
57 httpd.handle_request()
58 return httpd.code
59
60 def GetOauthToken(code, client_secret):
61 PROJECT_ARGS['code'] = code
62 PROJECT_ARGS['client_secret'] = client_secret
63 body = urllib.urlencode(PROJECT_ARGS)
64 conn = httplib.HTTPSConnection(OAUTH_DOMAIN)
65 conn.putrequest('POST', OAUTH_TOKEN_COMMAND)
66 conn.putheader('content-type', 'application/x-www-form-urlencoded')
67 conn.putheader('content-length', len(body))
68 conn.endheaders()
69 conn.send(body)
70 content = conn.getresponse().read()
71 return json.loads(content)
72
73 def GetPopulatedHeader(client_secret):
74 code = GetAuthCode()
75 access_token = GetOauthToken(code, client_secret)
76 url = 'www.googleapis.com'
77
78 return {'Authorization': 'Bearer %(access_token)s' % access_token,
79 'x-goog-api-version': 2,
80 'Content-Length': 0
81 }
82
83 def SendGetCommand(command, client_secret):
84 headers = GetPopulatedHeader(client_secret)
85 conn = httplib.HTTPSConnection(API_ENDPOINT_DOMAIN)
86 conn.request('GET', command, '', headers)
87 return conn.getresponse()
88
89 def SendPostCommand(command, client_secret, header_additions = {}, body=None):
90 headers = GetPopulatedHeader(client_secret)
91 headers = dict(headers.items() + header_additions.items())
92 conn = httplib.HTTPSConnection(API_ENDPOINT_DOMAIN)
93 conn.request('PUT', command, body, headers)
94 return conn.getresponse()
95
96 def GetUploadStatus(client_secret):
97 '''Gets the status of a previous upload.
98 Args:
99 client_secret ChromeVox's client secret creds.
100 '''
101 return SendGetCommand(COMMAND_GET_UPLOAD_STATUS, client_secret)
102
103 # httplib fails to persist the connection during upload; use curl instead.
104 def PostUpload(file, client_secret):
105 '''Posts an uploaded version of ChromeVox.
106 Args:
107 file A string path to the ChromeVox extension zip.
108 client_secret ChromeVox's client secret creds.
109 '''
110 header = GetPopulatedHeader(client_secret)
111 curl_command = ' '.join(['curl',
112 '-H "Authorization: %(Authorization)s"' % header,
dmazzoni 2014/07/30 05:39:55 nit: indent by one more space (and below)
David Tseng 2014/07/31 21:52:57 Done.
113 '-H "x-goog-api-version: 2"',
114 '-X PUT',
115 '-T %s' % file,
116 '-v',
117 'https://%s%s' % (API_ENDPOINT_DOMAIN,
118 COMMAND_POST_UPLOAD)])
119 if os.system(curl_command) != 0:
dmazzoni 2014/07/30 05:39:55 Maybe print the curl command before executing it t
David Tseng 2014/07/31 21:52:57 Done.
120 sys.exit(-1)
121
122 def PostPublishTrustedTesters(client_secret):
123 '''Publishes a previously uploaded ChromeVox extension to trusted testers.
124 Args:
125 client_secret ChromeVox's client secret creds.
126 '''
127 return SendPostCommand(COMMAND_POST_PUBLISH,
128 client_secret,
129 { 'publishTarget': 'trustedTesters'})
130
131 def PostPublish(client_secret):
132 '''Publishes a previously uploaded ChromeVox extension publically.
133 Args:
134 client_secret ChromeVox's client secret creds.
135 '''
136 return SendPostCommand(COMMAND_POST_PUBLISH, client_secret)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698