Beispiel #1
0
function Broadcast_pagetab_response_content()
{
    $page = new Broadcast_Page();
    $req = Users::facebook('Broadcast')->getSignedRequest();
    if (empty($req['page']['id'])) {
        return "No page";
    }
    $page->page_id = $req['page']['id'];
    if (!$page->retrieve()) {
        return "No publisher";
    }
    $heading = "Spread Our Message";
    return Q::view('Broadcast/content/pagetab.php', compact('heading', 'page'));
}
Beispiel #2
0
function Broadcast_page_post()
{
    $user = Users::loggedInUser(true);
    if (empty($_REQUEST['page_ids'])) {
        throw new Q_Exception_RequiredField(array('field' => 'page_ids'));
    }
    $page_ids = explode(',', $_REQUEST['page_ids']);
    foreach ($page_ids as $page_id) {
        $page = new Broadcast_Page();
        $page->page_id = $page_id;
        $page->publisherId = $user->id;
        $page->heading = "";
        $page->save(true);
        // we just trust the user agent that this page id is really owned by the user
    }
    // TODO: Figure out a way to check whether it is owned by this user's fb_uid
    // The graph api seems to not give out the admins of a page, so how are we supposed to
    // prevent a logged-in user from spoofing a page_id and claiming they own it?
}