Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15384687
D13883.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D13883.id.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D13883: Add a Composer linter
Attached
Detach File
Event Timeline
Log In to Comment