class.llms.achievement.php 6.05 KB
Newer Older
cyrille's avatar
cyrille committed
1 2 3 4 5 6 7 8 9
<?php
/**
 * Base Achievement Class
 *
 * Handles generating Achievement
 *
 * @package LifterLMS/Classes/Achievements
 *
 * @since 1.0.0
Cyrille's avatar
Cyrille committed
10
 * @version 6.0.0
cyrille's avatar
cyrille committed
11 12 13 14 15 16 17 18 19
 */

defined( 'ABSPATH' ) || exit;

/**
 * Base Achievement Class
 *
 * @since 1.0.0
 * @since 3.30.3 Explicitly define class properties.
Cyrille's avatar
Cyrille committed
20
 * @deprecated 6.0.0 Class `LLMS_Achievement` is deprecated with no direct replacement.
cyrille's avatar
cyrille committed
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
 */
class LLMS_Achievement {

	/**
	 * @var int
	 * @since 1.0.0
	 */
	public $achievement_template_id;

	/**
	 * @var string
	 * @since 1.0.0
	 */
	public $achievement_title;

	/**
	 * @var string
	 * @since 1.0.0
	 */
	public $content;

	/**
	 * is the achievement enabled
	 *
	 * @var bool
	 * @since 1.0.0
	 */
	public $enabled;

	/**
	 * @var array
	 * @since 1.0.0
	 */
	public $find = array();

	/**
	 * @var string
	 * @since 1.0.0
	 */
	public $id;

	/**
	 * image id
	 *
	 * @var int
	 * @since 1.0.0
	 */
	public $image;

	/**
	 * @var int
	 * @since 1.0.0
	 */
	public $lesson_id;

	/**
	 * @var WP_User
	 * @since 1.0.0
	 */
	public $object;

	/**
	 * @var array
	 * @since 1.0.0
	 */
	public $replace = array();

	/**
	 * post title
	 *
	 * @var string
	 * @since 1.0.0
	 */
	public $title;

	/**
	 * @var int
	 * @since 1.0.0
	 */
	public $userid;

Cyrille's avatar
Cyrille committed
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
	/**
	 * Alert when deprecated methods are used.
	 *
	 * This class as well as core classes extending it have been deprecated. All public and protected methods
	 * have been changed to private and will be made accessible through this magic method which also emits a
	 * deprecation warning.
	 *
	 * This public method has been intentionally marked as private to denote it's temporary lifespan. It will be
	 * removed alongside this class in the next major release.
	 *
	 * @since 6.0.0
	 *
	 * @access private
	 *
	 * @param string $name Name of the method being called.
	 * @param array  $args Arguments provided to the method.
	 * @return void
	 */
	public function __call( $name, $args ) {
		_deprecated_function( __CLASS__ . '::' . $name, '6.0.0' );
		if ( method_exists( $this, $name ) ) {
			$this->$name( ...$args );
		}
	}

	/**
	 * Constructor.
	 *
	 * @since Unknown.
	 * @deprecated 6.0.0 `LLMS_Achievement::__construct()` is deprecated with no replacement.
	 */
cyrille's avatar
cyrille committed
133 134 135 136 137 138 139 140 141 142 143 144
	public function __construct() {

		// Settings TODO Refactor: theses can come from the achievement post now.
		$this->enabled = get_option( 'enabled' );

		$this->find    = array( '{blogname}', '{site_title}' );
		$this->replace = array( $this->get_blogname(), $this->get_blogname() );
	}

	/**
	 * Checks if achievement is enabled
	 *
Cyrille's avatar
Cyrille committed
145 146 147 148 149
	 * @since Unknown
	 * @since 3.24.0 Unknown.
	 * @deprecated 6.0.0 `LLMS_Achievement::is_enabled()` is deprecated with no replacement.
	 *
	 * @return bool
cyrille's avatar
cyrille committed
150
	 */
Cyrille's avatar
Cyrille committed
151
	private function is_enabled() {
cyrille's avatar
cyrille committed
152 153 154 155 156 157 158
		$enabled = 'yes' == $this->enabled ? true : false;
		return true;
	}

	/**
	 * Get Blog name
	 *
Cyrille's avatar
Cyrille committed
159 160 161 162 163 164
	 * Used by achievement merge fields.
	 *
	 * @since Unknown
	 * @deprecated 6.0.0 `LLMS_Achievement::get_blogname()` is deprecated with no replacement.
	 *
	 * @return string
cyrille's avatar
cyrille committed
165
	 */
Cyrille's avatar
Cyrille committed
166
	private function get_blogname() {
cyrille's avatar
cyrille committed
167 168 169 170 171 172
		return wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
	}

