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

Side by Side Diff: utils/pub/command_lish.dart

Issue 11280246: Use pkg/http pervasively in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | utils/pub/hosted_source.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library command_lish; 5 library command_lish;
6 6
7 import 'dart:io';
7 import 'dart:json'; 8 import 'dart:json';
8 import 'dart:uri'; 9 import 'dart:uri';
9 10
10 import '../../pkg/args/lib/args.dart'; 11 import '../../pkg/args/lib/args.dart';
11 import '../../pkg/http/lib/http.dart' as http; 12 import '../../pkg/http/lib/http.dart' as http;
12 import 'pub.dart'; 13 import 'pub.dart';
13 import 'io.dart'; 14 import 'io.dart';
14 import 'git.dart' as git; 15 import 'git.dart' as git;
15 import 'oauth2.dart' as oauth2; 16 import 'oauth2.dart' as oauth2;
16 17
17 // TODO(nweiz): Make "publish" the primary name for this command. See issue 18 // TODO(nweiz): Make "publish" the primary name for this command. See issue
18 // 6949. 19 // 6949.
19 /// Handles the `lish` and `publish` pub commands. 20 /// Handles the `lish` and `publish` pub commands.
20 class LishCommand extends PubCommand { 21 class LishCommand extends PubCommand {
21 final description = "publish the current package to pub.dartlang.org"; 22 final description = "publish the current package to pub.dartlang.org";
22 final usage = "pub publish [options]"; 23 final usage = "pub publish [options]";
23 final aliases = const ["lish", "lush"]; 24 final aliases = const ["lish", "lush"];
24 25
25 ArgParser get commandParser { 26 ArgParser get commandParser {
26 var parser = new ArgParser(); 27 var parser = new ArgParser();
27 parser.addOption('server', defaultsTo: 'http://pub.dartlang.org', 28 parser.addOption('server', defaultsTo: 'http://pub.dartlang.org',
28 help: 'The package server to which to upload this package'); 29 help: 'The package server to which to upload this package');
29 return parser; 30 return parser;
30 } 31 }
31 32
32 /// The URL of the server to which to upload the package. 33 /// The URL of the server to which to upload the package.
33 Uri get server => new Uri.fromString(commandOptions['server']); 34 Uri get server => new Uri.fromString(commandOptions['server']);
34 35
35 Future onRun() { 36 Future onRun() {
37 var cloudStorageUrl;
36 return oauth2.withClient(cache, (client) { 38 return oauth2.withClient(cache, (client) {
37 // TODO(nweiz): Better error-handling. There are a few cases we need to 39 // TODO(nweiz): Better error-handling. There are a few cases we need to
38 // handle better: 40 // handle better:
39 // 41 //
40 // * The server can tell us we need new credentials (a 401 error). The 42 // * The server can tell us we need new credentials (a 401 error). The
41 // oauth2 package should throw an AuthorizationException in this case 43 // oauth2 package should throw an AuthorizationException in this case
42 // (contingent on issue 6813 and 6275). We should have the user 44 // (contingent on issue 6813 and 6275). We should have the user
43 // re-authorize the client, then restart the command. We should also do 45 // re-authorize the client, then restart the command. We should also do
44 // this in case of an ExpirationException. See issue 6950. 46 // this in case of an ExpirationException. See issue 6950.
45 // 47 //
46 // * Cloud Storage can provide an XML-formatted error. We should report 48 // * Cloud Storage can provide an XML-formatted error. We should report
47 // that error and exit. 49 // that error and exit.
48 return Futures.wait([ 50 return Futures.wait([
49 client.get(server.resolve("/packages/versions/new.json")), 51 client.get(server.resolve("/packages/versions/new.json")),
50 _filesToPublish.transform((files) { 52 _filesToPublish.transform((files) {
51 return createTarGz(files, baseDir: entrypoint.root.dir); 53 return createTarGz(files, baseDir: entrypoint.root.dir);
52 }).chain(consumeInputStream) 54 }).chain(consumeInputStream)
53 ]).chain((results) { 55 ]).chain((results) {
54 var response = results[0]; 56 var response = results[0];
55 var packageBytes = results[1]; 57 var packageBytes = results[1];
56 var parameters = _parseJson(response); 58 var parameters = _parseJson(response);
57 if (response.statusCode != 200) _serverError(parameters, response);
58 59
59 var url = _expectField(parameters, 'url', response); 60 var url = _expectField(parameters, 'url', response);
60 if (url is! String) _invalidServerResponse(response); 61 if (url is! String) _invalidServerResponse(response);
61 var request = new http.MultipartRequest( 62 cloudStorageUrl = new Uri.fromString(url);
62 'POST', new Uri.fromString(url)); 63 var request = new http.MultipartRequest('POST', cloudStorageUrl);
63 64
64 var fields = _expectField(parameters, 'fields', response); 65 var fields = _expectField(parameters, 'fields', response);
65 if (fields is! Map) _invalidServerResponse(response); 66 if (fields is! Map) _invalidServerResponse(response);
66 fields.forEach((key, value) { 67 fields.forEach((key, value) {
67 if (value is! String) _invalidServerResponse(response); 68 if (value is! String) _invalidServerResponse(response);
68 request.fields[key] = value; 69 request.fields[key] = value;
69 }); 70 });
70 71
71 request.followRedirects = false; 72 request.followRedirects = false;
72 request.files.add(new http.MultipartFile.fromBytes( 73 request.files.add(new http.MultipartFile.fromBytes(
73 'file', packageBytes, filename: 'package.tar.gz')); 74 'file', packageBytes, filename: 'package.tar.gz'));
74 return client.send(request); 75 return client.send(request);
75 }).chain(http.Response.fromStream).chain((response) { 76 }).chain(http.Response.fromStream).transform((response) {
76 var location = response.headers['location']; 77 var location = response.headers['location'];
77 if (location == null) { 78 if (location == null) throw new PubHttpException(response);
78 // TODO(nweiz): the response may have XML-formatted information about 79 return location;
79 // the error. Try to parse that out once we have an easily-accessible 80 }).chain((location) => client.get(location)).transform((response) {
80 // XML parser.
81 throw 'Failed to upload the package.';
82 }
83 return client.get(location);
84 }).transform((response) {
85 var parsed = _parseJson(response); 81 var parsed = _parseJson(response);
86 if (parsed.containsKey('error')) _serverError(parsed, response);
87 if (parsed['success'] is! Map || 82 if (parsed['success'] is! Map ||
88 !parsed['success'].containsKey('message') || 83 !parsed['success'].containsKey('message') ||
89 parsed['success']['message'] is! String) { 84 parsed['success']['message'] is! String) {
90 _invalidServerResponse(response); 85 _invalidServerResponse(response);
91 } 86 }
92 print(parsed['success']['message']); 87 print(parsed['success']['message']);
93 }); 88 });
94 }).transformException((e) { 89 }).transformException((e) {
90 if (e is PubHttpException) {
91 var url = e.response.request.url;
92 if (url.toString() == cloudStorageUrl.toString()) {
93 // TODO(nweiz): the response may have XML-formatted information about
94 // the error. Try to parse that out once we have an easily-accessible
95 // XML parser.
96 throw 'Failed to upload the package.';
97 } else if (url.origin == server.origin) {
98 var errorMap = _parseJson(e.response);
99 if (errorMap['error'] is! Map ||
100 !errorMap['error'].containsKey('message') ||
101 errorMap['error']['message'] is! String) {
102 _invalidServerResponse(e.response);
103 }
104 throw errorMap['error']['message'];
105 }
106 }
107
95 if (e is! oauth2.ExpirationException) throw e; 108 if (e is! oauth2.ExpirationException) throw e;
96 109
97 printError("Pub's authorization to upload packages has expired and can't " 110 printError("Pub's authorization to upload packages has expired and can't "
98 "be automatically refreshed."); 111 "be automatically refreshed.");
99 return onRun(); 112 return onRun();
100 }); 113 });
101 } 114 }
102 115
103 /// Returns a list of files that should be included in the published package. 116 /// Returns a list of files that should be included in the published package.
104 /// If this is a Git repository, this will respect .gitignore; otherwise, it 117 /// If this is a Git repository, this will respect .gitignore; otherwise, it
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 return value; 153 return value;
141 } 154 }
142 155
143 /// Returns the value associated with [key] in [map]. Throws a user-friendly 156 /// Returns the value associated with [key] in [map]. Throws a user-friendly
144 /// error if [map] doens't contain [key]. 157 /// error if [map] doens't contain [key].
145 _expectField(Map map, String key, http.Response response) { 158 _expectField(Map map, String key, http.Response response) {
146 if (map.containsKey(key)) return map[key]; 159 if (map.containsKey(key)) return map[key];
147 _invalidServerResponse(response); 160 _invalidServerResponse(response);
148 } 161 }
149 162
150 /// Extracts the error message from a JSON error sent from the server. Throws
151 /// an appropriate error if the error map is improperly formatted.
152 void _serverError(Map errorMap, http.Response response) {
153 if (errorMap['error'] is! Map ||
154 !errorMap['error'].containsKey('message') ||
155 errorMap['error']['message'] is! String) {
156 _invalidServerResponse(response);
157 }
158 throw errorMap['error']['message'];
159 }
160
161 /// Throws an error describing an invalid response from the server. 163 /// Throws an error describing an invalid response from the server.
162 void _invalidServerResponse(http.Response response) { 164 void _invalidServerResponse(http.Response response) {
163 throw 'Invalid server response:\n${response.body}'; 165 throw 'Invalid server response:\n${response.body}';
164 } 166 }
165 } 167 }
OLDNEW
« no previous file with comments | « no previous file | utils/pub/hosted_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698