Completed
Push — 3 ( ffc074...f4b13f )
by Damian
08:03
created

Member_GroupSet::removeAll()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 30
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 19
nc 1
nop 0
dl 0
loc 30
rs 8.8571
c 0
b 0
f 0
1
<?php
2
/**
3
 * The member class which represents the users of the system
4
 *
5
 * @package framework
6
 * @subpackage security
7
 *
8
 * @property string $FirstName
9
 * @property string $Surname
10
 * @property string $Email
11
 * @property string $Password
12
 * @property string $RememberLoginToken
13
 * @property string $TempIDHash
14
 * @property string $TempIDExpired
15
 * @property int $NumVisit @deprecated 4.0
16
 * @property string $LastVisited @deprecated 4.0
17
 * @property string $AutoLoginHash
18
 * @property string $AutoLoginExpired
19
 * @property string $PasswordEncryption
20
 * @property string $Salt
21
 * @property string $PasswordExpiry
22
 * @property string $LockedOutUntil
23
 * @property string $Locale
24
 * @property int $FailedLoginCount
25
 * @property string $DateFormat
26
 * @property string $TimeFormat
27
 */
28
class Member extends DataObject implements TemplateGlobalProvider {
29
30
	private static $db = array(
31
		'FirstName' => 'Varchar',
32
		'Surname' => 'Varchar',
33
		'Email' => 'Varchar(254)', // See RFC 5321, Section 4.5.3.1.3. (256 minus the < and > character)
34
		'TempIDHash' => 'Varchar(160)', // Temporary id used for cms re-authentication
35
		'TempIDExpired' => 'SS_Datetime', // Expiry of temp login
36
		'Password' => 'Varchar(160)',
37
		'RememberLoginToken' => 'Varchar(160)', // Note: this currently holds a hash, not a token.
38
		'NumVisit' => 'Int', // @deprecated 4.0
39
		'LastVisited' => 'SS_Datetime', // @deprecated 4.0
40
		'AutoLoginHash' => 'Varchar(160)', // Used to auto-login the user on password reset
41
		'AutoLoginExpired' => 'SS_Datetime',
42
		// This is an arbitrary code pointing to a PasswordEncryptor instance,
43
		// not an actual encryption algorithm.
44
		// Warning: Never change this field after its the first password hashing without
45
		// providing a new cleartext password as well.
46
		'PasswordEncryption' => "Varchar(50)",
47
		'Salt' => 'Varchar(50)',
48
		'PasswordExpiry' => 'Date',
49
		'LockedOutUntil' => 'SS_Datetime',
50
		'Locale' => 'Varchar(6)',
51
		// handled in registerFailedLogin(), only used if $lock_out_after_incorrect_logins is set
52
		'FailedLoginCount' => 'Int',
53
		// In ISO format
54
		'DateFormat' => 'Varchar(30)',
55
		'TimeFormat' => 'Varchar(30)',
56
	);
57
58
	private static $belongs_many_many = array(
59
		'Groups' => 'Group',
60
	);
61
62
	private static $has_one = array();
63
64
	private static $has_many = array(
65
		'LoggedPasswords' => 'MemberPassword',
66
	);
67
68
	private static $many_many = array();
69
70
	private static $many_many_extraFields = array();
71
72
	private static $default_sort = '"Surname", "FirstName"';
73
74
	private static $indexes = array(
75
		'Email' => true,
76
		//Removed due to duplicate null values causing MSSQL problems
77
		//'AutoLoginHash' => Array('type'=>'unique', 'value'=>'AutoLoginHash', 'ignoreNulls'=>true)
0 ignored issues
show
Unused Code Comprehensibility introduced by
70% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
78
	);
79
80
	/**
81
	 * @config
82
	 * @var boolean
83
	 */
84
	private static $notify_password_change = false;
85
86
	/**
87
	 * Flag whether or not member visits should be logged (count only)
88
	 *
89
	 * @deprecated 4.0
90
	 * @var bool
91
	 * @config
92
	 */
93
	private static $log_last_visited = true;
94
95
	/**
96
	 * Flag whether we should count number of visits
97
	 *
98
	 * @deprecated 4.0
99
	 * @var bool
100
	 * @config
101
	 */
102
	private static $log_num_visits = true;
103
104
	/**
105
	 * All searchable database columns
106
	 * in this object, currently queried
107
	 * with a "column LIKE '%keywords%'
108
	 * statement.
109
	 *
110
	 * @var array
111
	 * @todo Generic implementation of $searchable_fields on DataObject,
112
	 * with definition for different searching algorithms
113
	 * (LIKE, FULLTEXT) and default FormFields to construct a searchform.
114
	 */
115
	private static $searchable_fields = array(
116
		'FirstName',
117
		'Surname',
118
		'Email',
119
	);
120
121
	/**
122
	 * @config
123
	 * @var array
124
	 */
125
	private static $summary_fields = array(
126
		'FirstName',
127
		'Surname',
128
		'Email',
129
	);
130
131
	/**
132
	 * @config
133
	 * @var array
134
	 */
135
	private static $casting = array(
136
		'Name' => 'Varchar',
137
	);
138
139
	/**
140
	 * Internal-use only fields
141
	 *
142
	 * @config
143
	 * @var array
144
	 */
145
	private static $hidden_fields = array(
146
		'RememberLoginToken',
147
		'AutoLoginHash',
148
		'AutoLoginExpired',
149
		'PasswordEncryption',
150
		'PasswordExpiry',
151
		'LockedOutUntil',
152
		'TempIDHash',
153
		'TempIDExpired',
154
		'Salt',
155
		'NumVisit', // @deprecated 4.0
156
	);
157
158
	/**
159
	 * @config
160
	 * @var Array See {@link set_title_columns()}
161
	 */
162
	private static $title_format = null;
163
164
	/**
165
	 * The unique field used to identify this member.
166
	 * By default, it's "Email", but another common
167
	 * field could be Username.
168
	 *
169
	 * @config
170
	 * @var string
171
	 */
172
	private static $unique_identifier_field = 'Email';
173
174
	/**
175
	 * @config
176
	 * {@link PasswordValidator} object for validating user's password
177
	 */
178
	private static $password_validator = null;
179
180
	/**
181
	 * @config
182
	 * The number of days that a password should be valid for.
183
	 * By default, this is null, which means that passwords never expire
184
	 */
185
	private static $password_expiry_days = null;
186
187
	/**
188
	 * @config
189
	 * @var Int Number of incorrect logins after which
190
	 * the user is blocked from further attempts for the timespan
191
	 * defined in {@link $lock_out_delay_mins}.
192
	 */
193
	private static $lock_out_after_incorrect_logins = 10;
194
195
	/**
196
	 * @config
197
	 * @var integer Minutes of enforced lockout after incorrect password attempts.
198
	 * Only applies if {@link $lock_out_after_incorrect_logins} greater than 0.
199
	 */
200
	private static $lock_out_delay_mins = 15;
201
202
	/**
203
	 * @config
204
	 * @var String If this is set, then a session cookie with the given name will be set on log-in,
205
	 * and cleared on logout.
206
	 */
207
	private static $login_marker_cookie = null;
208
209
	/**
210
	 * Indicates that when a {@link Member} logs in, Member:session_regenerate_id()
211
	 * should be called as a security precaution.
212
	 *
213
	 * This doesn't always work, especially if you're trying to set session cookies
214
	 * across an entire site using the domain parameter to session_set_cookie_params()
215
	 *
216
	 * @config
217
	 * @var boolean
218
	 */
219
	private static $session_regenerate_id = true;
220
221
222
	/**
223
	 * Default lifetime of temporary ids.
224
	 *
225
	 * This is the period within which a user can be re-authenticated within the CMS by entering only their password
226
	 * and without losing their workspace.
227
	 *
228
	 * Any session expiration outside of this time will require them to login from the frontend using their full
229
	 * username and password.
230
	 *
231
	 * Defaults to 72 hours. Set to zero to disable expiration.
232
	 *
233
	 * @config
234
	 * @var int Lifetime in seconds
235
	 */
236
	private static $temp_id_lifetime = 259200;
237
238
	/**
239
	 * @deprecated 4.0 Use the "Member.session_regenerate_id" config setting instead
240
	 */
241
	public static function set_session_regenerate_id($bool) {
242
		Deprecation::notice('4.0', 'Use the "Member.session_regenerate_id" config setting instead');
243
		self::config()->session_regenerate_id = $bool;
0 ignored issues
show
Documentation introduced by
The property session_regenerate_id does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
244
	}
245
246
	/**
247
	 * Ensure the locale is set to something sensible by default.
248
	 */
249
	public function populateDefaults() {
250
		parent::populateDefaults();
251
		$this->Locale = i18n::get_closest_translation(i18n::get_locale());
252
	}
253
254
	public function requireDefaultRecords() {
255
		parent::requireDefaultRecords();
256
		// Default groups should've been built by Group->requireDefaultRecords() already
257
		static::default_admin();
258
	}
259
260
	/**
261
	 * Get the default admin record if it exists, or creates it otherwise if enabled
262
	 *
263
	 * @return Member
264
	 */
265
	public static function default_admin() {
266
		// Check if set
267
		if(!Security::has_default_admin()) return null;
268
269
		// Find or create ADMIN group
270
		singleton('Group')->requireDefaultRecords();
271
		$adminGroup = Permission::get_groups_by_permission('ADMIN')->First();
272
273
		// Find member
274
		$admin = Member::get()
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
275
			->filter('Email', Security::default_admin_username())
276
			->first();
277
		if(!$admin) {
278
			// 'Password' is not set to avoid creating
279
			// persistent logins in the database. See Security::setDefaultAdmin().
280
			// Set 'Email' to identify this as the default admin
281
			$admin = Member::create();
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
282
			$admin->FirstName = _t('Member.DefaultAdminFirstname', 'Default Admin');
283
			$admin->Email = Security::default_admin_username();
284
			$admin->write();
285
		}
286
287
		// Ensure this user is in the admin group
288
		if(!$admin->inGroup($adminGroup)) {
289
			// Add member to group instead of adding group to member
290
			// This bypasses the privilege escallation code in Member_GroupSet
291
			$adminGroup
292
				->DirectMembers()
293
				->add($admin);
294
		}
295
296
		return $admin;
297
	}
298
299
	/**
300
	 * If this is called, then a session cookie will be set to "1" whenever a user
301
	 * logs in.  This lets 3rd party tools, such as apache's mod_rewrite, detect
302
	 * whether a user is logged in or not and alter behaviour accordingly.
303
	 *
304
	 * One known use of this is to bypass static caching for logged in users.  This is
305
	 * done by putting this into _config.php
306
	 * <pre>
307
	 * Member::set_login_marker_cookie("SS_LOGGED_IN");
308
	 * </pre>
309
	 *
310
	 * And then adding this condition to each of the rewrite rules that make use of
311
	 * the static cache.
312
	 * <pre>
313
	 * RewriteCond %{HTTP_COOKIE} !SS_LOGGED_IN=1
314
	 * </pre>
315
	 *
316
	 * @deprecated 4.0 Use the "Member.login_marker_cookie" config setting instead
317
	 * @param $cookieName string The name of the cookie to set.
318
	 */
319
	public static function set_login_marker_cookie($cookieName) {
320
		Deprecation::notice('4.0', 'Use the "Member.login_marker_cookie" config setting instead');
321
		self::config()->login_marker_cookie = $cookieName;
0 ignored issues
show
Documentation introduced by
The property login_marker_cookie does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
322
	}
323
324
	/**
325
	 * Check if the passed password matches the stored one (if the member is not locked out).
326
	 *
327
	 * @param string $password
328
	 * @return ValidationResult
329
	 */
330
	public function checkPassword($password) {
331
		$result = $this->canLogIn();
332
333
		// Short-circuit the result upon failure, no further checks needed.
334
		if (!$result->valid()) {
335
			return $result;
336
		}
337
338
		// Allow default admin to login as self
339
		if($this->isDefaultAdmin() && Security::check_default_admin($this->Email, $password)) {
340
			return $result;
341
		}
342
343
		// Check a password is set on this member
344
		if(empty($this->Password) && $this->exists()) {
345
			$result->error(_t('Member.NoPassword','There is no password on this member.'));
346
			return $result;
347
		}
348
349
		$e = PasswordEncryptor::create_for_algorithm($this->PasswordEncryption);
350
		if(!$e->check($this->Password, $password, $this->Salt, $this)) {
351
			$result->error(_t (
352
				'Member.ERRORWRONGCRED',
353
				'The provided details don\'t seem to be correct. Please try again.'
354
			));
355
		}
356
357
		return $result;
358
	}
359
360
	/**
361
	 * Check if this user is the currently configured default admin
362
	 *
363
	 * @return bool
364
	 */
365
	public function isDefaultAdmin() {
366
		return Security::has_default_admin()
367
			&& $this->Email === Security::default_admin_username();
368
	}
369
370
	/**
371
	 * Returns a valid {@link ValidationResult} if this member can currently log in, or an invalid
372
	 * one with error messages to display if the member is locked out.
373
	 *
374
	 * You can hook into this with a "canLogIn" method on an attached extension.
375
	 *
376
	 * @return ValidationResult
377
	 */
378
	public function canLogIn() {
379
		$result = ValidationResult::create();
380
381
		if($this->isLockedOut()) {
382
			$result->error(
383
				_t(
384
					'Member.ERRORLOCKEDOUT2',
385
					'Your account has been temporarily disabled because of too many failed attempts at ' .
386
					'logging in. Please try again in {count} minutes.',
387
					null,
388
					array('count' => $this->config()->lock_out_delay_mins)
389
				)
390
			);
391
		}
392
393
		$this->extend('canLogIn', $result);
394
		return $result;
395
	}
396
397
	/**
398
	 * Returns true if this user is locked out
399
	 */
400
	public function isLockedOut() {
401
		$state = true;
402
		if ($this->LockedOutUntil && $this->dbObject('LockedOutUntil')->InFuture()) {
403
			$state = true;
404
		} elseif ($this->config()->lock_out_after_incorrect_logins <= 0) {
405
			$state = false;
406
		} else {
407
			$email = $this->{static::config()->unique_identifier_field};
408
			$attempts = LoginAttempt::getByEmail($email)
409
				->sort('Created', 'DESC')
410
				->limit($this->config()->lock_out_after_incorrect_logins);
411
412
			if ($attempts->count() < $this->config()->lock_out_after_incorrect_logins) {
413
				$state = false;
414
			} else {
415
416
				$success = false;
417
				foreach ($attempts as $attempt) {
418
					if ($attempt->Status === 'Success') {
419
						$success = true;
420
						$state = false;
421
						break;
422
					}
423
				}
424
425
				if (!$success) {
426
					$lockedOutUntil = $attempts->first()->dbObject('Created')->Format('U')
427
					                  + ($this->config()->lock_out_delay_mins * 60);
428
					if (SS_Datetime::now()->Format('U') < $lockedOutUntil) {
429
						$state = true;
430
					} else {
431
						$state = false;
432
					}
433
				}
434
			}
435
		}
436
437
		$this->extend('updateIsLockedOut', $state);
438
		return $state;
439
	}
440
441
	/**
442
	 * Regenerate the session_id.
443
	 * This wrapper is here to make it easier to disable calls to session_regenerate_id(), should you need to.
444
	 * They have caused problems in certain
445
	 * quirky problems (such as using the Windmill 0.3.6 proxy).
446
	 */
447
	public static function session_regenerate_id() {
448
		if(!self::config()->session_regenerate_id) return;
449
450
		// This can be called via CLI during testing.
451
		if(Director::is_cli()) return;
452
453
		$file = '';
454
		$line = '';
455
456
		// @ is to supress win32 warnings/notices when session wasn't cleaned up properly
457
		// There's nothing we can do about this, because it's an operating system function!
458
		if(!headers_sent($file, $line)) @session_regenerate_id(true);
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
459
	}
460
461
	/**
462
	 * Get the field used for uniquely identifying a member
463
	 * in the database. {@see Member::$unique_identifier_field}
464
	 *
465
	 * @deprecated 4.0 Use the "Member.unique_identifier_field" config setting instead
466
	 * @return string
467
	 */
468
	public static function get_unique_identifier_field() {
469
		Deprecation::notice('4.0', 'Use the "Member.unique_identifier_field" config setting instead');
470
		return Member::config()->unique_identifier_field;
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
471
	}
472
473
	/**
474
	 * Set the field used for uniquely identifying a member
475
	 * in the database. {@see Member::$unique_identifier_field}
476
	 *
477
	 * @deprecated 4.0 Use the "Member.unique_identifier_field" config setting instead
478
	 * @param $field The field name to set as the unique field
479
	 */
480
	public static function set_unique_identifier_field($field) {
481
		Deprecation::notice('4.0', 'Use the "Member.unique_identifier_field" config setting instead');
482
		Member::config()->unique_identifier_field = $field;
0 ignored issues
show
Documentation introduced by
The property unique_identifier_field does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
483
	}
484
485
	/**
486
	 * Set a {@link PasswordValidator} object to use to validate member's passwords.
487
	 */
488
	public static function set_password_validator($pv) {
489
		self::$password_validator = $pv;
490
	}
491
492
	/**
493
	 * Returns the current {@link PasswordValidator}
494
	 */
495
	public static function password_validator() {
496
		return self::$password_validator;
497
	}
498
499
	/**
500
	 * Set the number of days that a password should be valid for.
501
	 * Set to null (the default) to have passwords never expire.
502
	 *
503
	 * @deprecated 4.0 Use the "Member.password_expiry_days" config setting instead
504
	 */
505
	public static function set_password_expiry($days) {
506
		Deprecation::notice('4.0', 'Use the "Member.password_expiry_days" config setting instead');
507
		self::config()->password_expiry_days = $days;
0 ignored issues
show
Documentation introduced by
The property password_expiry_days does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
508
	}
509
510
	/**
511
	 * Configure the security system to lock users out after this many incorrect logins
512
	 *
513
	 * @deprecated 4.0 Use the "Member.lock_out_after_incorrect_logins" config setting instead
514
	 */
515
	public static function lock_out_after_incorrect_logins($numLogins) {
516
		Deprecation::notice('4.0', 'Use the "Member.lock_out_after_incorrect_logins" config setting instead');
517
		self::config()->lock_out_after_incorrect_logins = $numLogins;
0 ignored issues
show
Documentation introduced by
The property lock_out_after_incorrect_logins does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
518
	}
519
520
521
	public function isPasswordExpired() {
522
		if(!$this->PasswordExpiry) return false;
523
		return strtotime(date('Y-m-d')) >= strtotime($this->PasswordExpiry);
524
	}
525
526
	/**
527
	 * Logs this member in
528
	 *
529
	 * @param bool $remember If set to TRUE, the member will be logged in automatically the next time.
530
	 */
531
	public function logIn($remember = false) {
532
		$this->extend('beforeMemberLoggedIn');
533
534
		self::session_regenerate_id();
535
536
		Session::set("loggedInAs", $this->ID);
537
		// This lets apache rules detect whether the user has logged in
538
		if(Member::config()->login_marker_cookie) Cookie::set(Member::config()->login_marker_cookie, 1, 0);
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
539
540
		$this->addVisit();
0 ignored issues
show
Deprecated Code introduced by
The method Member::addVisit() has been deprecated with message: 4.0

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
541
542
		// Only set the cookie if autologin is enabled
543
		if($remember && Security::config()->autologin_enabled) {
544
			// Store the hash and give the client the cookie with the token.
545
			$generator = new RandomGenerator();
546
			$token = $generator->randomToken('sha1');
547
			$hash = $this->encryptWithUserSettings($token);
548
			$this->RememberLoginToken = $hash;
549
			Cookie::set('alc_enc', $this->ID . ':' . $token, 90, null, null, null, true);
550
		} else {
551
			$this->RememberLoginToken = null;
552
			Cookie::force_expiry('alc_enc');
553
		}
554
555
		// Clear the incorrect log-in count
556
		$this->registerSuccessfulLogin();
557
558
		// Don't set column if its not built yet (the login might be precursor to a /dev/build...)
559
		if(array_key_exists('LockedOutUntil', DB::field_list('Member'))) {
560
			$this->LockedOutUntil = null;
561
		}
562
563
		$this->regenerateTempID();
564
565
		$this->write();
566
567
		// Audit logging hook
568
		$this->extend('memberLoggedIn');
569
	}
570
571
	/**
572
	 * @deprecated 4.0
573
	 */
574
	public function addVisit() {
575
		if($this->config()->log_num_visits) {
576
			Deprecation::notice(
577
				'4.0',
578
				'Member::$NumVisit is deprecated. From 4.0 onwards you should implement this as a custom extension'
579
			);
580
			$this->NumVisit++;
581
		}
582
	}
583
584
	/**
585
	 * Trigger regeneration of TempID.
586
	 *
587
	 * This should be performed any time the user presents their normal identification (normally Email)
588
	 * and is successfully authenticated.
589
	 */
590
	public function regenerateTempID() {
591
		$generator = new RandomGenerator();
592
		$this->TempIDHash = $generator->randomToken('sha1');
593
		$this->TempIDExpired = self::config()->temp_id_lifetime
594
			? date('Y-m-d H:i:s', strtotime(SS_Datetime::now()->getValue()) + self::config()->temp_id_lifetime)
595
			: null;
596
		$this->write();
597
	}
598
599
	/**
600
	 * Check if the member ID logged in session actually
601
	 * has a database record of the same ID. If there is
602
	 * no logged in user, FALSE is returned anyway.
603
	 *
604
	 * @return boolean TRUE record found FALSE no record found
605
	 */
606
	public static function logged_in_session_exists() {
607
		if($id = Member::currentUserID()) {
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
608
			if($member = DataObject::get_by_id('Member', $id)) {
609
				if($member->exists()) return true;
610
			}
611
		}
612
613
		return false;
614
	}
615
616
	/**
617
	 * Log the user in if the "remember login" cookie is set
618
	 *
619
	 * The <i>remember login token</i> will be changed on every successful
620
	 * auto-login.
621
	 */
622
	public static function autoLogin() {
623
		// Don't bother trying this multiple times
624
		self::$_already_tried_to_auto_log_in = true;
625
626
		if(!Security::config()->autologin_enabled
627
			|| strpos(Cookie::get('alc_enc'), ':') === false
628
			|| Session::get("loggedInAs")
629
			|| !Security::database_is_ready()
630
		) {
631
			return;
632
		}
633
634
		list($uid, $token) = explode(':', Cookie::get('alc_enc'), 2);
635
636
		if (!$uid || !$token) {
637
			return;
638
		}
639
640
		$member = DataObject::get_by_id("Member", $uid);
641
642
		// check if autologin token matches
643
		if($member) {
644
			$hash = $member->encryptWithUserSettings($token);
645
			if(!$member->RememberLoginToken || $member->RememberLoginToken !== $hash) {
646
				$member = null;
647
			}
648
		}
649
650
		if($member) {
651
			self::session_regenerate_id();
652
			Session::set("loggedInAs", $member->ID);
653
			// This lets apache rules detect whether the user has logged in
654
			if(Member::config()->login_marker_cookie) {
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
655
				Cookie::set(Member::config()->login_marker_cookie, 1, 0, null, null, false, true);
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
656
			}
657
658
			$generator = new RandomGenerator();
659
			$token = $generator->randomToken('sha1');
660
			$hash = $member->encryptWithUserSettings($token);
661
			$member->RememberLoginToken = $hash;
0 ignored issues
show
Documentation introduced by
The property RememberLoginToken does not exist on object<DataObject>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
662
			Cookie::set('alc_enc', $member->ID . ':' . $token, 90, null, null, false, true);
663
664
			$member->addVisit();
665
			$member->write();
666
667
			// Audit logging hook
668
			$member->extend('memberAutoLoggedIn');
669
		}
670
	}
671
672
	/**
673
	 * Logs this member out.
674
	 */
675
	public function logOut() {
676
		$this->extend('beforeMemberLoggedOut');
677
678
		Session::clear("loggedInAs");
679
		if(Member::config()->login_marker_cookie) Cookie::set(Member::config()->login_marker_cookie, null, 0);
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
680
681
		Session::destroy();
682
683
		$this->extend('memberLoggedOut');
684
685
		$this->RememberLoginToken = null;
686
		Cookie::force_expiry('alc_enc');
687
688
		// Switch back to live in order to avoid infinite loops when
689
		// redirecting to the login screen (if this login screen is versioned)
690
		Session::clear('readingMode');
691
692
		$this->write();
693
694
		// Audit logging hook
695
		$this->extend('memberLoggedOut');
696
	}
697
698
	/**
699
	 * Utility for generating secure password hashes for this member.
700
	 */
701
	public function encryptWithUserSettings($string) {
702
		if (!$string) return null;
703
704
		// If the algorithm or salt is not available, it means we are operating
705
		// on legacy account with unhashed password. Do not hash the string.
706
		if (!$this->PasswordEncryption) {
707
			return $string;
708
		}
709
710
		// We assume we have PasswordEncryption and Salt available here.
711
		$e = PasswordEncryptor::create_for_algorithm($this->PasswordEncryption);
712
		return $e->encrypt($string, $this->Salt);
713
714
	}
715
716
	/**
717
	 * Generate an auto login token which can be used to reset the password,
718
	 * at the same time hashing it and storing in the database.
719
	 *
720
	 * @param int $lifetime The lifetime of the auto login hash in days (by default 2 days)
721
	 *
722
	 * @returns string Token that should be passed to the client (but NOT persisted).
723
	 *
724
	 * @todo Make it possible to handle database errors such as a "duplicate key" error
725
	 */
726
	public function generateAutologinTokenAndStoreHash($lifetime = 2) {
727
		do {
728
			$generator = new RandomGenerator();
729
			$token = $generator->randomToken();
730
			$hash = $this->encryptWithUserSettings($token);
731
		} while(DataObject::get_one('Member', array(
732
			'"Member"."AutoLoginHash"' => $hash
733
		)));
734
735
		$this->AutoLoginHash = $hash;
736
		$this->AutoLoginExpired = date('Y-m-d H:i:s', time() + (86400 * $lifetime));
737
738
		$this->write();
739
740
		return $token;
741
	}
742
743
	/**
744
	 * Check the token against the member.
745
	 *
746
	 * @param string $autologinToken
747
	 *
748
	 * @returns bool Is token valid?
749
	 */
750
	public function validateAutoLoginToken($autologinToken) {
751
		$hash = $this->encryptWithUserSettings($autologinToken);
752
		$member = self::member_from_autologinhash($hash, false);
753
		return (bool)$member;
754
	}
755
756
	/**
757
	 * Return the member for the auto login hash
758
	 *
759
	 * @param string $hash The hash key
760
	 * @param bool $login Should the member be logged in?
761
	 *
762
	 * @return Member the matching member, if valid
763
	 * @return Member
764
	 */
765
	public static function member_from_autologinhash($hash, $login = false) {
766
767
		$nowExpression = DB::get_conn()->now();
768
		$member = DataObject::get_one('Member', array(
769
			"\"Member\".\"AutoLoginHash\"" => $hash,
770
			"\"Member\".\"AutoLoginExpired\" > $nowExpression" // NOW() can't be parameterised
771
		));
772
773
		if($login && $member) $member->logIn();
774
775
		return $member;
776
	}
777
778
	/**
779
	 * Find a member record with the given TempIDHash value
780
	 *
781
	 * @param string $tempid
782
	 * @return Member
783
	 */
784
	public static function member_from_tempid($tempid) {
785
		$members = Member::get()
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
786
			->filter('TempIDHash', $tempid);
787
788
		// Exclude expired
789
		if(static::config()->temp_id_lifetime) {
790
			$members = $members->filter('TempIDExpired:GreaterThan', SS_Datetime::now()->getValue());
791
		}
792
793
		return $members->first();
794
	}
795
796
	/**
797
	 * Returns the fields for the member form - used in the registration/profile module.
798
	 * It should return fields that are editable by the admin and the logged-in user.
799
	 *
800
	 * @return FieldList Returns a {@link FieldList} containing the fields for
801
	 *                   the member form.
802
	 */
803
	public function getMemberFormFields() {
804
		$fields = parent::getFrontendFields();
0 ignored issues
show
Comprehensibility Bug introduced by
It seems like you call parent on a different method (getFrontendFields() instead of getMemberFormFields()). Are you sure this is correct? If so, you might want to change this to $this->getFrontendFields().

This check looks for a call to a parent method whose name is different than the method from which it is called.

Consider the following code:

class Daddy
{
    protected function getFirstName()
    {
        return "Eidur";
    }

    protected function getSurName()
    {
        return "Gudjohnsen";
    }
}

class Son
{
    public function getFirstName()
    {
        return parent::getSurname();
    }
}

The getFirstName() method in the Son calls the wrong method in the parent class.

Loading history...
805
806
		$fields->replaceField('Password', $this->getMemberPasswordField());
807
808
		$fields->replaceField('Locale', new DropdownField (
809
			'Locale',
810
			$this->fieldLabel('Locale'),
811
			i18n::get_existing_translations()
812
		));
813
814
		$fields->removeByName(static::config()->hidden_fields);
815
		$fields->removeByName('LastVisited');
816
		$fields->removeByName('FailedLoginCount');
817
818
819
		$this->extend('updateMemberFormFields', $fields);
820
		return $fields;
821
	}
822
823
	/**
824
	 * Builds "Change / Create Password" field for this member
825
	 *
826
	 * @return ConfirmedPasswordField
827
	 */
828
	public function getMemberPasswordField() {
829
		$editingPassword = $this->isInDB();
830
		$label = $editingPassword
831
			? _t('Member.EDIT_PASSWORD', 'New Password')
832
			: $this->fieldLabel('Password');
833
		/** @var ConfirmedPasswordField $password */
834
		$password = ConfirmedPasswordField::create(
835
			'Password',
836
			$label,
837
			null,
838
			null,
839
			$editingPassword
840
		);
841
842
		// If editing own password, require confirmation of existing
843
		if($editingPassword && $this->ID == Member::currentUserID()) {
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
844
			$password->setRequireExistingPassword(true);
845
		}
846
847
		$password->setCanBeEmpty(true);
848
		$this->extend('updateMemberPasswordField', $password);
849
		return $password;
850
	}
851
852
853
	/**
854
	 * Returns the {@link RequiredFields} instance for the Member object. This
855
	 * Validator is used when saving a {@link CMSProfileController} or added to
856
	 * any form responsible for saving a users data.
857
	 *
858
	 * To customize the required fields, add a {@link DataExtension} to member
859
	 * calling the `updateValidator()` method.
860
	 *
861
	 * @return Member_Validator
862
	 */
863
	public function getValidator() {
864
		$validator = Injector::inst()->create('Member_Validator');
865
		$validator->setForMember($this);
866
		$this->extend('updateValidator', $validator);
867
868
		return $validator;
869
	}
870
871
872
	/**
873
	 * Returns the current logged in user
874
	 *
875
	 * @return Member|null
876
	 */
877
	public static function currentUser() {
878
		$id = Member::currentUserID();
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
879
880
		if($id) {
881
			return DataObject::get_by_id('Member', $id) ?: null;
882
		}
883
	}
884
885
	/**
886
	 * Get the ID of the current logged in user
887
	 *
888
	 * @return int Returns the ID of the current logged in user or 0.
889
	 */
890
	public static function currentUserID() {
891
		$id = Session::get("loggedInAs");
892
		if(!$id && !self::$_already_tried_to_auto_log_in) {
893
			self::autoLogin();
894
			$id = Session::get("loggedInAs");
895
		}
896
897
		return is_numeric($id) ? (int) $id : 0;
898
	}
899
	private static $_already_tried_to_auto_log_in = false;
900
901
902
	/*
903
	 * Generate a random password, with randomiser to kick in if there's no words file on the
904
	 * filesystem.
905
	 *
906
	 * @return string Returns a random password.
907
	 * @deprecated 3.6.0..4.0.0
908
	 */
909
	public static function create_new_password() {
910
		Deprecation::notice('4.0', 'Please use Security/lostpassword to reset a password');
911
		$words = Config::inst()->get('Security', 'word_list');
912
913
		if($words && file_exists($words)) {
914
			$words = file($words);
915
916
			list($usec, $sec) = explode(' ', microtime());
917
			srand($sec + ((float) $usec * 100000));
918
919
			$word = trim($words[rand(0,sizeof($words)-1)]);
920
			$number = rand(10,999);
921
922
			return $word . $number;
923
		} else {
924
			$random = rand();
925
			$string = md5($random);
926
			$output = substr($string, 0, 8);
927
			return $output;
928
		}
929
	}
930
931
	/**
932
	 * Event handler called before writing to the database.
933
	 */
934
	public function onBeforeWrite() {
935
		if($this->SetPassword) $this->Password = $this->SetPassword;
0 ignored issues
show
Bug introduced by
The property SetPassword does not seem to exist. Did you mean Password?

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
936
937
		// If a member with the same "unique identifier" already exists with a different ID, don't allow merging.
938
		// Note: This does not a full replacement for safeguards in the controller layer (e.g. in a registration form),
939
		// but rather a last line of defense against data inconsistencies.
940
		$identifierField = Member::config()->unique_identifier_field;
0 ignored issues
show
Documentation introduced by
The property unique_identifier_field does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
941
		if($this->$identifierField) {
942
943
			// Note: Same logic as Member_Validator class
944
			$filter = array("\"$identifierField\"" => $this->$identifierField);
945
			if($this->ID) {
946
				$filter[] = array('"Member"."ID" <> ?' => $this->ID);
947
			}
948
			$existingRecord = DataObject::get_one('Member', $filter);
949
950
			if($existingRecord) {
951
				throw new ValidationException(ValidationResult::create(false, _t(
952
					'Member.ValidationIdentifierFailed',
953
					'Can\'t overwrite existing member #{id} with identical identifier ({name} = {value}))',
954
					'Values in brackets show "fieldname = value", usually denoting an existing email address',
955
					array(
956
						'id' => $existingRecord->ID,
957
						'name' => $identifierField,
958
						'value' => $this->$identifierField
959
					)
960
				)));
961
			}
962
		}
963
964
		// We don't send emails out on dev/tests sites to prevent accidentally spamming users.
965
		// However, if TestMailer is in use this isn't a risk.
966
		if(
967
			(Director::isLive() || Email::mailer() instanceof TestMailer)
968
			&& $this->isChanged('Password')
969
			&& $this->record['Password']
970
			&& $this->config()->notify_password_change
971
		) {
972
			$e = Member_ChangePasswordEmail::create();
973
			$e->populateTemplate($this);
974
			$e->setTo($this->Email);
975
			$e->send();
976
		}
977
978
		// The test on $this->ID is used for when records are initially created.
979
		// Note that this only works with cleartext passwords, as we can't rehash
980
		// existing passwords.
981
		if((!$this->ID && $this->Password) || $this->isChanged('Password')) {
982
			//reset salt so that it gets regenerated - this will invalidate any persistant login cookies
983
			// or other information encrypted with this Member's settings (see self::encryptWithUserSettings)
984
			$this->Salt = '';
985
			// Password was changed: encrypt the password according the settings
986
			$encryption_details = Security::encrypt_password(
987
				$this->Password, // this is assumed to be cleartext
988
				$this->Salt,
989
				$this->isChanged('PasswordEncryption') ? $this->PasswordEncryption : null,
990
				$this
991
			);
992
993
			// Overwrite the Password property with the hashed value
994
			$this->Password = $encryption_details['password'];
995
			$this->Salt = $encryption_details['salt'];
996
			$this->PasswordEncryption = $encryption_details['algorithm'];
997
998
			// If we haven't manually set a password expiry
999
			if(!$this->isChanged('PasswordExpiry')) {
1000
				// then set it for us
1001
				if(self::config()->password_expiry_days) {
1002
					$this->PasswordExpiry = date('Y-m-d', time() + 86400 * self::config()->password_expiry_days);
1003
				} else {
1004
					$this->PasswordExpiry = null;
1005
				}
1006
			}
1007
		}
1008
1009
		// save locale
1010
		if(!$this->Locale) {
1011
			$this->Locale = i18n::get_locale();
1012
		}
1013
1014
		parent::onBeforeWrite();
1015
	}
1016
1017
	public function onAfterWrite() {
1018
		parent::onAfterWrite();
1019
1020
		Permission::flush_permission_cache();
1021
1022
		if($this->isChanged('Password')) {
1023
			MemberPassword::log($this);
1024
		}
1025
	}
1026
1027
	public function onAfterDelete() {
1028
		parent::onAfterDelete();
1029
1030
		//prevent orphaned records remaining in the DB
1031
		$this->deletePasswordLogs();
1032
	}
1033
1034
	/**
1035
	 * Delete the MemberPassword objects that are associated to this user
1036
	 *
1037
	 * @return self
1038
	 */
1039
	protected function deletePasswordLogs() {
1040
		foreach ($this->LoggedPasswords() as $password) {
1041
			$password->delete();
1042
			$password->destroy();
1043
		}
1044
		return $this;
1045
	}
1046
1047
	/**
1048
	 * Filter out admin groups to avoid privilege escalation,
1049
	 * If any admin groups are requested, deny the whole save operation.
1050
	 *
1051
	 * @param Array $ids Database IDs of Group records
1052
	 * @return boolean True if the change can be accepted
1053
	 */
1054
	public function onChangeGroups($ids) {
1055
		// unless the current user is an admin already OR the logged in user is an admin
1056
		if(Permission::check('ADMIN') || Permission::checkMember($this, 'ADMIN')) {
1057
			return true;
1058
		}
1059
1060
		// If there are no admin groups in this set then it's ok
1061
		$adminGroups = Permission::get_groups_by_permission('ADMIN');
1062
		$adminGroupIDs = ($adminGroups) ? $adminGroups->column('ID') : array();
1063
		return count(array_intersect($ids, $adminGroupIDs)) == 0;
1064
	}
1065
1066
1067
	/**
1068
	 * Check if the member is in one of the given groups.
1069
	 *
1070
	 * @param array|SS_List $groups Collection of {@link Group} DataObjects to check
1071
	 * @param boolean $strict Only determine direct group membership if set to true (Default: false)
1072
	 * @return bool Returns TRUE if the member is in one of the given groups, otherwise FALSE.
1073
	 */
1074
	public function inGroups($groups, $strict = false) {
1075
		if($groups) foreach($groups as $group) {
1076
			if($this->inGroup($group, $strict)) return true;
1077
		}
1078
1079
		return false;
1080
	}
1081
1082
1083
	/**
1084
	 * Check if the member is in the given group or any parent groups.
1085
	 *
1086
	 * @param int|Group|string $group Group instance, Group Code or ID
1087
	 * @param boolean $strict Only determine direct group membership if set to TRUE (Default: FALSE)
1088
	 * @return bool Returns TRUE if the member is in the given group, otherwise FALSE.
1089
	 */
1090
	public function inGroup($group, $strict = false) {
1091
		if(is_numeric($group)) {
1092
			$groupCheckObj = DataObject::get_by_id('Group', $group);
1093
		} elseif(is_string($group)) {
1094
			$groupCheckObj = DataObject::get_one('Group', array(
1095
				'"Group"."Code"' => $group
1096
			));
1097
		} elseif($group instanceof Group) {
1098
			$groupCheckObj = $group;
1099
		} else {
1100
			user_error('Member::inGroup(): Wrong format for $group parameter', E_USER_ERROR);
1101
		}
1102
1103
		if(!$groupCheckObj) return false;
0 ignored issues
show
Bug introduced by
The variable $groupCheckObj does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
1104
1105
		$groupCandidateObjs = ($strict) ? $this->getManyManyComponents("Groups") : $this->Groups();
1106
		if($groupCandidateObjs) foreach($groupCandidateObjs as $groupCandidateObj) {
1107
			if($groupCandidateObj->ID == $groupCheckObj->ID) return true;
1108
		}
1109
1110
		return false;
1111
	}
1112
1113
	/**
1114
	 * Adds the member to a group. This will create the group if the given
1115
	 * group code does not return a valid group object.
1116
	 *
1117
	 * @param string $groupcode
1118
	 * @param string Title of the group
1119
	 */
1120
	public function addToGroupByCode($groupcode, $title = "") {
1121
		$group = DataObject::get_one('Group', array(
1122
			'"Group"."Code"' => $groupcode
1123
		));
1124
1125
		if($group) {
1126
			$this->Groups()->add($group);
1127
		} else {
1128
			if(!$title) $title = $groupcode;
1129
1130
			$group = new Group();
1131
			$group->Code = $groupcode;
1132
			$group->Title = $title;
1133
			$group->write();
1134
1135
			$this->Groups()->add($group);
1136
		}
1137
	}
1138
1139
	/**
1140
	 * Removes a member from a group.
1141
	 *
1142
	 * @param string $groupcode
1143
	 */
1144
	public function removeFromGroupByCode($groupcode) {
1145
		$group = Group::get()->filter(array('Code' => $groupcode))->first();
1146
1147
		if($group) {
1148
			$this->Groups()->remove($group);
1149
		}
1150
	}
1151
1152
	/**
1153
	 * @param Array $columns Column names on the Member record to show in {@link getTitle()}.
1154
	 * @param String $sep Separator
1155
	 */
1156
	public static function set_title_columns($columns, $sep = ' ') {
1157
		if (!is_array($columns)) $columns = array($columns);
1158
		self::config()->title_format = array('columns' => $columns, 'sep' => $sep);
0 ignored issues
show
Documentation introduced by
The property title_format does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
1159
	}
1160
1161
	//------------------- HELPER METHODS -----------------------------------//
1162
1163
	/**
1164
	 * Get the complete name of the member, by default in the format "<Surname>, <FirstName>".
1165
	 * Falls back to showing either field on its own.
1166
	 *
1167
	 * You can overload this getter with {@link set_title_format()}
1168
	 * and {@link set_title_sql()}.
1169
	 *
1170
	 * @return string Returns the first- and surname of the member. If the ID
1171
	 *  of the member is equal 0, only the surname is returned.
1172
	 */
1173
	public function getTitle() {
1174
		$format = $this->config()->title_format;
0 ignored issues
show
Documentation introduced by
The property title_format does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
1175
		if ($format) {
1176
			$values = array();
1177
			foreach($format['columns'] as $col) {
1178
				$values[] = $this->getField($col);
1179
			}
1180
			return join($format['sep'], $values);
1181
		}
1182
		if($this->getField('ID') === 0)
1183
			return $this->getField('Surname');
1184
		else{
1185
			if($this->getField('Surname') && $this->getField('FirstName')){
1186
				return $this->getField('Surname') . ', ' . $this->getField('FirstName');
1187
			}elseif($this->getField('Surname')){
1188
				return $this->getField('Surname');
1189
			}elseif($this->getField('FirstName')){
1190
				return $this->getField('FirstName');
1191
			}else{
1192
				return null;
1193
			}
1194
		}
1195
	}
1196
1197
	/**
1198
	 * Return a SQL CONCAT() fragment suitable for a SELECT statement.
1199
	 * Useful for custom queries which assume a certain member title format.
1200
	 *
1201
	 * @param String $tableName
1202
	 * @return String SQL
1203
	 */
1204
	public static function get_title_sql($tableName = 'Member') {
1205
		// This should be abstracted to SSDatabase concatOperator or similar.
1206
		$op = (DB::get_conn() instanceof MSSQLDatabase) ? " + " : " || ";
0 ignored issues
show
Bug introduced by
The class MSSQLDatabase does not exist. Did you forget a USE statement, or did you not list all dependencies?

This error could be the result of:

1. Missing dependencies

PHP Analyzer uses your composer.json file (if available) to determine the dependencies of your project and to determine all the available classes and functions. It expects the composer.json to be in the root folder of your repository.

Are you sure this class is defined by one of your dependencies, or did you maybe not list a dependency in either the require or require-dev section?

2. Missing use statement

PHP does not complain about undefined classes in ìnstanceof checks. For example, the following PHP code will work perfectly fine:

if ($x instanceof DoesNotExist) {
    // Do something.
}

If you have not tested against this specific condition, such errors might go unnoticed.

Loading history...
1207
1208
		$format = self::config()->title_format;
0 ignored issues
show
Documentation introduced by
The property title_format does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
1209
		if ($format) {
1210
			$columnsWithTablename = array();
1211
			foreach($format['columns'] as $column) {
1212
				$columnsWithTablename[] = "\"$tableName\".\"$column\"";
1213
			}
1214
1215
			return "(".join(" $op '".$format['sep']."' $op ", $columnsWithTablename).")";
1216
		} else {
1217
			return "(\"$tableName\".\"Surname\" $op ' ' $op \"$tableName\".\"FirstName\")";
1218
		}
1219
	}
1220
1221
1222
	/**
1223
	 * Get the complete name of the member
1224
	 *
1225
	 * @return string Returns the first- and surname of the member.
1226
	 */
1227
	public function getName() {
1228
		return ($this->Surname) ? trim($this->FirstName . ' ' . $this->Surname) : $this->FirstName;
1229
	}
1230
1231
1232
	/**
1233
	 * Set first- and surname
1234
	 *
1235
	 * This method assumes that the last part of the name is the surname, e.g.
1236
	 * <i>A B C</i> will result in firstname <i>A B</i> and surname <i>C</i>
1237
	 *
1238
	 * @param string $name The name
1239
	 */
1240
	public function setName($name) {
1241
		$nameParts = explode(' ', $name);
1242
		$this->Surname = array_pop($nameParts);
1243
		$this->FirstName = join(' ', $nameParts);
1244
	}
1245
1246
1247
	/**
1248
	 * Alias for {@link setName}
1249
	 *
1250
	 * @param string $name The name
1251
	 * @see setName()
1252
	 */
1253
	public function splitName($name) {
1254
		return $this->setName($name);
1255
	}
1256
1257
	/**
1258
	 * Override the default getter for DateFormat so the
1259
	 * default format for the user's locale is used
1260
	 * if the user has not defined their own.
1261
	 *
1262
	 * @return string ISO date format
1263
	 */
1264
	public function getDateFormat() {
1265
		if($this->getField('DateFormat')) {
1266
			return $this->getField('DateFormat');
1267
		} else {
1268
			return Config::inst()->get('i18n', 'date_format');
1269
		}
1270
	}
1271
1272
	/**
1273
	 * Override the default getter for TimeFormat so the
1274
	 * default format for the user's locale is used
1275
	 * if the user has not defined their own.
1276
	 *
1277
	 * @return string ISO date format
1278
	 */
1279
	public function getTimeFormat() {
1280
		if($this->getField('TimeFormat')) {
1281
			return $this->getField('TimeFormat');
1282
		} else {
1283
			return Config::inst()->get('i18n', 'time_format');
1284
		}
1285
	}
1286
1287
	//---------------------------------------------------------------------//
1288
1289
1290
	/**
1291
	 * Get a "many-to-many" map that holds for all members their group memberships,
1292
	 * including any parent groups where membership is implied.
1293
	 * Use {@link DirectGroups()} to only retrieve the group relations without inheritance.
1294
	 *
1295
	 * @todo Push all this logic into Member_GroupSet's getIterator()?
1296
	 * @return Member_Groupset
1297
	 */
1298
	public function Groups() {
1299
		$groups = Member_GroupSet::create('Group', 'Group_Members', 'GroupID', 'MemberID');
1300
		$groups = $groups->forForeignID($this->ID);
1301
1302
		$this->extend('updateGroups', $groups);
1303
1304
		return $groups;
1305
	}
1306
1307
	/**
1308
	 * @return ManyManyList
1309
	 */
1310
	public function DirectGroups() {
1311
		return $this->getManyManyComponents('Groups');
1312
	}
1313
1314
	/**
1315
	 * Get a member SQLMap of members in specific groups
1316
	 *
1317
	 * If no $groups is passed, all members will be returned
1318
	 *
1319
	 * @param mixed $groups - takes a SS_List, an array or a single Group.ID
1320
	 * @return SQLMap Returns an SQLMap that returns all Member data.
1321
	 * @see map()
1322
	 */
1323
	public static function map_in_groups($groups = null) {
1324
		$groupIDList = array();
1325
1326
		if($groups instanceof SS_List) {
1327
			foreach( $groups as $group ) {
1328
				$groupIDList[] = $group->ID;
1329
			}
1330
		} elseif(is_array($groups)) {
1331
			$groupIDList = $groups;
1332
		} elseif($groups) {
1333
			$groupIDList[] = $groups;
1334
		}
1335
1336
		// No groups, return all Members
1337
		if(!$groupIDList) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $groupIDList of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1338
			return Member::get()->sort(array('Surname'=>'ASC', 'FirstName'=>'ASC'))->map();
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
1339
		}
1340
1341
		$membersList = new ArrayList();
1342
		// This is a bit ineffective, but follow the ORM style
1343
		foreach(Group::get()->byIDs($groupIDList) as $group) {
1344
			$membersList->merge($group->Members());
1345
		}
1346
1347
		$membersList->removeDuplicates('ID');
1348
		return $membersList->map();
1349
	}
