2015-02-20 14:16:23 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Thomas Müller
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class Licenses
|
|
|
|
{
|
|
|
|
protected $paths = array();
|
2015-10-26 15:51:22 +03:00
|
|
|
public $authors = [];
|
2015-02-20 14:16:23 +03:00
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$this->licenseText = <<<EOD
|
|
|
|
/**
|
|
|
|
@AUTHORS@
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) @YEAR@, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
EOD;
|
|
|
|
$this->licenseText = str_replace('@YEAR@', date("Y"), $this->licenseText);
|
|
|
|
}
|
|
|
|
|
|
|
|
function exec($folder) {
|
|
|
|
|
|
|
|
if (is_array($folder)) {
|
|
|
|
foreach($folder as $f) {
|
|
|
|
$this->exec($f);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_file($folder)) {
|
|
|
|
$this->handleFile($folder);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$excludes = array_map(function($item) use ($folder) {
|
|
|
|
return $folder . '/' . $item;
|
|
|
|
}, ['vendor', '3rdparty', '.git', 'l10n', 'templates']);
|
|
|
|
|
|
|
|
$iterator = new RecursiveDirectoryIterator($folder, RecursiveDirectoryIterator::SKIP_DOTS);
|
|
|
|
$iterator = new RecursiveCallbackFilterIterator($iterator, function($item) use ($folder, $excludes){
|
|
|
|
/** @var SplFileInfo $item */
|
|
|
|
foreach($excludes as $exclude) {
|
|
|
|
if (substr($item->getPath(), 0, strlen($exclude)) === $exclude) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
$iterator = new RecursiveIteratorIterator($iterator);
|
|
|
|
$iterator = new RegexIterator($iterator, '/^.+\.php$/i');
|
|
|
|
|
|
|
|
foreach ($iterator as $file) {
|
|
|
|
/** @var SplFileInfo $file */
|
|
|
|
$this->handleFile($file);
|
|
|
|
}
|
2015-10-26 15:51:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function writeAuthorsFile() {
|
|
|
|
ksort($this->authors);
|
|
|
|
$template = "ownCloud is written by:
|
|
|
|
@AUTHORS@
|
2015-02-20 14:16:23 +03:00
|
|
|
|
2015-10-26 15:51:22 +03:00
|
|
|
With help from many libraries and frameworks including:
|
|
|
|
Open Collaboration Services
|
|
|
|
SabreDAV
|
|
|
|
jQuery
|
|
|
|
…
|
|
|
|
";
|
|
|
|
$authors = implode(PHP_EOL, array_map(function($author){
|
|
|
|
return " - ".$author;
|
|
|
|
}, $this->authors));
|
|
|
|
$template = str_replace('@AUTHORS@', $authors, $template);
|
|
|
|
file_put_contents(__DIR__.'/../AUTHORS', $template);
|
2015-02-20 14:16:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleFile($path) {
|
|
|
|
$source = file_get_contents($path);
|
2015-03-17 13:58:46 +03:00
|
|
|
if ($this->isMITLicensed($source)) {
|
|
|
|
echo "MIT licensed file: $path" . PHP_EOL;
|
|
|
|
return;
|
|
|
|
}
|
2015-02-20 14:16:23 +03:00
|
|
|
$source = $this->eatOldLicense($source);
|
|
|
|
$authors = $this->getAuthors($path);
|
|
|
|
$license = str_replace('@AUTHORS@', $authors, $this->licenseText);
|
|
|
|
|
|
|
|
$source = "<?php" . PHP_EOL . $license . PHP_EOL . $source;
|
|
|
|
file_put_contents($path,$source);
|
2015-03-17 13:58:46 +03:00
|
|
|
echo "License updated: $path" . PHP_EOL;
|
|
|
|
}
|
|
|
|
|
2016-01-15 15:54:26 +03:00
|
|
|
/**
|
|
|
|
* @param string $source
|
|
|
|
*/
|
2015-03-17 13:58:46 +03:00
|
|
|
private function isMITLicensed($source) {
|
|
|
|
$lines = explode(PHP_EOL, $source);
|
|
|
|
while(!empty($lines)) {
|
|
|
|
$line = $lines[0];
|
|
|
|
array_shift($lines);
|
|
|
|
if (strpos($line, 'The MIT License') !== false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2015-02-20 14:16:23 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 15:54:26 +03:00
|
|
|
/**
|
|
|
|
* @param string $source
|
|
|
|
*/
|
2015-02-20 14:16:23 +03:00
|
|
|
private function eatOldLicense($source) {
|
|
|
|
$lines = explode(PHP_EOL, $source);
|
|
|
|
while(!empty($lines)) {
|
|
|
|
$line = $lines[0];
|
|
|
|
if (strpos($line, '<?php') !== false) {
|
|
|
|
array_shift($lines);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (strpos($line, '/**') !== false) {
|
|
|
|
array_shift($lines);
|
|
|
|
continue;
|
|
|
|
}
|
2015-03-04 16:33:40 +03:00
|
|
|
if (strpos($line, '*/') !== false ) {
|
2015-02-20 14:16:23 +03:00
|
|
|
array_shift($lines);
|
2015-03-04 16:33:40 +03:00
|
|
|
break;
|
2015-02-20 14:16:23 +03:00
|
|
|
}
|
2015-03-04 16:33:40 +03:00
|
|
|
if (strpos($line, '*') !== false) {
|
2015-02-20 14:16:23 +03:00
|
|
|
array_shift($lines);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (trim($line) === '') {
|
|
|
|
array_shift($lines);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode(PHP_EOL, $lines);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getAuthors($file) {
|
2015-10-05 22:15:01 +03:00
|
|
|
// only add authors that changed code and not the license header
|
|
|
|
$licenseHeaderEndsAtLine = trim(shell_exec("grep -n '*/' $file | head -n 1 | cut -d ':' -f 1"));
|
|
|
|
$out = shell_exec("git blame --line-porcelain -L $licenseHeaderEndsAtLine, $file | sed -n 's/^author //p;s/^author-mail //p' | sed 'N;s/\\n/ /' | sort -f | uniq");
|
2015-02-20 14:16:23 +03:00
|
|
|
$authors = explode(PHP_EOL, $out);
|
|
|
|
|
|
|
|
$authors = array_filter($authors, function($author) {
|
2015-02-25 16:00:30 +03:00
|
|
|
return !in_array($author, [
|
|
|
|
'',
|
|
|
|
'Not Committed Yet <not.committed.yet>',
|
|
|
|
'Jenkins for ownCloud <owncloud-bot@tmit.eu>']);
|
2015-02-20 14:16:23 +03:00
|
|
|
});
|
|
|
|
$authors = array_map(function($author){
|
2015-10-26 15:51:22 +03:00
|
|
|
$this->authors[$author] = $author;
|
2015-02-20 14:16:23 +03:00
|
|
|
return " * @author $author";
|
|
|
|
}, $authors);
|
|
|
|
return implode(PHP_EOL, $authors);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$licenses = new Licenses;
|
2015-03-04 16:33:40 +03:00
|
|
|
if (isset($argv[1])) {
|
|
|
|
$licenses->exec($argv[1]);
|
|
|
|
} else {
|
|
|
|
$licenses->exec([
|
2016-01-12 16:39:31 +03:00
|
|
|
'../apps/dav',
|
2015-03-30 23:36:48 +03:00
|
|
|
'../apps/encryption',
|
2016-01-12 16:39:31 +03:00
|
|
|
'../apps/federation',
|
|
|
|
'../apps/files',
|
2015-03-04 16:33:40 +03:00
|
|
|
'../apps/files_external',
|
|
|
|
'../apps/files_sharing',
|
|
|
|
'../apps/files_trashbin',
|
|
|
|
'../apps/files_versions',
|
|
|
|
'../apps/provisioning_api',
|
|
|
|
'../apps/user_ldap',
|
|
|
|
'../core',
|
|
|
|
'../lib',
|
|
|
|
'../ocs',
|
|
|
|
'../settings',
|
|
|
|
'../console.php',
|
|
|
|
'../cron.php',
|
|
|
|
'../index.php',
|
|
|
|
'../public.php',
|
|
|
|
'../remote.php',
|
|
|
|
'../status.php',
|
|
|
|
'../version.php',
|
|
|
|
]);
|
2015-10-26 15:51:22 +03:00
|
|
|
$licenses->writeAuthorsFile();
|
2015-03-04 16:33:40 +03:00
|
|
|
}
|