User Authentication & Regular Expression
PukiWikiでは、ユーザ認証機能を利用することで、ページの閲覧制限、編集制限、検索制限をすることができます。pukiwiki.ini.php で以下の設定が必要です。
///////////////////////////////////////////////// // User definition $auth_users = array( // Username => password 'foo' => 'foo_passwd', // Cleartext 'bar' => '{x-php-md5}f53ae779077e987718cc285b14dfbe86', // PHP md5() 'bar_passwd' 'hoge' => '{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx', // LDAP SMD5 'hoge_passwd' );
///////////////////////////////////////////////// // Authentication method $auth_method_type = 'pagename'; // By Page name ← ふつうはこちら //$auth_method_type = 'contents'; // By Page contents
///////////////////////////////////////////////// // Read auth (0:Disable, 1:Enable) $read_auth = 1; // ← ここを1 $read_auth_pages = array( // Regex Username '#HogeHoge#' => 'hoge', '#(NETABARE|NetaBare)#' => 'foo,bar,hoge', );
///////////////////////////////////////////////// // Edit auth (0:Disable, 1:Enable) $edit_auth = 1; // ← ここを1 $edit_auth_pages = array( // Regex Username '#BarDiary#' => 'bar', '#HogeHoge#' => 'hoge', '#(NETABARE|NetaBare)#' => 'foo,bar,hoge', );
$edit_auth_pages = array( '##' => 'hoge', );
$edit_auth_pages = array( '#^Apple$#' => 'hoge', );
$edit_auth_pages = array( '#(^Apple$|^Orange$)#' => 'hoge', );または
$edit_auth_pages = array( '#^Apple$#' => 'hoge', '#^Orange$#' => 'hoge', );
$edit_auth_pages = array( '#^Comments/#' => 'hoge', );
$edit_auth_pages = array( '#/template$#' => 'hoge', );
$edit_auth_pages = array( '#^(?!^Comments/)#' => 'hoge', );
$edit_auth_pages = array( '#^(?!^.*/template$)#' => 'hoge', );