1350
1351
1352
	/**
1353
	 * Get a map of all members in the groups given that have CMS permissions
1354
	 *
1355
	 * If no groups are passed, all groups with CMS permissions will be used.
1356
	 *
1357
	 * @param array $groups Groups to consider or NULL to use all groups with
1358
	 *                      CMS permissions.
1359
	 * @return SS_Map Returns a map of all members in the groups given that
1360
	 *                have CMS permissions.
1361
	 */
1362
	public static function mapInCMSGroups($groups = null) {
1363
		if(!$groups || $groups->Count() == 0) {
0 ignored issues
show
Bug introduced by
The method Count cannot be called on $groups (of type array).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
1364
			$perms = array('ADMIN', 'CMS_ACCESS_AssetAdmin');
1365
1366
			if(class_exists('CMSMain')) {
1367
				$cmsPerms = singleton('CMSMain')->providePermissions();
1368
			} else {
1369
				$cmsPerms = singleton('LeftAndMain')->providePermissions();
1370
			}
1371
1372
			if(!empty($cmsPerms)) {
1373
				$perms = array_unique(array_merge($perms, array_keys($cmsPerms)));
1374
			}
1375
1376
			$permsClause = DB::placeholders($perms);
1377
			$groups = DataObject::get('Group')
1378
				->innerJoin("Permission", '"Permission"."GroupID" = "Group"."ID"')
1379
				->where(array(
1380
					"\"Permission\".\"Code\" IN ($permsClause)" => $perms
1381
				));
1382
		}
1383
1384
		$groupIDList = array();
1385
1386
		if(is_a($groups, 'SS_List')) {
1387
			foreach($groups as $group) {
1388
				$groupIDList[] = $group->ID;
1389
			}
1390
		} elseif(is_array($groups)) {
1391
			$groupIDList = $groups;
1392
		}
1393
1394
		$members = Member::get()
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
1395
			->innerJoin("Group_Members", '"Group_Members"."MemberID" = "Member"."ID"')
1396
			->innerJoin("Group", '"Group"."ID" = "Group_Members"."GroupID"');
1397
		if($groupIDList) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $groupIDList of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1398
			$groupClause = DB::placeholders($groupIDList);
1399
			$members = $members->where(array(
1400
				"\"Group\".\"ID\" IN ($groupClause)" => $groupIDList
1401
			));
1402
		}
