Skip to content
Snippets Groups Projects
Commit f9e271cb authored by keertip@google.com's avatar keertip@google.com Committed by Natalie Weizenbaum
Browse files

add option to pick up hosted url from an anvironment variable

R=rnystrom@google.com

Review URL: https://codereview.chromium.org//18878005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@25014 260f80e4-7a28-3924-810f-c04153c831b5
parent bbf5969c
No related branches found
No related tags found
Loading
...@@ -44,7 +44,7 @@ class LishCommand extends PubCommand { ...@@ -44,7 +44,7 @@ class LishCommand extends PubCommand {
help: 'Validate but do not publish the package.'); help: 'Validate but do not publish the package.');
commandParser.addFlag('force', abbr: 'f', negatable: false, commandParser.addFlag('force', abbr: 'f', negatable: false,
help: 'Publish without confirmation if there are no errors.'); help: 'Publish without confirmation if there are no errors.');
commandParser.addOption('server', defaultsTo: HostedSource.DEFAULT_URL, commandParser.addOption('server', defaultsTo: HostedSource.defaultUrl,
help: 'The package server to which to upload this package.'); help: 'The package server to which to upload this package.');
} }
......
...@@ -30,7 +30,7 @@ class UploaderCommand extends PubCommand { ...@@ -30,7 +30,7 @@ class UploaderCommand extends PubCommand {
Uri get server => Uri.parse(commandOptions['server']); Uri get server => Uri.parse(commandOptions['server']);
UploaderCommand() { UploaderCommand() {
commandParser.addOption('server', defaultsTo: HostedSource.DEFAULT_URL, commandParser.addOption('server', defaultsTo: HostedSource.defaultUrl,
help: 'The package server on which the package is hosted.'); help: 'The package server on which the package is hosted.');
commandParser.addOption('package', commandParser.addOption('package',
help: 'The package whose uploaders will be modified.\n' help: 'The package whose uploaders will be modified.\n'
......
...@@ -24,12 +24,17 @@ import '../version.dart'; ...@@ -24,12 +24,17 @@ import '../version.dart';
/// A package source that installs packages from a package hosting site that /// A package source that installs packages from a package hosting site that
/// uses the same API as pub.dartlang.org. /// uses the same API as pub.dartlang.org.
class HostedSource extends Source { class HostedSource extends Source {
/// The URL of the default package repository.
static const DEFAULT_URL = "https://pub.dartlang.org";
final name = "hosted"; final name = "hosted";
final shouldCache = true; final shouldCache = true;
/// Gets the default URL for the package server for hosted dependencies.
static String get defaultUrl {
var url = io.Platform.environment["PUB_HOSTED_URL"];
if (url != null) return url;
return "https://pub.dartlang.org";
}
/// Downloads a list of all versions of a package that are available from the /// Downloads a list of all versions of a package that are available from the
/// site. /// site.
Future<List<Version>> getVersions(String name, description) { Future<List<Version>> getVersions(String name, description) {
...@@ -125,7 +130,7 @@ class HostedSource extends Source { ...@@ -125,7 +130,7 @@ class HostedSource extends Source {
} }
List<Package> getCachedPackages([String url]) { List<Package> getCachedPackages([String url]) {
if (url == null) url = DEFAULT_URL; if (url == null) url = defaultUrl;
var cacheDir = path.join(systemCacheRoot, var cacheDir = path.join(systemCacheRoot,
_getSourceDirectory(url)); _getSourceDirectory(url));
...@@ -237,7 +242,7 @@ Uri _makeVersionUrl(PackageId id, ...@@ -237,7 +242,7 @@ Uri _makeVersionUrl(PackageId id,
/// this throws a descriptive FormatException. /// this throws a descriptive FormatException.
Pair<String, String> _parseDescription(description) { Pair<String, String> _parseDescription(description) {
if (description is String) { if (description is String) {
return new Pair<String, String>(description, HostedSource.DEFAULT_URL); return new Pair<String, String>(description, HostedSource.defaultUrl);
} }
if (description is! Map) { if (description is! Map) {
...@@ -256,7 +261,7 @@ Pair<String, String> _parseDescription(description) { ...@@ -256,7 +261,7 @@ Pair<String, String> _parseDescription(description) {
} }
var url = description["url"]; var url = description["url"];
if (url == null) url = HostedSource.DEFAULT_URL; if (url == null) url = HostedSource.defaultUrl;
return new Pair<String, String>(name, url); return new Pair<String, String>(name, url);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment