Commit: 49e2f693e9537a7eca3790c8a5f1757f37772422
Author: Hannes Magnusson <[email protected]> Wed, 27 Nov 2013
15:50:31 -0800
Parents: bdcfd0df18bd8667fd6fcce96ced02e28e216050
Branches: master
Link:
http://git.php.net/?p=web/wiki.git;a=commitdiff;h=49e2f693e9537a7eca3790c8a5f1757f37772422
Log:
Fix folder name
Changed paths:
D dokuwiki/lib/plugins/authphpcvs/auth.php
A dokuwiki/lib/plugins/phpcvs/auth.php
diff --git a/dokuwiki/lib/plugins/authphpcvs/auth.php
b/dokuwiki/lib/plugins/authphpcvs/auth.php
deleted file mode 100755
index c9317af..0000000
--- a/dokuwiki/lib/plugins/authphpcvs/auth.php
+++ /dev/null
@@ -1,170 +0,0 @@
-<?php
-/**
- * DokuWiki Plugin phpcvs (Auth Component)
- *
- *
- * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
- * @author Lukas Smith <[email protected]>
- */
-
-// must be run within Dokuwiki
-if(!defined('DOKU_INC')) die();
-
-class auth_plugin_phpcvs extends DokuWiki_Auth_Plugin {
-
-
- /**
- * Constructor.
- */
- public function __construct() {
- parent::__construct(); // for compatibility
-
- global $conf;
- $this->cnf = $conf['auth']['phpcvs'];
- $this->cando['external'] = true;
- $this->success = true;
- }
-
-
- function trustExternal($user,$pass,$sticky=false){
- $silent = false;
- if ($user === '' && isset($_COOKIE['MAGIC_COOKIE'])) {
- list ($user, $pass) = explode(':',
base64_decode($_COOKIE['MAGIC_COOKIE']), 2);
- $sticky = false;
- $silent = true;
- }
- return auth_login($user,$pass,$sticky,$silent);
- }
-
- /**
- * Set a user read via master.php.net
- *
- * Checks if the given user exists and the given
- * plaintext password is correct
- *
- * @return bool true or int error code
- */
- function _setCVSUser($user){
- $this->_loadUserData();
- $this->users[$user]['pass'] = null;
- $this->users[$user]['name'] = $user;
- $this->users[$user]['mail'] = $user.'@php.net';
- $grps = array('phpcvs');
- if (in_array($user, $this->cnf['admins'])) {
- $grps[] = 'admin';
- }
- $this->users[$user]['grps'] = $grps;
- }
-
- /**
- * Check user+password against master.php.net [required auth function]
- *
- * Checks if the given user exists and the given
- * plaintext password is correct
- *
- * @return bool true or int error code
- */
- function _checkCVSPass($user,$pass = ''){
- $post = http_build_query(
- array(
- "token" => getenv("dokuwikitoken"),
- "username" => $user,
- "password" => $pass,
- ), '', '&'
- );
-
- $opts = array(
- "method" => "POST",
- "header" => "Content-type: application/x-www-form-urlencoded",
- "content" => $post,
- );
-
- $ctx = stream_context_create(array("http" => $opts));
-
- $s = file_get_contents("https://master.php.net/fetch/cvsauth.php",
false, $ctx);
-
- $a = unserialize($s);
- /*
- define("E_UNKNOWN", 0);
- define("E_USERNAME", 1);
- define("E_PASSWORD", 2);
- */
- if (!is_array($a)) {
- return 0;
- }
- if (isset($a["errno"])) {
- return (int)$a["errno"];
- }
-
- $this->_setCVSUser($user);
-
- return true;
- }
-
- /**
- * Check user+password [required auth function]
- *
- * Checks if the given user exists and the given
- * plaintext password is correct
- *
- * @return bool
- */
- function checkPass($user,$pass){
- $cvs_reply = $this->_checkCVSPass($user,$pass);
-
- if ($cvs_reply === true) {
- return true;
- // username did not match an existing username
- } elseif($cvs_reply < 2) {
- return parent::checkPass($user,$pass);
- }
-
- return false;
- }
-
- /**
- * Return user info
- *
- * Returns info about the given user needs to contain
- * at least these fields:
- *
- * name string full name of the user
- * mail string email addres of the user
- * grps array list of groups the user is in
- *
- * @author Andreas Gohr <[email protected]>
- */
- function getUserData($user){
- $cvs_reply = $this->_checkCVSPass($user);
- if ($cvs_reply === 2) {
- $this->_setCVSUser($user);
- }
-
- if($this->users === null) $this->_loadUserData();
- return isset($this->users[$user]) ? $this->users[$user] : false;
- }
-
- /**
- * Remove one or more users from the list of registered users
- *
- * @author Christopher Smith <[email protected]>
- * @param array $users array of users to be deleted
- * @return int the number of users deleted
- */
- function deleteUsers($users) {
- $deleted = array();
- foreach ($users as $key => $user) {
- $cvs_reply = $this->_checkCVSPass($user);
- // user exists because we got a password mismatch error
- if($cvs_reply === 2) {
- unset($users[$key]);
- }
- }
-
- $users = array_values($users);
-
- return parent::deleteUsers($users);
- }
-}
-
-// vim:ts=4:sw=4:et:
diff --git a/dokuwiki/lib/plugins/phpcvs/auth.php
b/dokuwiki/lib/plugins/phpcvs/auth.php
new file mode 100755
index 0000000..c9317af
--- /dev/null
+++ b/dokuwiki/lib/plugins/phpcvs/auth.php
@@ -0,0 +1,170 @@
+<?php
+/**
+ * DokuWiki Plugin phpcvs (Auth Component)
+ *
+ *
+ * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
+ * @author Lukas Smith <[email protected]>
+ */
+
+// must be run within Dokuwiki
+if(!defined('DOKU_INC')) die();
+
+class auth_plugin_phpcvs extends DokuWiki_Auth_Plugin {
+
+
+ /**
+ * Constructor.
+ */
+ public function __construct() {
+ parent::__construct(); // for compatibility
+
+ global $conf;
+ $this->cnf = $conf['auth']['phpcvs'];
+ $this->cando['external'] = true;
+ $this->success = true;
+ }
+
+
+ function trustExternal($user,$pass,$sticky=false){
+ $silent = false;
+ if ($user === '' && isset($_COOKIE['MAGIC_COOKIE'])) {
+ list ($user, $pass) = explode(':',
base64_decode($_COOKIE['MAGIC_COOKIE']), 2);
+ $sticky = false;
+ $silent = true;
+ }
+ return auth_login($user,$pass,$sticky,$silent);
+ }
+
+ /**
+ * Set a user read via master.php.net
+ *
+ * Checks if the given user exists and the given
+ * plaintext password is correct
+ *
+ * @return bool true or int error code
+ */
+ function _setCVSUser($user){
+ $this->_loadUserData();
+ $this->users[$user]['pass'] = null;
+ $this->users[$user]['name'] = $user;
+ $this->users[$user]['mail'] = $user.'@php.net';
+ $grps = array('phpcvs');
+ if (in_array($user, $this->cnf['admins'])) {
+ $grps[] = 'admin';
+ }
+ $this->users[$user]['grps'] = $grps;
+ }
+
+ /**
+ * Check user+password against master.php.net [required auth function]
+ *
+ * Checks if the given user exists and the given
+ * plaintext password is correct
+ *
+ * @return bool true or int error code
+ */
+ function _checkCVSPass($user,$pass = ''){
+ $post = http_build_query(
+ array(
+ "token" => getenv("dokuwikitoken"),
+ "username" => $user,
+ "password" => $pass,
+ ), '', '&'
+ );
+
+ $opts = array(
+ "method" => "POST",
+ "header" => "Content-type: application/x-www-form-urlencoded",
+ "content" => $post,
+ );
+
+ $ctx = stream_context_create(array("http" => $opts));
+
+ $s = file_get_contents("https://master.php.net/fetch/cvsauth.php",
false, $ctx);
+
+ $a = unserialize($s);
+ /*
+ define("E_UNKNOWN", 0);
+ define("E_USERNAME", 1);
+ define("E_PASSWORD", 2);
+ */
+ if (!is_array($a)) {
+ return 0;
+ }
+ if (isset($a["errno"])) {
+ return (int)$a["errno"];
+ }
+
+ $this->_setCVSUser($user);
+
+ return true;
+ }
+
+ /**
+ * Check user+password [required auth function]
+ *
+ * Checks if the given user exists and the given
+ * plaintext password is correct
+ *
+ * @return bool
+ */
+ function checkPass($user,$pass){
+ $cvs_reply = $this->_checkCVSPass($user,$pass);
+
+ if ($cvs_reply === true) {
+ return true;
+ // username did not match an existing username
+ } elseif($cvs_reply < 2) {
+ return parent::checkPass($user,$pass);
+ }
+
+ return false;
+ }
+
+ /**
+ * Return user info
+ *
+ * Returns info about the given user needs to contain
+ * at least these fields:
+ *
+ * name string full name of the user
+ * mail string email addres of the user
+ * grps array list of groups the user is in
+ *
+ * @author Andreas Gohr <[email protected]>
+ */
+ function getUserData($user){
+ $cvs_reply = $this->_checkCVSPass($user);
+ if ($cvs_reply === 2) {
+ $this->_setCVSUser($user);
+ }
+
+ if($this->users === null) $this->_loadUserData();
+ return isset($this->users[$user]) ? $this->users[$user] : false;
+ }
+
+ /**
+ * Remove one or more users from the list of registered users
+ *
+ * @author Christopher Smith <[email protected]>
+ * @param array $users array of users to be deleted
+ * @return int the number of users deleted
+ */
+ function deleteUsers($users) {
+ $deleted = array();
+ foreach ($users as $key => $user) {
+ $cvs_reply = $this->_checkCVSPass($user);
+ // user exists because we got a password mismatch error
+ if($cvs_reply === 2) {
+ unset($users[$key]);
+ }
+ }
+
+ $users = array_values($users);
+
+ return parent::deleteUsers($users);
+ }
+}
+
+// vim:ts=4:sw=4:et:--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php