1403
1404
		return $members->sort('"Member"."Surname", "Member"."FirstName"')->map();
1405
	}
1406
1407
1408
	/**
1409
	 * Get the groups in which the member is NOT in
1410
	 *
1411
	 * When passed an array of groups, and a component set of groups, this
1412
	 * function will return the array of groups the member is NOT in.
1413
	 *
1414
	 * @param array $groupList An array of group code names.
1415
	 * @param array $memberGroups A component set of groups (if set to NULL,
1416
	 *                            $this->groups() will be used)
1417
	 * @return array Groups in which the member is NOT in.
1418
	 */
1419
	public function memberNotInGroups($groupList, $memberGroups = null){
1420
		if(!$memberGroups) $memberGroups = $this->Groups();
1421
1422
		foreach($memberGroups as $group) {
1423
			if(in_array($group->Code, $groupList)) {
1424
				$index = array_search($group->Code, $groupList);
1425
				unset($groupList[$index]);
1426
			}
1427
		}
1428
1429
		return $groupList;
1430
	}
1431
1432
1433
	/**
1434
	 * Return a {@link FieldList} of fields that would appropriate for editing
1435
	 * this member.
1436
	 *
1437
	 * @return FieldList Return a FieldList of fields that would appropriate for
1438
	 *                   editing this member.
1439
	 */
