Added config params github.comments.(commit|pull_request) for allow or deny for PHP Censor to commenting on Github

This commit is contained in:
Dmitry Khomutov 2017-01-20 21:55:48 +07:00
parent d77f0e8474
commit d209482cda
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9
9 changed files with 52 additions and 27 deletions

View file

@ -13,6 +13,15 @@ php-censor:
url: 'http://php-censor.local' url: 'http://php-censor.local'
email_settings: email_settings:
from_address: 'no-reply@php-censor.local' from_address: 'no-reply@php-censor.local'
smtp_address:
worker: worker:
host: localhost host: localhost
queue: php-censor-queue queue: php-censor-queue
github:
token: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
comments:
commit: false
pull_request: false
authentication_settings:
state: false
user_id: 1

View file

@ -1,13 +1,18 @@
Configuring PHP Censor Configuring PHP Censor
====================== ======================
The PHP Censor configuration on the server is automatically generated into the `config.yml` file during installation. One might need to also edit the file manually. The PHP Censor configuration on the server is automatically generated into the `config.yml` file during installation.
One might need to also edit the file manually.
For example, one could log into PHP Censor and go into the settings to disable it. But if you have already set up a username/password pair and have forgotten the password, and if the server is on a local network, and it's not sending the `forgot password` email, then editing the config file manually would be handy. To do so, just edit the `php-censor` section in the config file (which is in [yaml format](https://en.wikipedia.org/wiki/YAML)), and add For example, one could log into PHP Censor and go into the settings to disable it. But if you have already set up a
username/password pair and have forgotten the password, and if the server is on a local network, and it's not sending
the `forgot password` email, then editing the config file manually would be handy. To do so, just edit the `php-censor`
section in the config file (which is in [yaml format](https://en.wikipedia.org/wiki/YAML)), and add
php-censor: php-censor:
authentication_settings: authentication_settings:
state: 1 state: 1
user_id: 1 user_id: 1
where you can get the user_id by logging into the mysql database and selecting your user ID from the `users` table in the PHP Censor database. where you can get the user_id by logging into the mysql database and selecting your user ID from the `users` table in
the PHP Censor database.

View file

@ -20,6 +20,7 @@ use Symfony\Component\Console\Output\OutputInterface;
/** /**
* Create build command - creates a build for a project * Create build command - creates a build for a project
*
* @author Jérémy DECOOL (@jdecool) * @author Jérémy DECOOL (@jdecool)
* @package PHPCI * @package PHPCI
* @subpackage Console * @subpackage Console

View file

@ -27,6 +27,7 @@ use Symfony\Component\Yaml\Dumper;
/** /**
* Install console command - Installs PHPCI. * Install console command - Installs PHPCI.
*
* @author Dan Cryer <dan@block8.co.uk> * @author Dan Cryer <dan@block8.co.uk>
* @package PHPCI * @package PHPCI
* @subpackage Console * @subpackage Console

View file

@ -19,6 +19,7 @@ use Symfony\Component\Console\Output\OutputInterface;
/** /**
* Re-runs the last run build. * Re-runs the last run build.
*
* @author Dan Cryer <dan@block8.co.uk> * @author Dan Cryer <dan@block8.co.uk>
* @package PHPCI * @package PHPCI
* @subpackage Console * @subpackage Console

View file

@ -20,6 +20,7 @@ use Symfony\Component\Console\Output\OutputInterface;
/** /**
* Worker Command - Starts the BuildWorker, which pulls jobs from beanstalkd * Worker Command - Starts the BuildWorker, which pulls jobs from beanstalkd
*
* @author Dan Cryer <dan@block8.co.uk> * @author Dan Cryer <dan@block8.co.uk>
* @package PHPCI * @package PHPCI
* @subpackage Console * @subpackage Console

View file

@ -211,12 +211,19 @@ class GithubBuild extends RemoteGitBuild
$prNumber = $this->getExtra('pull_request_number'); $prNumber = $this->getExtra('pull_request_number');
$commit = $this->getCommitId(); $commit = $this->getCommitId();
$allowCommentCommit = Config::getInstance()->get('php-censor.github.comments.commit');
$allowCommentPullRequest = Config::getInstance()->get('php-censor.github.comments.pull_request');
if (!empty($prNumber)) { if (!empty($prNumber)) {
if ($allowCommentPullRequest) {
$helper->createPullRequestComment($repo, $prNumber, $commit, $file, $diffLineNumber, $message); $helper->createPullRequestComment($repo, $prNumber, $commit, $file, $diffLineNumber, $message);
}
} else { } else {
if ($allowCommentCommit) {
$helper->createCommitComment($repo, $commit, $file, $diffLineNumber, $message); $helper->createCommitComment($repo, $commit, $file, $diffLineNumber, $message);
} }
} }
}
return parent::reportError($builder, $plugin, $message, $severity, $file, $lineStart, $lineEnd); return parent::reportError($builder, $plugin, $message, $severity, $file, $lineStart, $lineEnd);
} }