	/**
	 * Format String
	 *
Cyrille's avatar
Cyrille committed
173 174 175 176 177
	 * @since Unknown
	 * @deprecated 6.0.0 `LLMS_Achievement::format_string()` is deprecated with no replacement.
	 *
	 * @param string $string Un-formatted string.
	 * @return string Formatted string.
cyrille's avatar
cyrille committed
178
	 */
Cyrille's avatar
Cyrille committed
179
	private function format_string( $string ) {
cyrille's avatar
cyrille committed
180 181 182 183 184 185
		return str_replace( $this->find, $this->replace, $string );
	}

	/**
	 * Queries Achievement title postmeta
	 *
Cyrille's avatar
Cyrille committed
186 187 188 189
	 * @since Unknown
	 * @deprecated 6.0.0 `LLMS_Achievement::get_title()` is deprecated with no replacement.
	 *
	 * @return string
cyrille's avatar
cyrille committed
190
	 */
Cyrille's avatar
Cyrille committed
191
	private function get_title() {
cyrille's avatar
cyrille committed
192 193 194 195 196 197 198 199
		return apply_filters( '_llms_achievement_title' . $this->id, $this->title, $this->object );
	}

	/**
	 * Get the content of the Achievement
	 *
	 * @since   1.0.0
	 * @version 1.4.1
Cyrille's avatar
Cyrille committed
200 201 202
	 * @deprecated 6.0.0 `LLMS_Achievement::get_content()` is deprecated with no replacement.
	 *
	 * @return string Data needed to generate achievement.
cyrille's avatar
cyrille committed
203
	 */
Cyrille's avatar
Cyrille committed
204
	private function get_content() {
cyrille's avatar
cyrille committed
205 206 207 208 209
		$achievement_content = $this->content;
		return $achievement_content;
	}

	/**
Cyrille's avatar
Cyrille committed
210 211
	 * Generate HTML output of achievement.
	 *
cyrille's avatar
cyrille committed
212 213 214
	 * Converts merge fields to raw data sources and wraps content in HTML
	 * then saves new achievement post and updates user_postmeta table.
	 *
Cyrille's avatar
Cyrille committed
215 216 217 218
	 * @since 1.0.0
	 * @deprecated 6.0.0 `LLMS_Achievement::get_content_html()` is deprecated with no replacement.
	 *
	 * @return void
cyrille's avatar
cyrille committed
219
	 */
Cyrille's avatar
Cyrille committed
220
	private function get_content_html() {}
cyrille's avatar
cyrille committed
221 222 223 224

	/**
	 * Create the achievement
	 *
Cyrille's avatar
Cyrille committed
225 226 227 228 229 230
	 * @since 1.0.0
	 * @since 3.8.0 Unknown
	 * @deprecated 6.0.0 `LLMS_Achievement::create()` is deprecated with no replacement.
	 *
	 * @param string $content Achievement body content.
	 * @return void
cyrille's avatar
cyrille committed
231
	 */
Cyrille's avatar
Cyrille committed
232
	private function create( $content ) {
cyrille's avatar
cyrille committed
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
		global $wpdb;

		$new_user_achievement = apply_filters(
			'lifterlms_new_achievement',
			array(
				'post_type'    => 'llms_my_achievement',
				'post_title'   => $this->title,
				'post_content' => $content,
				'post_status'  => 'publish',
				'post_author'  => 1,
			)
		);

		$new_user_achievement_id = wp_insert_post( $new_user_achievement, true );

		update_post_meta( $new_user_achievement_id, '_llms_achievement_title', $this->achievement_title );
		update_post_meta( $new_user_achievement_id, '_llms_achievement_image', $this->image );
		update_post_meta( $new_user_achievement_id, '_llms_achievement_content', $this->content );
		update_post_meta( $new_user_achievement_id, '_llms_achievement_template', $this->achievement_template_id );

		$user_metadatas = array(
			'_achievement_earned' => $new_user_achievement_id,
		);

		foreach ( $user_metadatas as $key => $value ) {
			$update_user_postmeta = $wpdb->insert(
				$wpdb->prefix . 'lifterlms_user_postmeta',
				array(
					'user_id'      => $this->userid,
					'post_id'      => $this->lesson_id,
					'meta_key'     => $key,
					'meta_value'   => $value,
					'updated_date' => current_time( 'mysql' ),
				)
			);
		}

Cyrille's avatar
Cyrille committed
270
		// This hook is documented in includes/class-llms-engagement-handler.php.
cyrille's avatar
cyrille committed
271 272 273 274 275 276
		do_action( 'llms_user_earned_achievement', $this->userid, $new_user_achievement_id, $this->lesson_id );

	}

}