1440
	public function getCMSFields() {
1441
		require_once 'Zend/Date.php';
1442
1443
		$self = $this;
1444
		$this->beforeUpdateCMSFields(function(FieldList $fields) use ($self) {
1445
			/** @var FieldList $mainFields */
1446
			$mainFields = $fields->fieldByName("Root")->fieldByName("Main")->getChildren();
1447
1448
			// Build change password field
1449
			$mainFields->replaceField('Password', $self->getMemberPasswordField());
1450
1451
			$mainFields->replaceField('Locale', new DropdownField(
1452
				"Locale",
1453
				_t('Member.INTERFACELANG', "Interface Language", 'Language of the CMS'),
1454
				i18n::get_existing_translations()
1455
			));
1456
1457
			$mainFields->removeByName($self->config()->hidden_fields);
1458
1459
			// make sure that the "LastVisited" field exists
1460
			// it may have been removed using $self->config()->hidden_fields
1461
			if($mainFields->fieldByName("LastVisited")){
1462
			$mainFields->makeFieldReadonly('LastVisited');
1463
			}
1464
1465
			if( ! $self->config()->lock_out_after_incorrect_logins) {
1466
				$mainFields->removeByName('FailedLoginCount');
1467
			}
1468
1469
1470
			// Groups relation will get us into logical conflicts because
1471
			// Members are displayed within  group edit form in SecurityAdmin
1472
			$fields->removeByName('Groups');
1473
1474
			// Members shouldn't be able to directly view/edit logged passwords
1475
			$fields->removeByName('LoggedPasswords');
1476
1477
			if(Permission::check('EDIT_PERMISSIONS')) {
1478
				$groupsMap = array();
1479
				foreach(Group::get() as $group) {
1480
					// Listboxfield values are escaped, use ASCII char instead of &raquo;
1481
					$groupsMap[$group->ID] = $group->getBreadcrumbs(' > ');
1482
				}
1483
				asort($groupsMap);
1484
				$fields->addFieldToTab('Root.Main',
1485
					ListboxField::create('DirectGroups', singleton('Group')->i18n_plural_name())
1486
						->setMultiple(true)
1487
						->setSource($groupsMap)
1488
						->setAttribute(
1489
							'data-placeholder',
1490
							_t('Member.ADDGROUP', 'Add group', 'Placeholder text for a dropdown')
1491
						)
1492
				);
1493
1494
1495
				// Add permission field (readonly to avoid complicated group assignment logic).
1496
				// This should only be available for existing records, as new records start
1497
				// with no permissions until they have a group assignment anyway.
1498
				if($self->ID) {
1499
					$permissionsField = new PermissionCheckboxSetField_Readonly(
1500
						'Permissions',
1501
						false,
1502
						'Permission',
1503
						'GroupID',
1504
						// we don't want parent relationships, they're automatically resolved in the field
1505
						$self->getManyManyComponents('Groups')
1506
					);
1507
					$fields->findOrMakeTab('Root.Permissions', singleton('Permission')->i18n_plural_name());
1508
					$fields->addFieldToTab('Root.Permissions', $permissionsField);
1509
				}
1510
			}
1511
1512
			$permissionsTab = $fields->fieldByName("Root")->fieldByName('Permissions');
1513
			if($permissionsTab) $permissionsTab->addExtraClass('readonly');
1514
1515
			$defaultDateFormat = Zend_Locale_Format::getDateFormat(new Zend_Locale($self->Locale));
1516
			$dateFormatMap = array(
1517
				'MMM d, yyyy' => Zend_Date::now()->toString('MMM d, yyyy'),
1518
				'yyyy/MM/dd' => Zend_Date::now()->toString('yyyy/MM/dd'),
1519
				'MM/dd/yyyy' => Zend_Date::now()->toString('MM/dd/yyyy'),
1520
				'dd/MM/yyyy' => Zend_Date::now()->toString('dd/MM/yyyy'),
1521
			);
1522
			$dateFormatMap[$defaultDateFormat] = Zend_Date::now()->toString($defaultDateFormat)
1523
				. sprintf(' (%s)', _t('Member.DefaultDateTime', 'default'));
1524
			$mainFields->push(
1525
				$dateFormatField = new MemberDatetimeOptionsetField(
1526
					'DateFormat',
1527
					$self->fieldLabel('DateFormat'),
1528
					$dateFormatMap
1529
				)
1530
			);
1531
			$dateFormatField->setValue($self->DateFormat);
1532
1533
			$defaultTimeFormat = Zend_Locale_Format::getTimeFormat(new Zend_Locale($self->Locale));
1534
			$timeFormatMap = array(
1535
				'h:mm a' => Zend_Date::now()->toString('h:mm a'),
1536
				'H:mm' => Zend_Date::now()->toString('H:mm'),
1537
			);
1538
			$timeFormatMap[$defaultTimeFormat] = Zend_Date::now()->toString($defaultTimeFormat)
1539
				. sprintf(' (%s)', _t('Member.DefaultDateTime', 'default'));
1540
			$mainFields->push(
1541
				$timeFormatField = new MemberDatetimeOptionsetField(
1542
					'TimeFormat',
1543
					$self->fieldLabel('TimeFormat'),
1544
					$timeFormatMap
1545
				)
1546
			);
1547
			$timeFormatField->setValue($self->TimeFormat);
1548
		});
1549
1550
		return parent::getCMSFields();
1551
	}
