forked from strangerstudios/basic-user-avatars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.php
More file actions
483 lines (410 loc) · 17.9 KB
/
Copy pathinit.php
File metadata and controls
483 lines (410 loc) · 17.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
/**
* Plugin Name: Basic User Avatars
* Plugin URI: http://wordpress.org/extend/basic-user-avatars
* Description: Adds an avatar upload field to user profiles. Also provides front-end avatar management via a shortcode and bbPress support. No frills. Fork of Simple Local Avatars 1.3.
* Version: 1.0.3
* Author: Jared Atchison
* Author URI: http://jaredatchison.com
*
* ---------------------------------------------------------------------------//
* This plugin is a fork of Simple Local Avatars v1.3.1 by Jake Goldman (10up).
*
* Orignal author url: http://get10up.com
* Original plugin url: http://wordpress.org/plugins/simple-local-avatars
*
* If you want some snazzy ajax and some other nifty features, check out Simple
* Local Avatars 2.0+
* ---------------------------------------------------------------------------//
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WP Forms. If not, see <http://www.gnu.org/licenses/>.
*
* @author Jared Atchison
* @version 1.0.3
* @package JA_BasicLocalAvatars
* @copyright Copyright (c) 2015, Jared Atchison
* @link http://jaredatchison.com
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
class basic_user_avatars {
/**
* User ID
*
* @since 1.0.0
* @var int
*/
private $user_id_being_edited;
/**
* Initialize all the things
*
* @since 1.0.0
*/
public function __construct() {
// Text domain
$this->load_textdomain();
// Actions
add_action( 'admin_init', array( $this, 'admin_init' ) );
add_action( 'show_user_profile', array( $this, 'edit_user_profile' ) );
add_action( 'edit_user_profile', array( $this, 'edit_user_profile' ) );
add_action( 'personal_options_update', array( $this, 'edit_user_profile_update' ) );
add_action( 'edit_user_profile_update', array( $this, 'edit_user_profile_update' ) );
add_action( 'bbp_user_edit_after_about', array( $this, 'bbpress_user_profile' ) );
// Shortcode
add_shortcode( 'basic-user-avatars', array( $this, 'shortcode' ) );
// Filters
add_filter( 'get_avatar', array( $this, 'get_avatar' ), 10, 5 );
add_filter( 'avatar_defaults', array( $this, 'avatar_defaults' ) );
}
/**
* Loads the plugin language files.
*
* @since 1.0.1
*/
public function load_textdomain() {
$domain = 'basic-user-avatars';
$locale = apply_filters( 'plugin_locale', get_locale(), $domain );
load_textdomain( $domain, WP_LANG_DIR . '/' . $domain . '/' . $domain . '-' . $locale . '.mo' );
load_plugin_textdomain( $domain, false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
/**
* Start the admin engine.
*
* @since 1.0.0
*/
public function admin_init() {
// Register/add the Discussion setting to restrict avatar upload capabilites
register_setting( 'discussion', 'basic_user_avatars_caps', array( $this, 'sanitize_options' ) );
add_settings_field( 'basic-user-avatars-caps', __( 'Local Avatar Permissions', 'basic-user-avatars' ), array( $this, 'avatar_settings_field' ), 'discussion', 'avatars' );
}
/**
* Discussion settings option
*
* @since 1.0.0
* @param array $args [description]
*/
public function avatar_settings_field( $args ) {
$options = get_option( 'basic_user_avatars_caps' );
?>
<label for="basic_user_avatars_caps">
<input type="checkbox" name="basic_user_avatars_caps" id="basic_user_avatars_caps" value="1" <?php checked( $options['basic_user_avatars_caps'], 1 ); ?>/>
<?php _e( 'Only allow users with file upload capabilities to upload local avatars (Authors and above)', 'basic-user-avatars' ); ?>
</label>
<?php
}
/**
* Sanitize the Discussion settings option
*
* @since 1.0.0
* @param array $input
* @return array
*/
public function sanitize_options( $input ) {
$new_input['basic_user_avatars_caps'] = empty( $input['basic_user_avatars_caps'] ) ? 0 : 1;
return $new_input;
}
/**
* Filter the avatar WordPress returns
*
* @since 1.0.0
* @param string $avatar
* @param int/string/object $id_or_email
* @param int $size
* @param string $default
* @param boolean $alt
* @return string
*/
public function get_avatar( $avatar = '', $id_or_email, $size = 96, $default = '', $alt = false ) {
// Determine if we recive an ID or string
if ( is_numeric( $id_or_email ) )
$user_id = (int) $id_or_email;
elseif ( is_string( $id_or_email ) && ( $user = get_user_by( 'email', $id_or_email ) ) )
$user_id = $user->ID;
elseif ( is_object( $id_or_email ) && ! empty( $id_or_email->user_id ) )
$user_id = (int) $id_or_email->user_id;
if ( empty( $user_id ) )
return $avatar;
$local_avatars = get_user_meta( $user_id, 'basic_user_avatar', true );
if ( empty( $local_avatars ) || empty( $local_avatars['full'] ) )
return $avatar;
$size = (int) $size;
if ( empty( $alt ) )
$alt = get_the_author_meta( 'display_name', $user_id );
// Generate a new size
if ( empty( $local_avatars[$size] ) ) {
$upload_path = wp_upload_dir();
$avatar_full_path = str_replace( $upload_path['baseurl'], $upload_path['basedir'], $local_avatars['full'] );
$image = wp_get_image_editor( $avatar_full_path );
$image_sized = null;
if ( ! is_wp_error( $image ) ) {
$image->resize( $size, $size, true );
$image_sized = $image->save();
}
// Deal with original being >= to original image (or lack of sizing ability).
if ( empty( $image_sized ) || is_wp_error( $image_sized ) ) {
$local_avatars[ $size ] = $local_avatars['full'];
} else {
$local_avatars[ $size ] = str_replace( $upload_path['basedir'], $upload_path['baseurl'], $image_sized['path'] );
}
// Save updated avatar sizes
update_user_meta( $user_id, 'basic_user_avatar', $local_avatars );
} elseif ( substr( $local_avatars[$size], 0, 4 ) != 'http' ) {
$local_avatars[$size] = home_url( $local_avatars[$size] );
}
if ( is_ssl() ) {
$local_avatars[ $size ] = str_replace( 'http', 'https', $local_avatars[ $size ] );
}
$author_class = is_author( $user_id ) ? ' current-author' : '' ;
$avatar = "<img alt='" . esc_attr( $alt ) . "' src='" . $local_avatars[$size] . "' class='avatar avatar-{$size}{$author_class} photo' height='{$size}' width='{$size}' />";
return apply_filters( 'basic_user_avatar', $avatar );
}
/**
* Form to display on the user profile edit screen
*
* @since 1.0.0
* @param object $profileuser
* @return
*/
public function edit_user_profile( $profileuser ) {
// bbPress will try to auto-add this to user profiles - don't let it.
// Instead we hook our own proper function that displays cleaner.
if ( function_exists( 'is_bbpress') && is_bbpress() )
return;
?>
<h3><?php _e( 'Avatar', 'basic-user-avatars' ); ?></h3>
<table class="form-table">
<tr>
<th><label for="basic-user-avatar"><?php _e( 'Upload Avatar', 'basic-user-avatars' ); ?></label></th>
<td style="width: 50px;" valign="top">
<?php echo get_avatar( $profileuser->ID ); ?>
</td>
<td>
<?php
$options = get_option( 'basic_user_avatars_caps' );
if ( empty( $options['basic_user_avatars_caps'] ) || current_user_can( 'upload_files' ) ) {
// Nonce security ftw
wp_nonce_field( 'basic_user_avatar_nonce', '_basic_user_avatar_nonce', false );
// File upload input
echo '<input type="file" name="basic-user-avatar" id="basic-local-avatar" /><br />';
if ( empty( $profileuser->basic_user_avatar ) ) {
echo '<span class="description">' . __( 'No local avatar is set. Use the upload field to add a local avatar.', 'basic-user-avatars' ) . '</span>';
} else {
echo '<input type="checkbox" name="basic-user-avatar-erase" value="1" /> ' . __( 'Delete local avatar', 'basic-user-avatars' ) . '<br />';
echo '<span class="description">' . __( 'Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option.', 'basic-user-avatars' ) . '</span>';
}
} else {
if ( empty( $profileuser->basic_user_avatar ) ) {
echo '<span class="description">' . __( 'No local avatar is set. Set up your avatar at Gravatar.com.', 'basic-user-avatars' ) . '</span>';
} else {
echo '<span class="description">' . __( 'You do not have media management permissions. To change your local avatar, contact the site administrator.', 'basic-user-avatars' ) . '</span>';
}
}
?>
</td>
</tr>
</table>
<script type="text/javascript">var form = document.getElementById('your-profile');form.encoding = 'multipart/form-data';form.setAttribute('enctype', 'multipart/form-data');</script>
<?php
}
/**
* Update the user's avatar setting
*
* @since 1.0.0
* @param int $user_id
*/
public function edit_user_profile_update( $user_id ) {
// Check for nonce otherwise bail
if ( ! isset( $_POST['_basic_user_avatar_nonce'] ) || ! wp_verify_nonce( $_POST['_basic_user_avatar_nonce'], 'basic_user_avatar_nonce' ) )
return;
if ( ! empty( $_FILES['basic-user-avatar']['name'] ) ) {
// Allowed file extensions/types
$mimes = array(
'jpg|jpeg|jpe' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
);
// Front end support - shortcode, bbPress, etc
if ( ! function_exists( 'wp_handle_upload' ) )
require_once ABSPATH . 'wp-admin/includes/file.php';
// Delete old images if successful
$this->avatar_delete( $user_id );
// Need to be more secure since low privelege users can upload
if ( strstr( $_FILES['basic-user-avatar']['name'], '.php' ) )
wp_die( 'For security reasons, the extension ".php" cannot be in your file name.' );
// Make user_id known to unique_filename_callback function
$this->user_id_being_edited = $user_id;
$avatar = wp_handle_upload( $_FILES['basic-user-avatar'], array( 'mimes' => $mimes, 'test_form' => false, 'unique_filename_callback' => array( $this, 'unique_filename_callback' ) ) );
// Handle failures
if ( empty( $avatar['file'] ) ) {
switch ( $avatar['error'] ) {
case 'File type does not meet security guidelines. Try another.' :
add_action( 'user_profile_update_errors', create_function( '$a', '$a->add("avatar_error",__("Please upload a valid image file for the avatar.","basic-user-avatars"));' ) );
break;
default :
add_action( 'user_profile_update_errors', create_function( '$a', '$a->add("avatar_error","<strong>".__("There was an error uploading the avatar:","basic-user-avatars")."</strong> ' . esc_attr( $avatar['error'] ) . '");' ) );
}
return;
}
// Save user information (overwriting previous)
update_user_meta( $user_id, 'basic_user_avatar', array( 'full' => $avatar['url'] ) );
} elseif ( ! empty( $_POST['basic-user-avatar-erase'] ) ) {
// Nuke the current avatar
$this->avatar_delete( $user_id );
}
}
/**
* Enable avatar management on the frontend via this shortocde.
*
* @since 1.0.0
*/
function shortcode() {
// Don't bother if the user isn't logged in
if ( ! is_user_logged_in() )
return;
$user_id = get_current_user_id();
$profileuser = get_userdata( $user_id );
if ( isset( $_POST['manage_avatar_submit'] ) ){
$this->edit_user_profile_update( $user_id );
}
ob_start();
?>
<form id="basic-user-avatar-form" action="<?php the_permalink(); ?>" method="post" enctype="multipart/form-data">
<?php
echo get_avatar( $profileuser->ID );
$options = get_option( 'basic_user_avatars_caps' );
if ( empty( $options['basic_user_avatars_caps'] ) || current_user_can( 'upload_files' ) ) {
// Nonce security ftw
wp_nonce_field( 'basic_user_avatar_nonce', '_basic_user_avatar_nonce', false );
// File upload input
echo '<p><input type="file" name="basic-user-avatar" id="basic-local-avatar" /></p>';
if ( empty( $profileuser->basic_user_avatar ) ) {
echo '<p class="description">' . __( 'No local avatar is set. Use the upload field to add a local avatar.', 'basic-user-avatars' ) . '</p>';
} else {
echo '<input type="checkbox" name="basic-user-avatar-erase" value="1" /> ' . __( 'Delete local avatar', 'basic-user-avatars' ) . '<br />';
echo '<p class="description">' . __( 'Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option.', 'basic-user-avatars' ) . '</p>';
}
} else {
if ( empty( $profileuser->basic_user_avatar ) ) {
echo '<p class="description">' . __( 'No local avatar is set. Set up your avatar at Gravatar.com.', 'basic-user-avatars' ) . '</p>';
} else {
echo '<p class="description">' . __( 'You do not have media management permissions. To change your local avatar, contact the site administrator.', 'basic-user-avatars' ) . '</p>';
}
}
?>
<input type="submit" name="manage_avatar_submit" value="<?php _e( 'Update Avatar', 'basic-user-avatars' ); ?>" />
</form>
<?php
return ob_get_clean();
}
/**
* Form to display on the bbPress user profile edit screen
*
* @since 1.0.0
*/
public function bbpress_user_profile() {
if ( !bbp_is_user_home_edit() )
return;
$user_id = get_current_user_id();
$profileuser = get_userdata( $user_id );
echo '<div>';
echo '<label for="basic-local-avatar">' . __( 'Avatar', 'basic-user-avatars' ) . '</label>';
echo '<fieldset class="bbp-form avatar">';
echo get_avatar( $profileuser->ID );
$options = get_option( 'basic_user_avatars_caps' );
if ( empty( $options['basic_user_avatars_caps'] ) || current_user_can( 'upload_files' ) ) {
// Nonce security ftw
wp_nonce_field( 'basic_user_avatar_nonce', '_basic_user_avatar_nonce', false );
// File upload input
echo '<br /><input type="file" name="basic-user-avatar" id="basic-local-avatar" /><br />';
if ( empty( $profileuser->basic_user_avatar ) ) {
echo '<span class="description" style="margin-left:0;">' . __( 'No local avatar is set. Use the upload field to add a local avatar.', 'basic-user-avatars' ) . '</span>';
} else {
echo '<input type="checkbox" name="basic-user-avatar-erase" value="1" style="width:auto" /> ' . __( 'Delete local avatar', 'basic-user-avatars' ) . '<br />';
echo '<span class="description" style="margin-left:0;">' . __( 'Replace the local avatar by uploading a new avatar, or erase the local avatar (falling back to a gravatar) by checking the delete option.', 'basic-user-avatars' ) . '</span>';
}
} else {
if ( empty( $profileuser->basic_user_avatar ) ) {
echo '<span class="description" style="margin-left:0;">' . __( 'No local avatar is set. Set up your avatar at Gravatar.com.', 'basic-user-avatars' ) . '</span>';
} else {
echo '<span class="description" style="margin-left:0;">' . __( 'You do not have media management permissions. To change your local avatar, contact the site administrator.', 'basic-user-avatars' ) . '</span>';
}
}
echo '</fieldset>';
echo '</div>';
?>
<script type="text/javascript">var form = document.getElementById('bbp-your-profile');form.encoding = 'multipart/form-data';form.setAttribute('enctype', 'multipart/form-data');</script>
<?php
}
/**
* Remove the custom get_avatar hook for the default avatar list output on
* the Discussion Settings page.
*
* @since 1.0.0
* @param array $avatar_defaults
* @return array
*/
public function avatar_defaults( $avatar_defaults ) {
remove_action( 'get_avatar', array( $this, 'get_avatar' ) );
return $avatar_defaults;
}
/**
* Delete avatars based on user_id
*
* @since 1.0.0
* @param int $user_id
*/
public function avatar_delete( $user_id ) {
$old_avatars = get_user_meta( $user_id, 'basic_user_avatar', true );
$upload_path = wp_upload_dir();
if ( is_array( $old_avatars ) ) {
foreach ( $old_avatars as $old_avatar ) {
$old_avatar_path = str_replace( $upload_path['baseurl'], $upload_path['basedir'], $old_avatar );
@unlink( $old_avatar_path );
}
}
delete_user_meta( $user_id, 'basic_user_avatar' );
}
/**
* File names are magic
*
* @since 1.0.0
* @param string $dir
* @param string $name
* @param string $ext
* @return string
*/
public function unique_filename_callback( $dir, $name, $ext ) {
$user = get_user_by( 'id', (int) $this->user_id_being_edited );
$name = $base_name = sanitize_file_name( $user->display_name . '_avatar' );
$number = 1;
while ( file_exists( $dir . "/$name$ext" ) ) {
$name = $base_name . '_' . $number;
$number++;
}
return $name . $ext;
}
}
$basic_user_avatars = new basic_user_avatars;
/**
* During uninstallation, remove the custom field from the users and delete the local avatars
*
* @since 1.0.0
*/
function basic_user_avatars_uninstall() {
$basic_user_avatars = new basic_user_avatars;
$users = get_users_of_blog();
foreach ( $users as $user )
$basic_user_avatars->avatar_delete( $user->user_id );
delete_option( 'basic_user_avatars_caps' );
}
register_uninstall_hook( __FILE__, 'basic_user_avatars_uninstall' );