GRAYBYTE WORDPRESS FILE MANAGER4389

Server IP : 68.65.123.43 / Your IP : 216.73.216.162
System : Linux server266.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/inteuuod/public_html/wp-content/plugins/templately/includes/API/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/inteuuod/public_html/wp-content/plugins/templately/includes/API//Profile.php
<?php

namespace Templately\API;

use Templately\Utils\Helper;

class Profile extends API {

	public function register_routes() {
		$this->get( 'profile/sync', [ $this, 'sync' ] );
		$this->get( 'profile/verified', [ $this, 'verified' ] );
		$this->get( 'profile/download-history', [ $this, 'get_download_history' ] );
		$this->get( 'profile/my-favourites', [ $this, 'get_my_favourites' ] );
		$this->get( 'profile/purchased-items', [ $this, 'get_my_purchased_items' ] );
	}

	public function sync() {
		$query = 'status, message, user{ id, name, first_name, last_name, display_name, email, profile_photo, joined, is_verified, api_key, plan, plan_expire_at, my_cloud{ limit, usages, last_pushed }, favourites{ id, type }, show_notice, reviews{ type, type_id, rating } }';

		$funcArgs = [
			'api_key'  => $this->api_key,
			'site_url' => home_url( '/' ),
			'ip'       => Helper::get_ip()
		];

		$response = $this->http()->mutation( 'connectWithApiKey', $query, $funcArgs )->post();

		if ( is_wp_error( $response ) ) {
			return $response;
		}

		$meta = [
			'is_globally_signed' => Login::is_globally_signed(),
			'signed_as_global'   => Login::signed_as_global()
		];

		if ( ! empty( $response['user']['my_cloud']['last_pushed'] ) ) {
			$_cloud_activity = unserialize( $response['user']['my_cloud']['last_pushed'] );
			$this->utils( 'options' )->set( 'cloud_activity', $_cloud_activity );
			$meta['cloud_activity'] = $_cloud_activity;
			unset( $response['user']['my_cloud']['last_pushed'] );
		}

		if ( ! empty( $response['user']['favourites'] ) ) {
			$_favourites = $this->utils( 'helper' )->normalizeFavourites( $response['user']['favourites'] );
			$this->utils( 'options' )->set( 'favourites', $_favourites );

			unset( $response['user']['favourites'] );
			$meta['favourites'] = $_favourites;
		}

		if ( ! empty( $response['user']['reviews'] ) ) {
			$_reviews = $this->utils( 'helper' )->normalizeReviews( $response['user']['reviews'] );
			$this->utils( 'options' )->set( 'reviews', $_reviews );

			unset( $response['user']['reviews'] );
			$meta['reviews'] = $_reviews;
		}

		if ( ! empty( $response['user']['reviews'] ) ) {
			$_reviews = $this->utils( 'helper' )->normalizeReviews( $response['user']['reviews'] );
			$this->utils( 'options' )->set( 'reviews', $_reviews );

			unset( $response['user']['reviews'] );
			$meta['reviews'] = $_reviews;
		}

		$this->utils( 'options' )->set( 'user', $response['user'] );
		$response['user']['meta'] = Login::get_instance()->user_meta( $meta );

		return $this->success( $response );
	}

	public function verified() {
		$funcArgs = [
			'api_key' => $this->api_key
		];

		$response = $this->http()->query( 'isVerifiedUser', '', $funcArgs )->post();

		if ( $response ) {
			$user = $this->utils( 'options' )->get( 'user' );

			$user['is_verified'] = true;
			$this->utils( 'options' )->set( 'user', $user );
		}

		return $response;
	}

	public function get_download_history() {
		$page     = $this->get_param( 'page', 1, 'intval' );
		$per_page = $this->get_param( 'per_page', 10, 'intval' );

		$response = $this->http()->mutation( 'myDownloadHistory', 'data{ name, thumbnail, downloaded_at, slug, type }, current_page, total_page, total', [
				'api_key'  => $this->api_key,
				'per_page' => $per_page,
				"page"     => $page
			] )->post();

		if ( is_wp_error( $response ) ) {
			return $this->error( 'invalid_download_history_response', __( $response->get_error_message(), 'templately' ), 'profile/download-history', $response->get_error_code() );
		}

		if ( isset( $response['total'] ) ) {
			$this->utils( 'options' )->set( 'total_download_counts', $response['total'] );
		}

		return $response;
	}