1552
1553
	/**
1554
	 *
1555
	 * @param boolean $includerelations a boolean value to indicate if the labels returned include relation fields
1556
	 *
1557
	 */
1558
	public function fieldLabels($includerelations = true) {
1559
		$labels = parent::fieldLabels($includerelations);
1560
1561
		$labels['FirstName'] = _t('Member.FIRSTNAME', 'First Name');
1562
		$labels['Surname'] = _t('Member.SURNAME', 'Surname');
1563
		$labels['Email'] = _t('Member.EMAIL', 'Email');
1564
		$labels['Password'] = _t('Member.db_Password', 'Password');
1565
		$labels['NumVisit'] = _t('Member.db_NumVisit', 'Number of Visits');
1566
		$labels['LastVisited'] = _t('Member.db_LastVisited', 'Last Visited Date');
1567
		$labels['PasswordExpiry'] = _t('Member.db_PasswordExpiry', 'Password Expiry Date', 'Password expiry date');
1568
		$labels['LockedOutUntil'] = _t('Member.db_LockedOutUntil', 'Locked out until', 'Security related date');
1569
		$labels['Locale'] = _t('Member.db_Locale', 'Interface Locale');
1570
		$labels['DateFormat'] = _t('Member.DATEFORMAT', 'Date format');
1571
		$labels['TimeFormat'] = _t('Member.TIMEFORMAT', 'Time format');
1572
		if($includerelations){
1573
			$labels['Groups'] = _t('Member.belongs_many_many_Groups', 'Groups',
1574
				'Security Groups this member belongs to');
1575
		}
1576
		return $labels;
1577
	}
