function PageMain()
{
    global $template, $templatesdir, $includesdir, $config;
    //Do any page logic here.
    //If $using_db is set in standard_page_logic.inc the global $db
    //will be set. Most db queries should be done in a class library, though.
    //This simple example does stuff internally. For complicated json, you
    //might be better off making a json template in templates/js
    $template['callback'] = getVar('callback');
    $template['echo'] = getVar('echo');
    if ($template['callback'] != "" && preg_match('/^\\w+$/', $template['callback'])) {
        //use jsonp
        header('Content-type: text/javascript');
    } else {
        //standard json
        header('Content-type: application/json');
    }
    $pid = getVar('plusid');
    if ($pid == "") {
        $pid = '109463793347920104139';
    }
    $person = new PlusPerson();
    $person->loadByGooglePlusID($pid);
    if ($person->plusperson_id == 0) {
        $person->googleplus_id = $pid;
        $person->updateFromGooglePlusService();
        $person->insertIntoDB();
    } else {
        if (strtotime($person->modified_dt) < strtotime("-6 hours")) {
            $person->updateFromGooglePlusService();
            $person->fetched_relationships = 0;
            $person->updateDB();
        }
    }
    //Get the posts from G+
    $posts = PlusPost::FetchActivityStream($person->googleplus_id);
    //Save them all into the DB (merge will try to update them if they exist already)
    foreach ($posts as $post) {
        $post->mergeStreamPostIntoDB();
    }
    $postsdata = array();
    foreach ($posts as $post) {
        $data = array('googleplus_postid' => $post->googleplus_postid, 'author_id' => $post->author_id, 'post_data' => $post->post_data, 'share_content' => $post->share_content, 'shared_postid' => $post->shared_postid);
        $postsdata[] = $data;
    }
    $persondata = array('googleplus_id' => $person->googleplus_id, 'first_name' => $person->first_name, 'last_name' => $person->last_name, 'profile_photo' => $person->profile_photo, 'introduction' => $person->introduction, 'subhead' => $person->subhead);
    $data = array('plusperson' => $persondata, 'posts' => $postsdata);
    $responsedata = json_encode($data);
    //wrap jsonp if necessary
    if ($template['callback'] != "" && preg_match('/^\\w+$/', $template['callback'])) {
        $responsedata = $template['callback'] . '(' . $responsedata . ');';
    }
    echo $responsedata;
}
function PageMain()
{
    global $template, $templatesdir, $includesdir, $config;
    //Do any page logic here.
    //If $using_db is set in standard_page_logic.inc the global $db
    //will be set. Most db queries should be done in a class library, though.
    $template['title'] = 'PlusActivity API Test';
    $pid = getVar('plusid');
    if ($pid == "") {
        $pid = '109463793347920104139';
    }
    $person = new PlusPerson();
    $person->loadByGooglePlusID($pid);
    if ($person->plusperson_id == 0) {
        $person->googleplus_id = $pid;
        $person->updateFromGooglePlusService();
        $person->insertIntoDB();
    } else {
        if (strtotime($person->modified_dt) < strtotime("-6 hours")) {
            $person->updateFromGooglePlusService();
            $person->updateDB();
        }
    }
    $template['title'] = $person->first_name . " " . $person->last_name . " // " . $template['title'];
    //Get the posts from G+
    $posts = PlusPost::FetchActivityStream($person->googleplus_id);
    //Save them all into the DB (merge will try to update them if they exist already)
    foreach ($posts as $post) {
        $post->mergeStreamPostIntoDB();
    }
    //Pull them back out of the db for display
    $posts = PlusPost::FetchPostsByGooglePlusID($person->googleplus_id);
    $template['person'] = $person;
    $template['posts'] = $posts;
    require_once $templatesdir . 'pages/tests/plusactivity.inc';
}
示例#3
0
 public static function FetchActivityStream($googleplus_id)
 {
     $activity_url = 'https://plus.google.com/_/stream/getactivities/' . $googleplus_id . '/?sp=%5B1%2C2%2C%22' . $googleplus_id . '%22%2Cnull%2Cnull%2Cnull%2Cnull%2C%22social.google.com%22%2C%5B%5D%5D';
     $jsondata = GoogleUtil::FetchGoogleJSON($activity_url);
     $activities = $jsondata[1][0];
     //var_dump( $jsondata );
     $posts = array();
     foreach ($activities as $postdata) {
         $post = new PlusPost();
         $post->loadFromGooglePlusJSON($postdata);
         $posts[] = $post;
     }
     return $posts;
 }