Current File : /home/resuelf/www/wp-content/plugins/aawp/src/ClickTracking/user-agents/class-aawp-device.php
<?php

class AAWP_Device {

	public function __construct( $ua ) {
		$this->load_dependencies();
		$this->get_device_type( $ua );
	}

	private function load_dependencies() {
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-appliance.php';
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-ereader.php';
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-gaming.php';
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-media.php';
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-mobile.php';
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-pda.php';
		require_once AAWP_PLUGIN_DIR . 'src/ClickTracking/user-agents/device/class-aawp-tablet.php';
	}

	public function get_device_type( $ua ) {
		if ( preg_match( '/I-Opener [0-9.]+; Netpliance/u', $ua ) || preg_match( '/KOMATSU.*WL\//u', $ua ) ) {
			$this->device = new AAWP_Appliance( $ua );
		}
		if ( preg_match( '/(Kindle|Nook|Bookeen|Kobo|EBRD|PocketBook|Iriver)/ui', $ua ) ) {
			$this->device = new AAWP_Ereader( $ua );
		}
		if ( preg_match( '/(Nintendo|Nitro|PlayStation|PLAYSTATION|PS[0-9]|Sega|Dreamcast|Xbox)/ui', $ua ) ) {
			$this->device = new AAWP_Gaming( $ua );
		}
		if ( preg_match( '/(Archos|Zune|Walkman)/ui', $ua ) ) {
			$this->device = new AAWP_Media( $ua );
		}
		if ( preg_match( '/(T-Mobile|Danger|HPiPAQ|Acer|Amoi|AIRNESS|ASUS|BenQ|maui|ALCATEL|Bird|COOLPAD|CELKON|Coship|Cricket|DESAY|Diamond|dopod|Ericsson|FLY|GIONEE|GT-|Haier|HIKe|Hisense|HS|HTC|T[0-9]{4,4}|HUAWEI|Honor|Karbonn|KWC|KONKA|KTOUCH|K-Touch|Lenovo|Lephone|LG|Mi|Micromax|MOT|Nexian|NEC|NOKIA|NGM|OPPO|Panasonic|Pantech|Philips|Redmi|Sagem|Sanyo|Sam|SEC|SGH|SCH|SIE|Sony|SE|SHARP|Spice|Tecno|T-smart|TCL|Tiphone|Toshiba|UTStar|Videocon|vk|Vodafone|VSUN|Wynncom|Xiaomi|YUANDA|Zen|Ziox|ZTE|WAP)/ui', $ua )
		     || preg_match( '/(MIDP|CLDC|UNTRUSTED\/|3gpp-gba|[Ww][Aa][Pp]2.0|[Ww][Aa][Pp][ _-]?[Bb]rowser)/u', $ua )
		     || preg_match( '/Nokia[- \/]?([^\/\);]+)/ui', $ua )
		     || preg_match( '/(?:SAMSUNG; )?SAMSUNG ?[-\/]?([^;\/\)_,]+)/ui', $ua ) ) {
			$this->device = new AAWP_Mobile( $ua );
		}
		if ( preg_match( '/(CASIO|Palm|Psion|pdQ|COM|airboard|sharp|pda|POCKET-E|OASYS|NTT\/PI)/ui', $ua ) ) {
			$this->device = new AAWP_Pda( $ua );
		}
		if ( preg_match( '/WeTab-Browser /ui', $ua ) ) {
			$this->device = new AAWP_Tablet( $ua );
		}
	}
}