1578
1579
	/**
1580
	 * Users can view their own record.
1581
	 * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions.
1582
	 * This is likely to be customized for social sites etc. with a looser permission model.
1583
	 */
1584
	public function canView($member = null) {
1585
		if(!$member || !(is_a($member, 'Member')) || is_numeric($member)) $member = Member::currentUser();
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
1586
1587
		// extended access checks
1588
		$results = $this->extend('canView', $member);
1589
		if($results && is_array($results)) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $results of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1590
			if(!min($results)) return false;
1591
			else return true;
1592
		}
1593
1594
		// members can usually edit their own record
1595
		if($member && $this->ID == $member->ID) return true;
1596
1597
		if(
1598
			Permission::checkMember($member, 'ADMIN')
1599
			|| Permission::checkMember($member, 'CMS_ACCESS_SecurityAdmin')
1600
		) {
1601
			return true;
1602
		}
1603
1604
		return false;
1605
	}
1606
1607
	/**
1608
	 * Users can edit their own record.
1609
	 * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions
1610
	 */
1611
	public function canEdit($member = null) {
1612
		if(!$member || !(is_a($member, 'Member')) || is_numeric($member)) $member = Member::currentUser();
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
1613
1614
		// extended access checks
1615
		$results = $this->extend('canEdit', $member);
1616
		if($results && is_array($results)) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $results of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1617
			if(!min($results)) return false;
1618
			else return true;
1619
		}
