プラグイン接頭辞の一意性を確認するにはどうすればよいですか?


11

他のプラグインとの衝突を回避するには、すべてのグローバル関数、アクション、プラグインに一意のプレフィックスを付ける必要があります。例:

function xyz_function_name() { ... }

問題は、それxyzが実際に一意であることをどのように確認するかです。たとえば、Yoast SEOはwpseo_他のSEOプラグインも簡単に使用できると想像できるものを使用しています。使用可能なWordPressプラグインで潜在的な衝突を検索する最良の方法は何ですか?またはありますか?


4
プレフィックスは過去のものです。現在、私たちは名前空間を使用しており、必要に応じてそれらをネストすることができます。
fuxia

質問を更新して、グローバルであり、クラスを使用してプレフィックスを付けることができないアクションとフィルターを含めます。
Borek Bernard、

その更新では、これは非常に良い質問です
prosti

1
答えが難しいと思うので、私はこれに賛成票を投じました。しかし、プレフィックスと関数名の組み合わせは無限にある可能性があるため、これが必要であるとは本当に思いません。本当の解決策は、関数名をより詳細にすることだと思います。また、多分やり過ぎかもしれませんが、postfixを追加できます。
2016年

回答:


5

Mark JaquithによるWordPres Plugin Directory Slurperシェルスクリプトを使用して、WordPress.orgリポジトリからすべてのプラグインの最新バージョンをダウンロードできます。プラグインがダウンロードされたら、確認したいプラグイン/フックのプレフィックスをgrepできます。例:

grep -r --include=*.php 'wpseo_' ./

WordPres Plugin Directory Slurperパッケージをドキュメントルートに解凍します。デフォルトのディレクトリ名はでWordPress-Plugin-Directory-Slurper、次のものが含まれています。

  /plugins/
  /readmes/
  /zips/
  LICENSE
  README.markdown
  update

ディレクトリphp update内から実行してbashスクリプトを実行しますWordPress-Plugin-Directory-Slurper。圧縮されたプラグインはにダウンロードされ/zips、解凍され/pluginsます。リポジトリ全体は約15GBで、最初のダウンロードには数時間かかります。

updateスクリプトの内容:

#!/usr/bin/php
<?php
$args = $argv;
$cmd = array_shift( $args );

$type = 'all';
if ( !empty( $args[0] ) ) {
    $type = $args[0];
}

switch ( $type ) {
    case 'readme':
        $directory = 'readmes';
        $download = 'readmes/%s.readme';
        $url = 'http://plugins.svn.wordpress.org/%s/trunk/readme.txt';
        break;
    case 'all':
        $directory = 'plugins';
        $download = 'zips/%s.zip';
        $url = 'http://downloads.wordpress.org/plugin/%s.latest-stable.zip?nostats=1';
        break;
    default:
        echo $cmd . ": invalid command\r\n";
        echo 'Usage: php ' . $cmd . " [command]\r\n\r\n";
        echo "Available commands:\r\n";
        echo "  all - Downloads full plugin zips\r\n";
        echo "  readme - Downloads plugin readmes only\r\n";
        die();
}

echo "Determining most recent SVN revision...\r\n";
try {
    $changelog = @file_get_contents( 'http://plugins.trac.wordpress.org/log/?format=changelog&stop_rev=HEAD' );
    if ( !$changelog )
        throw new Exception( 'Could not fetch the SVN changelog' );
    preg_match( '#\[([0-9]+)\]#', $changelog, $matches );
    if ( !$matches[1] )
        throw new Exception( 'Could not determine most recent revision.' );
} catch ( Exception $e ) {
    die( $e->getMessage() . "\r\n" );
}
$svn_last_revision = (int) $matches[1];
echo "Most recent SVN revision: " . $svn_last_revision . "\r\n";
if ( file_exists( $directory . '/.last-revision' ) ) {
    $last_revision = (int) file_get_contents( $directory . '/.last-revision' );
    echo "Last synced revision: " . $last_revision . "\r\n";
} else {
    $last_revision = false;
    echo "You have not yet performed a successful sync. Settle in. This will take a while.\r\n";
}

$start_time = time();

if ( $last_revision != $svn_last_revision ) {
    if ( $last_revision ) {
        $changelog_url = sprintf( 'http://plugins.trac.wordpress.org/log/?verbose=on&mode=follow_copy&format=changelog&rev=%d&limit=%d', $svn_last_revision, $svn_last_revision - $last_revision );
        $changes = file_get_contents( $changelog_url );
        preg_match_all( '#^' . "\t" . '*\* ([^/A-Z ]+)[ /].* \((added|modified|deleted|moved|copied)\)' . "\n" . '#m', $changes, $matches );
        $plugins = array_unique( $matches[1] );
    } else {
        $plugins = file_get_contents( 'http://svn.wp-plugins.org/' );
        preg_match_all( '#<li><a href="([^/]+)/">([^/]+)/</a></li>#', $plugins, $matches );
        $plugins = $matches[1];
    }

    foreach ( $plugins as $plugin ) {
        $plugin = urldecode( $plugin );
        echo "Updating " . $plugin;

        $output = null; $return = null;
        exec( 'wget -q -np -O ' . escapeshellarg( sprintf($download, $plugin) ) . ' ' . escapeshellarg( sprintf($url, $plugin) ) . ' > /dev/null', $output, $return );

        if ( $return === 0 && file_exists( sprintf($download, $plugin) ) ) {
            if ($type === 'all') {
                if ( file_exists( 'plugins/' . $plugin ) )
                    exec( 'rm -rf ' . escapeshellarg( 'plugins/' . $plugin ) );

                exec( 'unzip -o -d plugins ' . escapeshellarg( 'zips/' . $plugin . '.zip' ) );
                exec( 'rm -rf ' . escapeshellarg( 'zips/' . $plugin . '.zip' ) );
            }
        } else {
            echo '... download failed.';
        }
        echo "\r\n";
    }

    if ( file_put_contents( $directory . '/.last-revision', $svn_last_revision ) )
        echo "[CLEANUP] Updated $directory/.last-revision to " . $svn_last_revision . "\r\n";
    else
        echo "[ERROR] Could not update $directory/.last-revision to " . $svn_last_revision . "\r\n";
}

$end_time = time();
$minutes = ( $end_time - $start_time ) / 60;
$seconds = ( $end_time - $start_time ) % 60;

echo "[SUCCESS] Done updating plugins!\r\n";
echo "It took " . number_format($minutes) . " minute" . ( $minutes == 1 ? '' : 's' ) . " and " . $seconds . " second" . ( $seconds == 1 ? '' : 's' ) . " to update ". count($plugins)  ." plugin" . ( count($plugins) == 1 ? '' : 's') . "\r\n";
echo "[DONE]\r\n";

最新の承認済みテーマをすべてダウンロードしたい場合は、そのためのスクリプトもあります。AaronJorbinによるWordPress Theme Directory Slurperです。

これらのシェルスクリプトは、Unixシステム用に設計されています。Windowsを使用している場合は、cygwinを使用してPlugin / Theme Directory Slurperスクリプトを実行できます。


0
  1. 一般的ではなく、名前のバリエーションを使用してください。
  2. 新しいプラグインをインストールする人がPHP 5.2(2016年10月)を使用することはありません。PHP名前空間を使用し、プラグイン名のように長くても関連性のあるものにします。
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.