123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?php
- class Autopromote {
-
- public static function getAutopromoteGroups( User $user ) {
- global $wgAutopromote;
- $promote = array();
- foreach( $wgAutopromote as $group => $cond ) {
- if( self::recCheckCondition( $cond, $user ) )
- $promote[] = $group;
- }
-
- wfRunHooks( 'GetAutoPromoteGroups', array( $user, &$promote ) );
-
- return $promote;
- }
-
- private static function recCheckCondition( $cond, User $user ) {
- $validOps = array( '&', '|', '^', '!' );
- if( is_array( $cond ) && count( $cond ) >= 2 && in_array( $cond[0], $validOps ) ) {
-
- if( $cond[0] == '&' ) {
- foreach( array_slice( $cond, 1 ) as $subcond )
- if( !self::recCheckCondition( $subcond, $user ) )
- return false;
- return true;
- } elseif( $cond[0] == '|' ) {
- foreach( array_slice( $cond, 1 ) as $subcond )
- if( self::recCheckCondition( $subcond, $user ) )
- return true;
- return false;
- } elseif( $cond[0] == '^' ) {
- $res = null;
- foreach( array_slice( $cond, 1 ) as $subcond ) {
- if( is_null( $res ) )
- $res = self::recCheckCondition( $subcond, $user );
- else
- $res = ($res xor self::recCheckCondition( $subcond, $user ));
- }
- return $res;
- } elseif ( $cond[0] = '!' ) {
- foreach( array_slice( $cond, 1 ) as $subcond )
- if( self::recCheckCondition( $subcond, $user ) )
- return false;
- return true;
- }
- }
-
-
- if( !is_array( $cond ) )
- $cond = array( $cond );
- return self::checkCondition( $cond, $user );
- }
-
- private static function checkCondition( $cond, User $user ) {
- if( count( $cond ) < 1 )
- return false;
- switch( $cond[0] ) {
- case APCOND_EMAILCONFIRMED:
- if( User::isValidEmailAddr( $user->getEmail() ) ) {
- global $wgEmailAuthentication;
- if( $wgEmailAuthentication ) {
- return (bool)$user->getEmailAuthenticationTimestamp();
- } else {
- return true;
- }
- }
- return false;
- case APCOND_EDITCOUNT:
- return $user->getEditCount() >= $cond[1];
- case APCOND_AGE:
- $age = time() - wfTimestampOrNull( TS_UNIX, $user->getRegistration() );
- return $age >= $cond[1];
- case APCOND_AGE_FROM_EDIT:
- $age = time() - wfTimestampOrNull( TS_UNIX, $user->getFirstEditTimestamp() );
- return $age >= $cond[1];
- case APCOND_INGROUPS:
- $groups = array_slice( $cond, 1 );
- return count( array_intersect( $groups, $user->getGroups() ) ) == count( $groups );
- case APCOND_ISIP:
- return $cond[1] == wfGetIP();
- case APCOND_IPINRANGE:
- return IP::isInRange( wfGetIP(), $cond[1] );
- default:
- $result = null;
- wfRunHooks( 'AutopromoteCondition', array( $cond[0], array_slice( $cond, 1 ), $user, &$result ) );
- if( $result === null ) {
- throw new MWException( "Unrecognized condition {$cond[0]} for autopromotion!" );
- }
- return $result ? true : false;
- }
- }
- }
|