1620
1621
		// No member found
1622
		if(!($member && $member->exists())) return false;
1623
1624
		// If the requesting member is not an admin, but has access to manage members,
1625
		// they still can't edit other members with ADMIN permission.
1626
		// This is a bit weak, strictly speaking they shouldn't be allowed to
1627
		// perform any action that could change the password on a member
1628
		// with "higher" permissions than himself, but thats hard to determine.
1629
		if(!Permission::checkMember($member, 'ADMIN') && Permission::checkMember($this, 'ADMIN')) return false;
1630
1631
		return $this->canView($member);
1632
	}
1633
1634
	/**
1635
	 * Users can edit their own record.
1636
	 * Otherwise they'll need ADMIN or CMS_ACCESS_SecurityAdmin permissions
1637
	 */
1638
	public function canDelete($member = null) {
1639
		if(!$member || !(is_a($member, 'Member')) || is_numeric($member)) $member = Member::currentUser();
0 ignored issues
show
Coding Style introduced by
As per coding style, self should be used for accessing local static members.

This check looks for accesses to local static members using the fully qualified name instead of self::.

<?php

class Certificate {
    const TRIPLEDES_CBC = 'ASDFGHJKL';

    private $key;

    public function __construct()
    {
        $this->key = Certificate::TRIPLEDES_CBC;
    }
}

While this is perfectly valid, the fully qualified name of Certificate::TRIPLEDES_CBC could just as well be replaced by self::TRIPLEDES_CBC. Referencing local members with self:: assured the access will still work when the class is renamed, makes it perfectly clear that the member is in fact local and will usually be shorter.

Loading history...
1640
1641
		// extended access checks
1642
		$results = $this->extend('canDelete', $member);
1643
		if($results && is_array($results)) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $results of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1644
			if(!min($results)) return false;
1645
			else return true;
1646
		}
1647
1648
		// No member found
1649
		if(!($member && $member->exists())) return false;
1650
1651
		// Members are not allowed to remove themselves,
1652
		// since it would create inconsistencies in the admin UIs.
1653
		if($this->ID && $member->ID == $this->ID) return false;
1654
1655
		return $this->canEdit($member);
1656
	}
1657
1658
1659
	/**
1660
	 * Validate this member object.
1661
	 */
1662
	public function validate() {
1663
		$valid = parent::validate();
1664
1665
		if(!$this->ID || $this->isChanged('Password')) {
1666
			if($this->Password && self::$password_validator) {
1667
				$valid->combineAnd(self::$password_validator->validate($this->Password, $this));
1668
			}
1669
		}
1670
1671
		if((!$this->ID && $this->SetPassword) || $this->isChanged('SetPassword')) {
0 ignored issues
show
Bug introduced by
The property SetPassword does not seem to exist. Did you mean Password?

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
1672
			if($this->SetPassword && self::$password_validator) {
0 ignored issues
show
Bug introduced by
The property SetPassword does not seem to exist. Did you mean Password?

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
1673
				$valid->combineAnd(self::$password_validator->validate($this->SetPassword, $this));
0 ignored issues
show
Bug introduced by
The property SetPassword does not seem to exist. Did you mean Password?

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
1674
			}
1675
		}
1676
1677
		return $valid;
1678
	}
1679
1680
	/**
1681
	 * Change password. This will cause rehashing according to
1682
	 * the `PasswordEncryption` property.
1683
	 *
1684
	 * @param String $password Cleartext password
1685
	 */
1686
	public function changePassword($password) {
1687
		$this->Password = $password;
1688
		$valid = $this->validate();
1689
1690
		if($valid->valid()) {
1691
			$this->AutoLoginHash = null;
1692
			$this->write();
1693
		}
1694
1695
		return $valid;
1696
	}
1697
1698
	/**
1699
	 * Tell this member that someone made a failed attempt at logging in as them.
1700
	 * This can be used to lock the user out temporarily if too many failed attempts are made.
1701
	 */
1702
	public function registerFailedLogin() {
1703
		if(self::config()->lock_out_after_incorrect_logins) {
1704
			// Keep a tally of the number of failed log-ins so that we can lock people out
1705
			++$this->FailedLoginCount;
1706
1707
			if($this->FailedLoginCount >= self::config()->lock_out_after_incorrect_logins) {
1708
				$lockoutMins = self::config()->lock_out_delay_mins;
0 ignored issues
show
Documentation introduced by
The property lock_out_delay_mins does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
1709
				$this->LockedOutUntil = date('Y-m-d H:i:s', SS_Datetime::now()->Format('U') + $lockoutMins*60);
1710
				$this->FailedLoginCount = 0;
1711
			}
1712
		}
1713
		$this->extend('registerFailedLogin');
1714
		$this->write();
1715
	}
1716
1717
	/**
1718
	 * Tell this member that a successful login has been made
1719
	 */
1720
	public function registerSuccessfulLogin() {
1721
		if(self::config()->lock_out_after_incorrect_logins) {
1722
			// Forgive all past login failures
1723
			$this->FailedLoginCount = 0;
1724
			$this->LockedOutUntil = null;
1725
			$this->write();
1726
		}
1727
        $this->extend('onAfterRegisterSuccessfulLogin');
1728
	}
1729
	/**
1730
	 * Get the HtmlEditorConfig for this user to be used in the CMS.
1731
	 * This is set by the group. If multiple configurations are set,
1732
	 * the one with the highest priority wins.
1733
	 *
1734
	 * @return string
1735
	 */
1736
	public function getHtmlEditorConfigForCMS() {
1737
		$currentName = '';
1738
		$currentPriority = 0;
1739
1740
		foreach($this->Groups() as $group) {
1741
			$configName = $group->HtmlEditorConfig;
1742
			if($configName) {
1743
				$config = HtmlEditorConfig::get($group->HtmlEditorConfig);
1744
				if($config && $config->getOption('priority') > $currentPriority) {
1745
					$currentName = $configName;
1746
					$currentPriority = $config->getOption('priority');
1747
				}
1748
			}
1749
		}
1750
1751
		// If can't find a suitable editor, just default to cms
1752
		return $currentName ? $currentName : 'cms';
1753
	}
1754
1755
	public static function get_template_global_variables() {
1756
		return array(
1757
			'CurrentMember' => 'currentUser',
1758
			'currentUser',
1759
		);
1760
	}
1761
}
1762
1763
/**
1764
 * Represents a set of Groups attached to a member.
1765
 * Handles the hierarchy logic.
1766
 * @package framework
1767
 * @subpackage security
1768
 */
1769
class Member_GroupSet extends ManyManyList {
1770
1771
	protected function linkJoinTable() {
1772
		// Do not join the table directly
1773
		if($this->extraFields) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $this->extraFields of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1774
			user_error('Member_GroupSet does not support many_many_extraFields', E_USER_ERROR);
1775
		}
1776
	}
1777
1778
	/**
1779
	 * Link this group set to a specific member.
1780
	 *
1781
	 * Recursively selects all groups applied to this member, as well as any
1782
	 * parent groups of any applied groups
1783
	 *
1784
	 * @param array|integer $id (optional) An ID or an array of IDs - if not provided, will use the current
1785
	 * ids as per getForeignID
1786
	 * @return array Condition In array(SQL => parameters format)
1787
	 */
1788
	public function foreignIDFilter($id = null) {
1789
		if ($id === null) $id = $this->getForeignID();
1790
1791
		// Find directly applied groups
1792
		$manyManyFilter = parent::foreignIDFilter($id);
1793
		$query = new SQLQuery('"Group_Members"."GroupID"', '"Group_Members"', $manyManyFilter);
0 ignored issues
show
Bug introduced by
It seems like $manyManyFilter defined by parent::foreignIDFilter($id) on line 1792 can also be of type null; however, SQLQuery::__construct() does only seem to accept array, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
Deprecated Code introduced by
The class SQLQuery has been deprecated with message: since version 4.0

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
1794
		$groupIDs = $query->execute()->column();
1795
1796
		// Get all ancestors, iteratively merging these into the master set
1797
		$allGroupIDs = array();
1798
		while($groupIDs) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $groupIDs of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1799
			$allGroupIDs = array_merge($allGroupIDs, $groupIDs);
1800
			$groupIDs = DataObject::get("Group")->byIDs($groupIDs)->column("ParentID");
1801
			$groupIDs = array_filter($groupIDs);
1802
		}
1803
1804
		// Add a filter to this DataList
1805
		if(!empty($allGroupIDs)) {
1806
			$allGroupIDsPlaceholders = DB::placeholders($allGroupIDs);
1807
			return array("\"Group\".\"ID\" IN ($allGroupIDsPlaceholders)" => $allGroupIDs);
1808
		} else {
1809
			return array('"Group"."ID"' => 0);
1810
		}
1811
	}
1812
1813
	public function foreignIDWriteFilter($id = null) {
1814
		// Use the ManyManyList::foreignIDFilter rather than the one
1815
		// in this class, otherwise we end up selecting all inherited groups
1816
		return parent::foreignIDFilter($id);
0 ignored issues
show
Comprehensibility Bug introduced by
It seems like you call parent on a different method (foreignIDFilter() instead of foreignIDWriteFilter()). Are you sure this is correct? If so, you might want to change this to $this->foreignIDFilter().

This check looks for a call to a parent method whose name is different than the method from which it is called.

Consider the following code:

class Daddy
{
    protected function getFirstName()
    {
        return "Eidur";
    }

    protected function getSurName()
    {
        return "Gudjohnsen";
    }
}

class Son
{
    public function getFirstName()
    {
        return parent::getSurname();
    }
}

The getFirstName() method in the Son calls the wrong method in the parent class.

Loading history...
1817
	}
