2009-12-08 20:17:11 +00:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Abort if called from a web server
|
|
|
|
if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
|
|
|
|
print "This script must be run from the command line\n";
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2019-07-15 04:10:29 +01:00
|
|
|
define('INSTALLDIR', dirname(__DIR__));
|
|
|
|
define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
|
2009-12-08 20:17:11 +00:00
|
|
|
|
|
|
|
function update_core($dir, $domain)
|
|
|
|
{
|
|
|
|
$old = getcwd();
|
|
|
|
chdir($dir);
|
|
|
|
passthru(<<<END
|
|
|
|
xgettext \
|
|
|
|
--from-code=UTF-8 \
|
|
|
|
--default-domain=$domain \
|
2010-04-05 21:19:16 +01:00
|
|
|
--output=locale/$domain.pot \
|
2009-12-08 20:17:11 +00:00
|
|
|
--language=PHP \
|
2010-03-01 22:10:13 +00:00
|
|
|
--add-comments=TRANS \
|
|
|
|
--keyword="_m:1,1t" \
|
|
|
|
--keyword="_m:1c,2,2t" \
|
|
|
|
--keyword="_m:1,2,3t" \
|
|
|
|
--keyword="_m:1c,2,3,4t" \
|
2009-12-08 20:17:11 +00:00
|
|
|
--keyword="pgettext:1c,2" \
|
|
|
|
--keyword="npgettext:1c,2,3" \
|
2019-08-19 15:35:52 +01:00
|
|
|
public/index.php \
|
2009-12-08 20:17:11 +00:00
|
|
|
actions/*.php \
|
|
|
|
classes/*.php \
|
|
|
|
lib/*.php \
|
|
|
|
scripts/*.php
|
|
|
|
END
|
|
|
|
);
|
|
|
|
chdir($old);
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
function do_update_module($dir, $domain)
|
|
|
|
{
|
|
|
|
$old = getcwd();
|
|
|
|
chdir($dir);
|
|
|
|
if (!file_exists('locale')) {
|
|
|
|
mkdir('locale');
|
|
|
|
}
|
|
|
|
$files = get_module_sources(".");
|
|
|
|
$cmd = <<<END
|
|
|
|
xgettext \
|
|
|
|
--from-code=UTF-8 \
|
|
|
|
--default-domain=$domain \
|
|
|
|
--output=locale/$domain.pot \
|
|
|
|
--language=PHP \
|
|
|
|
--add-comments=TRANS \
|
|
|
|
--keyword='' \
|
|
|
|
--keyword="_m:1,1t" \
|
|
|
|
--keyword="_m:1c,2,2t" \
|
|
|
|
--keyword="_m:1,2,3t" \
|
|
|
|
--keyword="_m:1c,2,3,4t" \
|
|
|
|
|
|
|
|
END;
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$cmd .= ' ' . escapeshellarg($file);
|
|
|
|
}
|
|
|
|
passthru($cmd);
|
|
|
|
chdir($old);
|
|
|
|
}
|
|
|
|
|
2009-12-08 20:17:11 +00:00
|
|
|
function do_update_plugin($dir, $domain)
|
|
|
|
{
|
|
|
|
$old = getcwd();
|
|
|
|
chdir($dir);
|
|
|
|
if (!file_exists('locale')) {
|
|
|
|
mkdir('locale');
|
|
|
|
}
|
|
|
|
$files = get_plugin_sources(".");
|
|
|
|
$cmd = <<<END
|
|
|
|
xgettext \
|
|
|
|
--from-code=UTF-8 \
|
|
|
|
--default-domain=$domain \
|
2010-04-05 21:19:16 +01:00
|
|
|
--output=locale/$domain.pot \
|
2009-12-08 20:17:11 +00:00
|
|
|
--language=PHP \
|
2010-03-01 22:10:13 +00:00
|
|
|
--add-comments=TRANS \
|
2009-12-08 20:17:11 +00:00
|
|
|
--keyword='' \
|
2010-02-25 00:34:45 +00:00
|
|
|
--keyword="_m:1,1t" \
|
|
|
|
--keyword="_m:1c,2,2t" \
|
|
|
|
--keyword="_m:1,2,3t" \
|
|
|
|
--keyword="_m:1c,2,3,4t" \
|
2009-12-08 20:17:11 +00:00
|
|
|
|
|
|
|
END;
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$cmd .= ' ' . escapeshellarg($file);
|
|
|
|
}
|
|
|
|
passthru($cmd);
|
|
|
|
chdir($old);
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
function get_modules($dir)
|
|
|
|
{
|
|
|
|
$plugins = array();
|
|
|
|
$dirs = new DirectoryIterator("$dir/modules");
|
|
|
|
foreach ($dirs as $item) {
|
|
|
|
if ($item->isDir() && !$item->isDot()) {
|
|
|
|
$name = $item->getBasename();
|
|
|
|
if (file_exists("$dir/modules/$name/{$name}Module.php")) {
|
|
|
|
$plugins[] = $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $plugins;
|
|
|
|
}
|
|
|
|
|
2009-12-08 20:17:11 +00:00
|
|
|
function get_plugins($dir)
|
|
|
|
{
|
|
|
|
$plugins = array();
|
|
|
|
$dirs = new DirectoryIterator("$dir/plugins");
|
|
|
|
foreach ($dirs as $item) {
|
|
|
|
if ($item->isDir() && !$item->isDot()) {
|
|
|
|
$name = $item->getBasename();
|
|
|
|
if (file_exists("$dir/plugins/$name/{$name}Plugin.php")) {
|
|
|
|
$plugins[] = $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $plugins;
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
function get_module_sources($dir)
|
|
|
|
{
|
|
|
|
$files = array();
|
|
|
|
|
|
|
|
$dirs = new RecursiveDirectoryIterator($dir);
|
|
|
|
$iter = new RecursiveIteratorIterator($dirs);
|
|
|
|
foreach ($iter as $pathname => $item) {
|
|
|
|
if ($item->isFile() && preg_match('/\.php$/', $item->getBaseName())) {
|
|
|
|
$files[] = $pathname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
|
|
|
|
2009-12-08 20:17:11 +00:00
|
|
|
function get_plugin_sources($dir)
|
|
|
|
{
|
|
|
|
$files = array();
|
|
|
|
|
|
|
|
$dirs = new RecursiveDirectoryIterator($dir);
|
|
|
|
$iter = new RecursiveIteratorIterator($dirs);
|
|
|
|
foreach ($iter as $pathname => $item) {
|
|
|
|
if ($item->isFile() && preg_match('/\.php$/', $item->getBaseName())) {
|
|
|
|
$files[] = $pathname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
function module_using_gettext($dir)
|
|
|
|
{
|
|
|
|
$files = get_module_sources($dir);
|
|
|
|
foreach ($files as $pathname) {
|
|
|
|
// Check if the file is using our _m gettext wrapper
|
|
|
|
$code = file_get_contents($pathname);
|
|
|
|
if (preg_match('/\b_m\(/', $code)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-12-08 20:17:11 +00:00
|
|
|
function plugin_using_gettext($dir)
|
|
|
|
{
|
|
|
|
$files = get_plugin_sources($dir);
|
|
|
|
foreach ($files as $pathname) {
|
|
|
|
// Check if the file is using our _m gettext wrapper
|
|
|
|
$code = file_get_contents($pathname);
|
|
|
|
if (preg_match('/\b_m\(/', $code)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
function update_module($basedir, $name)
|
|
|
|
{
|
|
|
|
$dir = "$basedir/modules/$name";
|
|
|
|
if (module_using_gettext($dir)) {
|
|
|
|
do_update_module($dir, $name);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-08 20:17:11 +00:00
|
|
|
function update_plugin($basedir, $name)
|
|
|
|
{
|
|
|
|
$dir = "$basedir/plugins/$name";
|
|
|
|
if (plugin_using_gettext($dir)) {
|
|
|
|
do_update_plugin($dir, $name);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$args = $_SERVER['argv'];
|
|
|
|
array_shift($args);
|
|
|
|
|
|
|
|
$all = false;
|
|
|
|
$core = false;
|
2019-08-12 15:03:30 +01:00
|
|
|
$allmodules = false;
|
|
|
|
$modules = array();
|
2009-12-08 20:17:11 +00:00
|
|
|
$allplugins = false;
|
|
|
|
$plugins = array();
|
|
|
|
if (count($args) == 0) {
|
|
|
|
$all = true;
|
|
|
|
}
|
|
|
|
foreach ($args as $arg) {
|
|
|
|
if ($arg == '--all') {
|
|
|
|
$all = true;
|
|
|
|
} elseif ($arg == "--core") {
|
|
|
|
$core = true;
|
2019-08-12 15:03:30 +01:00
|
|
|
} elseif ($arg == "--modules") {
|
|
|
|
$allmodules = true;
|
2009-12-08 20:17:11 +00:00
|
|
|
} elseif ($arg == "--plugins") {
|
|
|
|
$allplugins = true;
|
2019-08-12 15:03:30 +01:00
|
|
|
} elseif (substr($arg, 0, 9) == "--module=") {
|
|
|
|
$modules[] = substr($arg, 9);
|
2009-12-08 20:17:11 +00:00
|
|
|
} elseif (substr($arg, 0, 9) == "--plugin=") {
|
|
|
|
$plugins[] = substr($arg, 9);
|
2010-02-25 00:34:45 +00:00
|
|
|
} elseif ($arg == '--help') {
|
2019-08-12 15:03:30 +01:00
|
|
|
echo "options: --all --core --plugins --plugin=Foo --modules --module=Foo\n\n";
|
2010-02-25 00:34:45 +00:00
|
|
|
exit(0);
|
2009-12-08 20:17:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($all || $core) {
|
|
|
|
echo "core...";
|
|
|
|
update_core(INSTALLDIR, 'statusnet');
|
|
|
|
echo " ok\n";
|
|
|
|
}
|
2019-08-12 15:03:30 +01:00
|
|
|
if ($all || $allmodules) {
|
|
|
|
$plugins = get_modules(INSTALLDIR);
|
|
|
|
}
|
2009-12-08 20:17:11 +00:00
|
|
|
if ($all || $allplugins) {
|
|
|
|
$plugins = get_plugins(INSTALLDIR);
|
|
|
|
}
|
2019-08-12 15:03:30 +01:00
|
|
|
if ($modules) {
|
|
|
|
foreach ($modules as $module) {
|
|
|
|
echo "$module...";
|
|
|
|
if (update_module(INSTALLDIR, $plugin)) {
|
|
|
|
echo " ok\n";
|
|
|
|
} else {
|
|
|
|
echo " not localized\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-12-08 20:17:11 +00:00
|
|
|
if ($plugins) {
|
|
|
|
foreach ($plugins as $plugin) {
|
|
|
|
echo "$plugin...";
|
|
|
|
if (update_plugin(INSTALLDIR, $plugin)) {
|
|
|
|
echo " ok\n";
|
|
|
|
} else {
|
|
|
|
echo " not localized\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|