Page MenuHomePhabricator

D13883.id.diff
No OneTemporary

D13883.id.diff

diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -54,6 +54,7 @@
'ArcanistCommentStyleXHPASTLinterRule' => 'lint/linter/xhpast/rules/ArcanistCommentStyleXHPASTLinterRule.php',
'ArcanistCommitWorkflow' => 'workflow/ArcanistCommitWorkflow.php',
'ArcanistCompilerLintRenderer' => 'lint/renderer/ArcanistCompilerLintRenderer.php',
+ 'ArcanistComposerLinter' => 'lint/linter/ArcanistComposerLinter.php',
'ArcanistComprehensiveLintEngine' => 'lint/engine/ArcanistComprehensiveLintEngine.php',
'ArcanistConcatenationOperatorXHPASTLinterRule' => 'lint/linter/xhpast/rules/ArcanistConcatenationOperatorXHPASTLinterRule.php',
'ArcanistConfiguration' => 'configuration/ArcanistConfiguration.php',
@@ -337,6 +338,7 @@
'ArcanistCommentStyleXHPASTLinterRule' => 'ArcanistXHPASTLinterRule',
'ArcanistCommitWorkflow' => 'ArcanistWorkflow',
'ArcanistCompilerLintRenderer' => 'ArcanistLintRenderer',
+ 'ArcanistComposerLinter' => 'ArcanistLinter',
'ArcanistComprehensiveLintEngine' => 'ArcanistLintEngine',
'ArcanistConcatenationOperatorXHPASTLinterRule' => 'ArcanistXHPASTLinterRule',
'ArcanistConfiguration' => 'Phobject',
diff --git a/src/lint/linter/ArcanistComposerLinter.php b/src/lint/linter/ArcanistComposerLinter.php
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/ArcanistComposerLinter.php
@@ -0,0 +1,55 @@
+<?php
+
+final class ArcanistComposerLinter extends ArcanistLinter {
+
+ const LINT_OUT_OF_DATE = 1;
+
+ public function getInfoName() {
+ return pht('Composer');
+ }
+
+ public function getInfoDescription() {
+ return pht('A linter for Composer related files.');
+ }
+
+ public function getLinterName() {
+ return 'COMPOSER';
+ }
+
+ public function getLinterConfigurationName() {
+ return 'composer';
+ }
+
+ public function getLintNameMap() {
+ return array(
+ self::LINT_OUT_OF_DATE => pht('Lock file out-of-date'),
+ );
+ }
+
+ public function lintPath($path) {
+ switch (basename($path)) {
+ case 'composer.json':
+ $this->lintComposerJson($path);
+ break;
+ case 'composer.lock':
+ break;
+ }
+ }
+
+ private function lintComposerJson($path) {
+ $composer_hash = md5(Filesystem::readFile(dirname($path).'/composer.json'));
+ $composer_lock = phutil_json_decode(
+ Filesystem::readFile(dirname($path).'/composer.lock'));
+
+ if ($composer_hash !== $composer_lock['hash']) {
+ $this->raiseLintAtPath(
+ self::LINT_OUT_OF_DATE,
+ pht(
+ "The '%s' file seems to be out-of-date. ".
+ "You probably need to run `%s`.",
+ 'composer.lock',
+ 'composer update'));
+ }
+ }
+
+}

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 15, 8:35 PM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7703424
Default Alt Text
D13883.id.diff (2 KB)

Event Timeline