1818
1819
	public function add($item, $extraFields = null) {
1820
		// Get Group.ID
1821
		$itemID = null;
1822
		if(is_numeric($item)) {
1823
			$itemID = $item;
1824
		} else if($item instanceof Group) {
1825
			$itemID = $item->ID;
1826
		}
1827
1828
		// Check if this group is allowed to be added
1829
		if($this->canAddGroups(array($itemID))) {
1830
			parent::add($item, $extraFields);
1831
		}
1832
	}
1833
1834
	public function removeAll() {
1835
		$base = ClassInfo::baseDataClass($this->dataClass());
1836
1837
		// Remove the join to the join table to avoid MySQL row locking issues.
1838
		$query = $this->dataQuery();
1839
		$foreignFilter = $query->getQueryParam('Foreign.Filter');
1840
		$query->removeFilterOn($foreignFilter);
1841
1842
		$selectQuery = $query->query();
1843
		$selectQuery->setSelect("\"{$base}\".\"ID\"");
1844
1845
		$from = $selectQuery->getFrom();
1846
		unset($from[$this->joinTable]);
1847
		$selectQuery->setFrom($from);
1848
		$selectQuery->setOrderBy(); // ORDER BY in subselects breaks MS SQL Server and is not necessary here
1849
		$selectQuery->setDistinct(false);
1850
1851
		// Use a sub-query as SQLite does not support setting delete targets in
1852
		// joined queries.
1853
		$delete = new SQLDelete();
1854
		$delete->setFrom("\"{$this->joinTable}\"");
1855
		// Use ManyManyList::foreignIDFilter() rather than the one in this class
1856
		// otherwise we end up selecting the wrong columns
1857
		$delete->addWhere(parent::foreignIDFilter());
0 ignored issues
show
Comprehensibility Bug introduced by
It seems like you call parent on a different method (foreignIDFilter() instead of removeAll()). Are you sure this is correct? If so, you might want to change this to $this->foreignIDFilter().

This check looks for a call to a parent method whose name is different than the method from which it is called.

Consider the following code:

class Daddy
{
    protected function getFirstName()
    {
        return "Eidur";
    }

    protected function getSurName()
    {
        return "Gudjohnsen";
    }
}

class Son
{
    public function getFirstName()
    {
        return parent::getSurname();
    }
}

The getFirstName() method in the Son calls the wrong method in the parent class.

Loading history...
1858
		$subSelect = $selectQuery->sql($parameters);
1859
		$delete->addWhere(array(
1860
			"\"{$this->joinTable}\".\"{$this->localKey}\" IN ($subSelect)" => $parameters
1861
		));
1862
		$delete->execute();
1863
	}
1864
1865
	/**
1866
	 * Determine if the following groups IDs can be added
1867
	 *
1868
	 * @param array $itemIDs
1869
	 * @return boolean
1870
	 */
1871
	protected function canAddGroups($itemIDs) {
1872
		if(empty($itemIDs)) {
1873
			return true;
1874
		}
1875
		$member = $this->getMember();
1876
		return empty($member) || $member->onChangeGroups($itemIDs);
1877
	}
1878
1879
	/**
1880
	 * Get foreign member record for this relation
1881
	 *
1882
	 * @return Member
1883
	 */
1884
	protected function getMember() {
1885
		$id = $this->getForeignID();
1886
		if($id) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $id of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
1887
			return DataObject::get_by_id('Member', $id);
1888
		}
1889
	}
1890
}
1891
1892
/**
1893
 * Class used as template to send an email saying that the password has been
1894
 * changed.
1895
 *
1896
 * @package framework
1897
 * @subpackage security
1898
 */
1899
class Member_ChangePasswordEmail extends Email {
1900
1901
	protected $from = '';   // setting a blank from address uses the site's default administrator email
1902
	protected $subject = '';
1903
	protected $ss_template = 'ChangePasswordEmail';
1904
1905
	public function __construct() {
1906
		parent::__construct();
1907
1908
		$this->subject = _t('Member.SUBJECTPASSWORDCHANGED', "Your password has been changed", 'Email subject');
1909
	}
1910
}
1911
1912
1913
1914
/**
1915
 * Class used as template to send the forgot password email
1916
 *
1917
 * @package framework
1918
 * @subpackage security
1919
 */
1920
class Member_ForgotPasswordEmail extends Email {
1921
	protected $from = '';  // setting a blank from address uses the site's default administrator email
1922
	protected $subject = '';
1923
	protected $ss_template = 'ForgotPasswordEmail';
1924
1925
	public function __construct() {
1926
		parent::__construct();
1927
1928
		$this->subject = _t('Member.SUBJECTPASSWORDRESET', "Your password reset link", 'Email subject');
1929
	}
1930
}
1931
1932
/**
1933
 * Member Validator
1934
 *
1935
 * Custom validation for the Member object can be achieved either through an
1936
 * {@link DataExtension} on the Member_Validator object or, by specifying a subclass of
1937
 * {@link Member_Validator} through the {@link Injector} API.
1938
 * The Validator can also be modified by adding an Extension to Member and implement the
1939
 * <code>updateValidator</code> hook.
1940
 * {@see Member::getValidator()}
1941
 *
1942
 * Additional required fields can also be set via config API, eg.
1943
 * <code>
1944
 * Member_Validator:
1945
 *   customRequired:
1946
 *     - Surname
1947
 * </code>
1948
 *
1949
 * @package framework
1950
 * @subpackage security
1951
 */
1952
class Member_Validator extends RequiredFields
1953
{
1954
	/**
1955
	 * Fields that are required by this validator
1956
	 * @config
1957
	 * @var array
1958
	 */
1959
	protected $customRequired = array(
1960
		'FirstName',
1961
		'Email'
1962
	);
1963
1964
	/**
1965
	 * Determine what member this validator is meant for
1966
	 * @var Member
1967
	 */
1968
	protected $forMember = null;
1969
1970
	/**
1971
	 * Constructor
1972
	 */
1973
	public function __construct() {
1974
		$required = func_get_args();
1975
1976
		if(isset($required[0]) && is_array($required[0])) {
1977
			$required = $required[0];
1978
		}
1979
1980
		$required = array_merge($required, $this->customRequired);
1981
1982
		// check for config API values and merge them in
1983
		$config = $this->config()->customRequired;
0 ignored issues
show
Documentation introduced by
The property customRequired does not exist on object<Config_ForClass>. Since you implemented __set, maybe consider adding a @property annotation.

Since your code implements the magic setter _set, this function will be called for any write access on an undefined variable. You can add the @property annotation to your class or interface to document the existence of this variable.

<?php

/**
 * @property int $x
 * @property int $y
 * @property string $text
 */
class MyLabel
{
    private $properties;

    private $allowedProperties = array('x', 'y', 'text');

    public function __get($name)
    {
        if (isset($properties[$name]) && in_array($name, $this->allowedProperties)) {
            return $properties[$name];
        } else {
            return null;
        }
    }

    public function __set($name, $value)
    {
        if (in_array($name, $this->allowedProperties)) {
            $properties[$name] = $value;
        } else {
            throw new \LogicException("Property $name is not defined.");
        }
    }

}

Since the property has write access only, you can use the @property-write annotation instead.

Of course, you may also just have mistyped another name, in which case you should fix the error.

See also the PhpDoc documentation for @property.

Loading history...
1984
		if(is_array($config)){
1985
			$required = array_merge($required, $config);
1986
		}
1987
1988
		parent::__construct(array_unique($required));
1989
	}
1990
1991
	/**
1992
	 * Get the member this validator applies to.
1993
	 * @return Member
1994
	 */
1995
	public function getForMember()
1996
	{
1997
		return $this->forMember;
1998
	}
1999
2000
	/**
2001
	 * Set the Member this validator applies to.
2002
	 * @param Member $value
2003
	 * @return $this
2004
	 */
2005
	public function setForMember(Member $value)
2006
	{
2007
		$this->forMember = $value;
2008
		return $this;
2009
	}
2010
2011
	/**
2012
	 * Check if the submitted member data is valid (server-side)
2013
	 *
2014
	 * Check if a member with that email doesn't already exist, or if it does
2015
	 * that it is this member.
2016
	 *
2017
	 * @param array $data Submitted data
2018
	 * @return bool Returns TRUE if the submitted data is valid, otherwise
2019
	 *              FALSE.
2020
	 */
2021
	public function php($data)
2022
	{
2023
		$valid = parent::php($data);
2024
2025
		$identifierField = (string)Member::config()->unique_identifier_field;
2026
2027
		// Only validate identifier field if it's actually set. This could be the case if
2028
		// somebody removes `Email` from the list of required fields.
2029
		if(isset($data[$identifierField])){
2030
			$id = isset($data['ID']) ? (int)$data['ID'] : 0;
2031
			if(!$id && ($ctrl = $this->form->getController())){
2032
				// get the record when within GridField (Member editing page in CMS)
2033
				if($ctrl instanceof GridFieldDetailForm_ItemRequest && $record = $ctrl->getRecord()){
2034
					$id = $record->ID;
2035
				}
2036
			}
2037
2038
			// If there's no ID passed via controller or form-data, use the assigned member (if available)
2039
			if(!$id && ($member = $this->getForMember())){
2040
				$id = $member->exists() ? $member->ID : 0;
2041
			}
2042
2043
			// set the found ID to the data array, so that extensions can also use it
2044
			$data['ID'] = $id;
2045
2046
			$members = Member::get()->filter($identifierField, $data[$identifierField]);
2047
			if($id) {
2048
				$members = $members->exclude('ID', $id);
2049
			}
2050
2051
			if($members->count() > 0) {
2052
				$this->validationError(
2053
					$identifierField,
2054
					_t(
2055
						'Member.VALIDATIONMEMBEREXISTS',
2056
						'A member already exists with the same {identifier}',
2057
						array('identifier' => Member::singleton()->fieldLabel($identifierField))
2058
					),
2059
					'required'
2060
				);
2061
				$valid = false;
2062
			}
2063
		}
2064
2065
2066
		// Execute the validators on the extensions
2067
		$results = $this->extend('updatePHP', $data, $this->form);
2068
		$results[] = $valid;
2069
		return min($results);
2070
	}
2071
}
2072