OLD | NEW |
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_uploader; | 5 library command_uploader; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:io'; | 8 import 'dart:io'; |
9 import 'dart:uri'; | 9 import 'dart:uri'; |
10 | 10 |
11 import 'package:args/args.dart'; | 11 import 'package:args/args.dart'; |
12 import 'package:pathos/path.dart' as path; | 12 import 'package:pathos/path.dart' as path; |
13 | 13 |
| 14 import 'command.dart'; |
14 import 'entrypoint.dart'; | 15 import 'entrypoint.dart'; |
15 import 'exit_codes.dart' as exit_codes; | 16 import 'exit_codes.dart' as exit_codes; |
16 import 'http.dart'; | 17 import 'http.dart'; |
17 import 'io.dart'; | 18 import 'io.dart'; |
18 import 'log.dart' as log; | 19 import 'log.dart' as log; |
19 import 'oauth2.dart' as oauth2; | 20 import 'oauth2.dart' as oauth2; |
20 import 'pub.dart'; | |
21 import 'utils.dart'; | 21 import 'utils.dart'; |
22 | 22 |
23 /// Handles the `uploader` pub command. | 23 /// Handles the `uploader` pub command. |
24 class UploaderCommand extends PubCommand { | 24 class UploaderCommand extends PubCommand { |
25 final description = "Manage uploaders for a package on pub.dartlang.org."; | 25 final description = "Manage uploaders for a package on pub.dartlang.org."; |
26 final usage = "pub uploader [options] {add/remove} <email>"; | 26 final usage = "pub uploader [options] {add/remove} <email>"; |
27 final requiresEntrypoint = false; | 27 final requiresEntrypoint = false; |
28 | 28 |
29 ArgParser get commandParser { | 29 ArgParser get commandParser { |
30 var parser = new ArgParser(); | 30 var parser = new ArgParser(); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 var url = server.resolve("/packages/${encodeUriComponent(package)}" | 74 var url = server.resolve("/packages/${encodeUriComponent(package)}" |
75 "/uploaders/${encodeUriComponent(uploader)}.json"); | 75 "/uploaders/${encodeUriComponent(uploader)}.json"); |
76 return client.delete(url); | 76 return client.delete(url); |
77 } | 77 } |
78 }); | 78 }); |
79 }).then(handleJsonSuccess) | 79 }).then(handleJsonSuccess) |
80 .catchError((error) => handleJsonError(error.response), | 80 .catchError((error) => handleJsonError(error.response), |
81 test: (e) => e is PubHttpException); | 81 test: (e) => e is PubHttpException); |
82 } | 82 } |
83 } | 83 } |
OLD | NEW |