OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library pubspec_field_validator; |
| 6 |
| 7 import '../entrypoint.dart'; |
| 8 import '../system_cache.dart'; |
| 9 import '../validator.dart'; |
| 10 |
| 11 /// A validator that checks that the pubspec has valid "author" and "homepage" |
| 12 /// fields. |
| 13 class PubspecFieldValidator extends Validator { |
| 14 PubspecFieldValidator(Entrypoint entrypoint) |
| 15 : super(entrypoint); |
| 16 |
| 17 Future validate() { |
| 18 // The types of all fields are validated when the pubspec is parsed. |
| 19 var pubspec = entrypoint.root.pubspec; |
| 20 var author = pubspec.fields['author']; |
| 21 var authors = pubspec.fields['authors']; |
| 22 if (author == null && authors == null) { |
| 23 errors.add('pubspec.yaml is missing an "author" or "authors" field.'); |
| 24 } else { |
| 25 if (authors == null) authors = [author]; |
| 26 |
| 27 var hasName = new RegExp(r"^ *[^< ]"); |
| 28 var hasEmail = new RegExp(r"<[^>]+> *$"); |
| 29 for (var authorName in authors) { |
| 30 if (!hasName.hasMatch(authorName)) { |
| 31 warnings.add('Author "$authorName" in pubspec.yaml is missing a ' |
| 32 'name.'); |
| 33 } |
| 34 if (!hasEmail.hasMatch(authorName)) { |
| 35 warnings.add('Author "$authorName" in pubspec.yaml is missing an ' |
| 36 'email address (e.g. "name <email>").'); |
| 37 } |
| 38 } |
| 39 } |
| 40 |
| 41 var homepage = pubspec.fields['homepage']; |
| 42 if (homepage == null) { |
| 43 errors.add('pubspec.yaml is missing a "homepage" field.'); |
| 44 } |
| 45 |
| 46 return new Future.immediate(null); |
| 47 } |
| 48 } |
OLD | NEW |