	public function get_my_favourites() {
		$type      = $this->get_param( 'itemType', 'all' );
		$plan      = $this->get_param( 'plan', 'all' );
		$plan_type = $this->get_plan( $plan );
		$page      = $this->get_param( 'page', 1, 'intval' );
		$per_page  = $this->get_param( 'per_page', 20, 'intval' );

		$funcArgs = [
			'api_key'   => $this->api_key,
			"page"      => $page,
			"per_page"  => $per_page,
			"plan_type" => $plan_type
		];

		if ( $type != 'all' ) {
			$funcArgs['type'] = $type;
		}

		$response = $this->http()->mutation( 'myFavouriteItem', 'total_page, current_page, data { id, name, rating, type, slug, favourite_count, thumbnail, thumbnail2, thumbnail3, price, author{ display_name, name, joined }, dependencies{ id, name, icon, plugin_file, plugin_original_slug, is_pro, link } }', $funcArgs )->post();

		if ( is_wp_error( $response ) ) {
			return $this->error( 'invalid_my_favourites_response', __( $response->get_error_message(), 'templately' ), 'profile/my-favourites', $response->get_error_code() );
		}

		return $response;
	}

	public function get_my_purchased_items() {
		$page     = $this->get_param( 'page', 1, 'intval' );
		$per_page = $this->get_param( 'per_page', 10, 'intval' );
		$_all     = $this->get_param( 'all', false );

		$funcArgs = [
			'api_key'  => $this->api_key,
			'page'     => $page,
			'per_page' => $per_page
		];

		$query = 'total_page, current_page, data { id, item_id, name, slug, type, platform, thumbnail, purchased_at }';

		if ( $_all ) {
			$query                = 'total_page, current_page, data { id, item_id, type, platform }';
			$funcArgs['per_page'] = -1;
		}

		$response = $this->http()->query( 'myItems', $query, $funcArgs )->post();

		if ( $response ) {
			// $user = $this->utils('options')->get('user');

			// $user['is_verified'] = true;
			// $this->utils('options')->set('user', $user);
		}

		return $response;
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 10 2025 04:32:23
inteuuod / inteuuod
0755
.htaccess
0.41 KB
July 10 2025 04:32:23
inteuuod / inteuuod
0644
API.php
5.837 KB
August 22 2024 16:42:02
inteuuod / inteuuod
0644
Categories.php
1.062 KB
October 03 2022 13:36:30
inteuuod / inteuuod
0644
Conditions.php
3.867 KB
October 27 2024 15:14:06
inteuuod / inteuuod
0644
Dependencies.php
6.872 KB
July 15 2024 11:58:04
inteuuod / inteuuod
0644
FullSiteImport.php
0.246 KB
January 24 2024 15:10:10
inteuuod / inteuuod
0644
Import.php
6.807 KB
February 13 2025 17:17:14
inteuuod / inteuuod
0644
Items.php
12.179 KB
February 02 2025 15:55:04
inteuuod / inteuuod
0644
Login.php
7.929 KB
March 21 2024 14:12:32
inteuuod / inteuuod
0644
MyClouds.php
7.706 KB
September 03 2024 15:33:28
inteuuod / inteuuod
0644
Profile.php
5.453 KB
January 24 2024 15:10:10
inteuuod / inteuuod
0644
SavedTemplates.php
1.731 KB
October 09 2023 10:51:12
inteuuod / inteuuod
0644
SignUp.php
2.639 KB
May 11 2023 13:38:16
inteuuod / inteuuod
0644
Tags.php
0.846 KB
October 03 2022 13:36:30
inteuuod / inteuuod
0644
TemplateTypes.php
1.854 KB
December 12 2022 10:31:54
inteuuod / inteuuod
0644
ThemeBuilderApi.php
1.82 KB
May 09 2024 14:28:36
inteuuod / inteuuod
0644
WorkSpaces.php
9.793 KB
December 06 2023 16:06:56
inteuuod / inteuuod
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF