Файловый менеджер - Редактировать - /home/barghamad/public_html/wp-content/themes/multinews/framework/functions/social-counters.php
Назад
<?php //Twitter followers count function mom_sc_twitter ($user) { $count = get_transient('mom_twitter_followers'.$user); if ($count !== false) return $count; $count = 0; if (mom_option('twitter_ck') != '' && mom_option('twitter_cs') != '' && mom_option('twitter_at') != '' && mom_option('twitter_ats') != '') { require_once( MOM_FW .'/inc/twitterAPI/TwitterAPIExchange.php'); $settings = array( 'consumer_key' => mom_option('twitter_ck'), 'consumer_secret' => mom_option('twitter_cs'), 'oauth_access_token' => mom_option('twitter_at'), 'oauth_access_token_secret' => mom_option('twitter_ats'), ); $ta_url = 'https://api.twitter.com/1.1/statuses/user_timeline.json'; $getfield = '?screen_name='.$user; $requestMethod = 'GET'; $twittern = new TwitterAPIExchange($settings); $follow_count=$twittern->setGetfield($getfield) ->buildOauth($ta_url, $requestMethod) ->performRequest(); $data = json_decode($follow_count, true); $count = $data[0]['user']['followers_count']; } set_transient('mom_twitter_followers'.$user, $count, 60*60*24); return $count; } //facebook fans count function mom_sc_facebook ($page_id, $return = 'count') { $count = get_transient('mom_facebook_followers'.$page_id); $link = get_transient('mom_facebook_page_url'.$page_id); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $facebook_access_token = mom_option('facebook_access_token'); $data = wp_remote_get('https://graph.facebook.com/' . $page_id .'?fields=likes,link&access_token='.$facebook_access_token); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = isset($json['likes']) ? intval($json['likes']) : 0; $link = isset($json['link']) ? $json['link'] : ''; set_transient('mom_facebook_followers'.$page_id, $count, 3600); set_transient('mom_facebook_page_url'.$page_id, $link, 3600); } if ($return == 'link') { return $link; } else { return $count; } } //googleplus fans count function mom_sc_googleplus ($page_id, $return = 'count') { // delete_transient('mom_googleplus_followers'.$page_id); // delete_transient('mom_googleplus_page_url'.$page_id); $count = get_transient('mom_googleplus_followers'.$page_id); $link = get_transient('mom_googleplus_page_url'.$page_id); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $api_key = mom_option('googlep_api_key'); $data = wp_remote_get('https://www.googleapis.com/plus/v1/people/'.$page_id.'?key='.$api_key); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = isset($json['plusOneCount']) ? intval($json['plusOneCount']) : intval($json['circledByCount']); $link = $json['url']; set_transient('mom_googleplus_followers'.$page_id, $count, 3600); set_transient('mom_googleplus_page_url'.$page_id, $link, 3600); } if ($return == 'link') { return $link; } else { return $count; } } //dribbble fans count function mom_sc_dribbble ($dribbble, $return = 'count') { // delete_transient('mom_dribbble_followers'.$id); //delete_transient('mom_dribbble_page_url'.$id); $count = get_transient('mom_dribbble_followers'.$dribbble); $link = get_transient('mom_dribbble_page_url'.$dribbble); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $data = wp_remote_get('http://api.dribbble.com/players/'.$dribbble); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = intval($json['followers_count']); $link = $json['url']; set_transient('mom_dribbble_followers'.$dribbble, $count, 3600); set_transient('mom_dribbble_page_url'.$dribbble, $link, 3600); } if ($return == 'link') { return $link; } else { return $count; } } //youtube fans count function mom_sc_youtube ($youtube, $return = 'count') { //delete_transient('mom_youtube_followers'.$youtube); //delete_transient('mom_youtube_page_url'.$youtube); $count = get_transient('mom_youtube_followers'.$youtube); $link = get_transient('mom_youtube_page_url'.$youtube); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link ='https://www.youtube.com/channel/'.$youtube; $key = mom_option('youtube_api_key'); if ($key != '') { $data = wp_remote_get('https://www.googleapis.com/youtube/v3/channels?part=statistics&id='.$youtube.'&key='.$key); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = intval($json['items'][0]['statistics']['subscriberCount']); set_transient('mom_youtube_followers'.$youtube, $count, 3600); } } if ($return == 'link') { return $link; } else { return $count; } } //vimeo fans count function mom_sc_vimeo ($vimeo, $return = 'count') { //delete_transient('mom_vimeo_followers'.$vimeo); //delete_transient('mom_vimeo_page_url'.$vimeo); $count = get_transient('mom_vimeo_followers'.$vimeo); $link = get_transient('mom_vimeo_page_url'.$vimeo); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $data = wp_remote_get('http://vimeo.com/api/v2/channel/'.$vimeo.'/info.json'); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = intval($json['total_subscribers']); $link = $json['url']; set_transient('mom_vimeo_followers'.$vimeo, $count, 3600); set_transient('mom_vimeo_page_url'.$vimeo, $link, 3600); } if ($return == 'link') { return $link; } else { return $count; } } //soundcloud fans count function mom_sc_soundcloud ($soundcloud, $return = 'count') { // delete_transient('mom_soundcloud_followers'.$id); //delete_transient('mom_soundcloud_page_url'.$id); $count = get_transient('mom_soundcloud_followers'.$soundcloud); $link = get_transient('mom_soundcloud_page_url'.$soundcloud); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $client_id = mom_option('soundcloud_client_id'); if ($client_id != '') { $data = wp_remote_get('http://api.soundcloud.com/users/'.$soundcloud.'.json?client_id='.$client_id); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = intval($json['followers_count']); $link = $json['permalink_url']; set_transient('mom_soundcloud_followers'.$soundcloud, $count, 3600); set_transient('mom_soundcloud_page_url'.$soundcloud, $link, 3600); } } if ($return == 'link') { return $link; } else { return $count; } } //behance fans count function mom_sc_behance ($behance, $return = 'count') { // delete_transient('mom_behance_followers'.$id); //delete_transient('mom_behance_page_url'.$id); $count = get_transient('mom_behance_followers'.$behance); $link = get_transient('mom_behance_page_url'.$behance); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $api_key = mom_option('behance_api_key'); if ($api_key != '') { $data = wp_remote_get('https://www.behance.net/v2/users/'.$behance.'?api_key='.$api_key); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = intval($json['user']['stats']['followers']); $link = $json['user']['url']; set_transient('mom_behance_followers'.$behance, $count, 3600); set_transient('mom_behance_page_url'.$behance, $link, 3600); } } if ($return == 'link') { return $link; } else { return $count; } } //instagram fans count function mom_sc_instagram ($instagram) { $page = mom_get_remote_html('http://www.instagram.com/'.$instagram, 'instagram-'.$instagram); $pattern = "/followed_by\"\:\s\{\"count\"\:(.*?)\}/"; preg_match($pattern, $page, $matches); if (!empty($matches[1])) { return (int) $matches[1]; } else { return 'no matches'; } } function mom_sc_instagram_s($instagram) { $cache_timeout = mom_option('social_counter_cache_time_out'); if ($cache_timeout == '') { $cache_timeout = 3600; } //delete_transient('mom_instagram_followers_'.$instagram); $count = get_transient('mom_instagram_followers_'.$instagram); if ($count) { return $count; } $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch,CURLOPT_URL,"https://www.instagram.com/$instagram/"); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.A.B.C Safari/525.13"); $data = curl_exec($ch); curl_close($ch); preg_match('/\"edge_followed_by\"\:\s?\{\"count\"\:\s?([0-9]+)/',$data,$m); if (isset($m[1])) { $count = intval($m[1]); set_transient('mom_instagram_followers_'.$instagram, $count, $cache_timeout); } else { $count = 0; } return $count; } //delicious fans count function mom_sc_delicious ($delicious, $return = 'count') { // delete_transient('mom_delicious_followers'.$id); //delete_transient('mom_delicious_page_url'.$id); $count = get_transient('mom_delicious_followers'.$delicious); $link = get_transient('mom_delicious_page_url'.$delicious); if ($return == 'link') { if ($link !== false) return $link; } else { if ($count !== false) return $count; } $count = 0; $link = ''; $data = wp_remote_get('http://feeds.delicious.com/v2/json/userinfo/'.$delicious); if (!is_wp_error($data)) { $json = json_decode( $data['body'], true ); $count = intval($json[2]['n']); $link = 'https://delicious.com/'.$delicious; set_transient('mom_delicious_followers'.$delicious, $count, 3600); set_transient('mom_delicious_page_url'.$delicious, $link, 3600); } if ($return == 'link') { return $link; } else { return $count; } } // pinterest function mom_sc_pinterest ($pinterest) { //delete_transient('mom_pinterest_followers'.$pinterest); $count = get_transient('mom_pinterest_followers'.$pinterest); if ($count !== false) return $count; $pin_metas = get_meta_tags($pinterest); if (isset($pin_metas['pinterestapp:followers'])) { $count = $pin_metas['pinterestapp:followers']; } else { $count = $pin_metas['followers']; } set_transient('mom_pinterest_followers'.$pinterest, $count, 3600); return $count; } if ('widgets.php' == basename($_SERVER['PHP_SELF'])) { add_action( 'admin_enqueue_scripts', 'mom_scw_admin_script'); } function mom_scw_admin_script(){ wp_enqueue_script( 'social-counter-widget', get_template_directory_uri() . '/framework/widgets/js/social-counter.js', array('jquery')); wp_localize_script( 'social-counter-widget', 'MomSCW', array( 'url' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'ajax-nonce' ), ) ); } // ajax Action add_action( 'wp_ajax_mom_scwdc', 'mom_social_counter_delete_cache' ); function mom_social_counter_delete_cache () { // stay away from bad guys $nonce = $_POST['nonce']; if ( ! wp_verify_nonce( $nonce, 'ajax-nonce' ) ) die ( 'Nope!' ); delete_transient('mom_twitter_followers'); delete_transient('mom_facebook_followers'); delete_transient('mom_facebook_page_url'); delete_transient('mom_googleplus_followers'); delete_transient('mom_googleplus_page_url'); delete_transient('mom_dribbble_followers'); delete_transient('mom_dribbble_page_url'); delete_transient('mom_youtube_followers'); delete_transient('mom_youtube_page_url'); delete_transient('mom_vimeo_followers'); delete_transient('mom_vimeo_page_url'); delete_transient('mom_soundcloud_followers'); delete_transient('mom_soundcloud_page_url'); delete_transient('mom_behance_followers'); delete_transient('mom_behance_page_url'); delete_transient('mom_instagram_followers'); delete_transient('mom_instagram_page_url'); delete_transient('mom_delicious_followers'); delete_transient('mom_delicious_page_url'); delete_transient('mom_pinterest_followers'); echo 'success'; exit(); } function mom_get_remote_html($url, $label) { // Check for transient, if none, grab remote HTML file if ( false === ( $html = get_transient( $label ) ) ) { // Get remote HTML file $response = wp_remote_get( $url ); // Check for error if ( is_wp_error( $response ) ) { return; } // Parse remote HTML file $data = wp_remote_retrieve_body( $response ); // Check for error if ( is_wp_error( $data ) ) { return; } $html = $data; // Store remote HTML file in transient, expire after 24 hours set_transient( $label, $data, 24 * HOUR_IN_SECONDS ); } return $html; }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка