| Total Complexity | 54 |
| Total Lines | 334 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like client often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use client, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 9 | class client extends Google_Client |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Google Client Instances. |
||
| 13 | * |
||
| 14 | * @var \Google_Client |
||
| 15 | */ |
||
| 16 | private $Client; |
||
|
|
|||
| 17 | /** |
||
| 18 | * Filemanager instance. |
||
| 19 | * |
||
| 20 | * @var \Filemanager\file |
||
| 21 | */ |
||
| 22 | private $filemanager; |
||
| 23 | private $token_folder; |
||
| 24 | private $configuration; |
||
| 25 | public $application_name = "Google Client Library"; |
||
| 26 | |||
| 27 | public function __construct(array $config = ['token' => ['folder' => __DIR__ . '/token']]) |
||
| 28 | { |
||
| 29 | parent::__construct($config); |
||
| 30 | $this->filemanager = new \Filemanager\file(); |
||
| 31 | if (isset($config['token']['folder'])) { |
||
| 32 | $token_folder = $config['token']['folder']; |
||
| 33 | $this->token_folder = $token_folder; |
||
| 34 | file::folder($token_folder, null, null, true); |
||
| 35 | file::file($token_folder . '/.htaccess', 'deny from all'); |
||
| 36 | file::file($token_folder . '/.gitignore', "*\n!.gitignore\n!.htaccess"); |
||
| 37 | } |
||
| 38 | $this->configuration = $config; |
||
| 39 | } |
||
| 40 | |||
| 41 | public static function get_profile() |
||
| 42 | { |
||
| 43 | if (isset($_SESSION['google']['login'])) { |
||
| 44 | return $_SESSION['google']['login']; |
||
| 45 | } |
||
| 46 | return []; |
||
| 47 | } |
||
| 48 | |||
| 49 | public static function get_profile_picture() |
||
| 50 | { |
||
| 51 | if (!empty(self::get_profile())) { |
||
| 52 | if (isset(self::get_profile()['picture'])) return self::get_profile()['picture']; |
||
| 53 | } |
||
| 54 | return 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/No_image_available.svg/480px-No_image_available.svg.png'; |
||
| 55 | } |
||
| 56 | |||
| 57 | public static function get_profile_name() |
||
| 58 | { |
||
| 59 | if (!empty(self::get_profile())) { |
||
| 60 | if (isset(self::get_profile()['name'])) return self::get_profile()['name']; |
||
| 61 | } |
||
| 62 | return 'Login Required'; |
||
| 63 | } |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @param string $redirect /auth/google |
||
| 67 | */ |
||
| 68 | public function create_auth_url($scope, $redirect) |
||
| 69 | { |
||
| 70 | $this->custom_client($scope, $redirect); |
||
| 71 | return $this->createAuthUrl(); |
||
| 72 | } |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @return \GoogleExt\Client |
||
| 76 | */ |
||
| 77 | public function custom_client($scope, $redirect) |
||
| 78 | { |
||
| 79 | $this->setApplicationName($this->application_name); |
||
| 80 | $this->setCredentials( |
||
| 81 | CONFIG['google']['client'], |
||
| 82 | CONFIG['google']['secret'], |
||
| 83 | CONFIG['google']['key'] |
||
| 84 | ); |
||
| 85 | $scopes = [ |
||
| 86 | 'https://www.googleapis.com/auth/userinfo.email', |
||
| 87 | 'https://www.googleapis.com/auth/userinfo.profile' |
||
| 88 | ]; |
||
| 89 | if (is_string($scope)) { |
||
| 90 | switch ($scope) { |
||
| 91 | case 'blogger': |
||
| 92 | $scopes[] = 'https://www.googleapis.com/auth/blogger'; |
||
| 93 | break; |
||
| 94 | } |
||
| 95 | } |
||
| 96 | $this->set_scope(array_unique($scopes)); |
||
| 97 | $this->set_offline(true); |
||
| 98 | $this->setRedirectUri($this->getOrigin($redirect)); |
||
| 99 | $this->auto_login($redirect); |
||
| 100 | return $this; |
||
| 101 | } |
||
| 102 | |||
| 103 | /** |
||
| 104 | * Check user google is login. |
||
| 105 | * |
||
| 106 | * @return bool |
||
| 107 | */ |
||
| 108 | public function is_login() |
||
| 109 | { |
||
| 110 | return isset($_SESSION['google']['login']) && !empty($_SESSION['google']['login']) && isset($_SESSION['google']['login']['email']); |
||
| 111 | } |
||
| 112 | |||
| 113 | /** |
||
| 114 | * Revoke token. |
||
| 115 | * |
||
| 116 | * @return $this |
||
| 117 | */ |
||
| 118 | public function revoke() |
||
| 119 | { |
||
| 120 | $this->revokeToken(); |
||
| 121 | |||
| 122 | $this; |
||
| 123 | } |
||
| 124 | |||
| 125 | /** |
||
| 126 | * Get current origin url. |
||
| 127 | * |
||
| 128 | * @return string |
||
| 129 | */ |
||
| 130 | public function getOrigin(string $path = null) |
||
| 131 | { |
||
| 132 | return (isset($_SERVER['HTTPS']) && 'on' === $_SERVER['HTTPS'] ? 'https' : 'http') . "://$_SERVER[HTTP_HOST]$path"; |
||
| 133 | } |
||
| 134 | |||
| 135 | public function get_token_folder() |
||
| 138 | } |
||
| 139 | |||
| 140 | public function set_token_folder(string $path) |
||
| 141 | { |
||
| 142 | if ($path = realpath($path)) { |
||
| 143 | $this->token_folder = $path; |
||
| 144 | } |
||
| 145 | |||
| 146 | return $this; |
||
| 147 | } |
||
| 148 | |||
| 149 | public function set_scope($scopes) |
||
| 150 | { |
||
| 151 | if (is_string($scopes)) { |
||
| 152 | if ($this->is_url($scopes)) { |
||
| 153 | $this->addScope($scopes); |
||
| 154 | } else { |
||
| 155 | throw new \MVC\Exception('Scope is URL format', 1); |
||
| 156 | |||
| 157 | return null; |
||
| 158 | } |
||
| 159 | } elseif (is_array($scopes)) { |
||
| 160 | $this->setScopes($scopes); |
||
| 161 | } |
||
| 162 | |||
| 163 | return $this; |
||
| 164 | } |
||
| 165 | |||
| 166 | /** |
||
| 167 | * Set access token offline. |
||
| 168 | * |
||
| 169 | * @param bool $offline |
||
| 170 | * |
||
| 171 | * @return client |
||
| 172 | */ |
||
| 173 | public function set_offline($offline = true) |
||
| 174 | { |
||
| 175 | if ($offline) { |
||
| 176 | $this->setAccessType('offline'); |
||
| 177 | $this->setApprovalPrompt('force'); |
||
| 178 | } else { |
||
| 179 | $this->setApprovalPrompt('auto'); |
||
| 180 | } |
||
| 181 | |||
| 182 | return $this; |
||
| 183 | } |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Set default credentials. |
||
| 187 | * |
||
| 188 | * @return client |
||
| 189 | */ |
||
| 190 | public function setCredentials(string $client, string $secret, string $key) |
||
| 200 | } |
||
| 201 | |||
| 202 | /** |
||
| 203 | * Check if current instance is valid. |
||
| 204 | * |
||
| 205 | * @return bool |
||
| 206 | */ |
||
| 207 | public function isValid() |
||
| 208 | { |
||
| 209 | return $this->getAccessToken() && !$this->isAccessTokenExpired(); |
||
| 210 | } |
||
| 211 | |||
| 212 | public function is_url($string) |
||
| 213 | { |
||
| 214 | return filter_var($string, FILTER_VALIDATE_URL); |
||
| 215 | } |
||
| 216 | |||
| 217 | /** |
||
| 218 | * Check user has subscribed to youtube channel. |
||
| 219 | * |
||
| 220 | * @param string $cid channel id |
||
| 221 | * @param bool $only_get_url = return URL channel |
||
| 222 | */ |
||
| 223 | public function check_subscriber(string $cid = 'UCGNaoefvJRfd15fo-LQ0zvg', bool $only_get_url = false) |
||
| 224 | { |
||
| 225 | if (!$only_get_url) { |
||
| 226 | /** |
||
| 227 | * @var \Google\Client |
||
| 228 | */ |
||
| 229 | $client = $this; |
||
| 230 | $service = new \Google_Service_YouTube($client); |
||
| 231 | $response = $service->subscriptions->listSubscriptions( |
||
| 232 | 'snippet,contentDetails', |
||
| 233 | array_filter(['forChannelId' => $cid, 'mine' => true]) |
||
| 234 | ); |
||
| 235 | |||
| 236 | $result = count($response['items']); |
||
| 237 | $output = []; |
||
| 238 | if ($result > 0) { |
||
| 239 | $output['success'] = true; |
||
| 240 | $output['data'] = $response['items']; |
||
| 241 | $_SESSION['subscribed'] = 1; |
||
| 242 | } else { |
||
| 243 | $output['error'] = true; |
||
| 244 | $output['data'] = 'Belum Subscribe'; |
||
| 245 | $output['msg'] = 'Belum Subscribe'; |
||
| 246 | $_SESSION['subscribed'] = 0; |
||
| 247 | } |
||
| 248 | } else { |
||
| 249 | $output = 'https://www.youtube.com/channel/' . $cid; |
||
| 250 | } |
||
| 251 | |||
| 252 | return $output; |
||
| 253 | } |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Auto get token from $_GET['code'] |
||
| 257 | * And auto refresh token |
||
| 258 | * * @param string $redirect /auth/google |
||
| 259 | */ |
||
| 260 | public function auto_login($redirect) |
||
| 302 | } |
||
| 303 | } |
||
| 304 | } |
||
| 305 | |||
| 306 | /** |
||
| 307 | * Get current user login ($_SESSION['login']). |
||
| 308 | * |
||
| 309 | * @return array |
||
| 310 | */ |
||
| 311 | public function login_data() |
||
| 312 | { |
||
| 313 | return isset($_SESSION['login']) ? \ArrayHelper\helper::unset($_SESSION['login'], ['password']) : []; |
||
| 314 | } |
||
| 315 | |||
| 316 | /** |
||
| 317 | * Get current google user data. |
||
| 318 | * |
||
| 319 | * @return void |
||
| 320 | */ |
||
| 321 | public function userdata() |
||
| 322 | { |
||
| 323 | return isset($_SESSION['google']['login']) ? \ArrayHelper\helper::unset($_SESSION['google']['login'], ['password']) : []; |
||
| 324 | } |
||
| 325 | |||
| 326 | /** |
||
| 327 | * Fetch user information from google. |
||
| 328 | * |
||
| 329 | * @return array |
||
| 330 | */ |
||
| 331 | public function fetch_user() |
||
| 343 | } |
||
| 344 | } |
||
| 345 |