Compare commits
1 Commits
marijn-gro
...
marijn-pos
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb094858b5 |
@@ -3,29 +3,18 @@ session_start();
|
|||||||
|
|
||||||
require_once ("../../queries/connect.php");
|
require_once ("../../queries/connect.php");
|
||||||
require_once ("../../queries/checkInput.php");
|
require_once ("../../queries/checkInput.php");
|
||||||
require_once ("../../queries/group_page.php");
|
|
||||||
require_once ("../../queries/user.php");
|
require_once ("../../queries/user.php");
|
||||||
|
require_once ("../../queries/group_page.php");
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
if (isset($_POST["actions"]) && isset($_POST["userID"])) {
|
||||||
(getRoleByID($_SESSION["userID"]) == 'admin' ||
|
|
||||||
getRoleByID($_SESSION["userID"]) == 'owner')) {
|
|
||||||
$userinfo = getRoleByID($_SESSION['userID']);
|
|
||||||
|
|
||||||
if (isset($_POST["actions"]) && isset($_POST["userID"])) {
|
|
||||||
changeUserStatusByID($_POST["userID"], $_POST["actions"]);
|
changeUserStatusByID($_POST["userID"], $_POST["actions"]);
|
||||||
} else if (isset($_POST["actions"]) && isset($_POST["groupID"])) {
|
} else if (isset($_POST["actions"]) && isset($_POST["groupID"])) {
|
||||||
changeGroupStatusByID($_POST["groupID"], $_POST["actions"]);
|
changeGroupStatusByID($_POST["groupID"], $_POST["actions"]);
|
||||||
} else if (isset($_POST["batchactions"]) && isset($_POST["checkbox-user"])) {
|
} else if (isset($_POST["batchactions"]) && isset($_POST["checkbox-user"])) {
|
||||||
if ($userinfo == 'owner') {
|
|
||||||
changeMultipleUserStatusByID($_POST["checkbox-user"], $_POST["batchactions"]);
|
changeMultipleUserStatusByID($_POST["checkbox-user"], $_POST["batchactions"]);
|
||||||
} else {
|
} else if (isset($_POST["groupbatchactions"]) && isset($_POST["checkbox-group"])) {
|
||||||
changeMultipleUserStatusByIDAdmin($_POST["checkbox-user"], $_POST["batchactions"]);
|
|
||||||
}
|
|
||||||
} else if (isset($_POST["groupbatchactions"]) && isset($_POST["checkbox-group"])) {
|
|
||||||
changeMultipleGroupStatusByID($_POST["checkbox-group"], $_POST["groupbatchactions"]);
|
changeMultipleGroupStatusByID($_POST["checkbox-group"], $_POST["groupbatchactions"]);
|
||||||
} else if (isset($_POST['bancommentuserID']) && isset($_POST['bancommenttext'])) {
|
|
||||||
editBanCommentByID($_POST['bancommentuserID'], $_POST['bancommenttext']);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//header("location: ../admin.php");
|
||||||
|
print_r($_POST);
|
||||||
@@ -5,40 +5,24 @@ session_start();
|
|||||||
require_once ("../../queries/connect.php");
|
require_once ("../../queries/connect.php");
|
||||||
require_once ("../../queries/checkInput.php");
|
require_once ("../../queries/checkInput.php");
|
||||||
require_once ("../../queries/user.php");
|
require_once ("../../queries/user.php");
|
||||||
require_once ("../../queries/group_page.php");
|
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
$search = "";
|
||||||
(getRoleByID($_SESSION["userID"]) == 'admin' ||
|
if (isset($_POST["search"])) {
|
||||||
getRoleByID($_SESSION["userID"]) == 'owner')) {
|
|
||||||
$search = "";
|
|
||||||
if (isset($_POST["search"])) {
|
|
||||||
$search = test_input($_POST["search"]);
|
$search = test_input($_POST["search"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$pagetype = "user";
|
$pagetype = "user";
|
||||||
if (isset($_POST['pagetype'])) {
|
if (isset($_POST['pagetype'])) {
|
||||||
$pagetype = test_input($_POST['pagetype']);
|
$pagetype = test_input($_POST['pagetype']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$status = array();
|
$status = array();
|
||||||
if (isset($_POST['status'])) {
|
if (isset($_POST['status'])) {
|
||||||
$status = $_POST["status"];
|
$status = $_POST["status"];
|
||||||
}
|
}
|
||||||
|
|
||||||
$groupstatus = array();
|
|
||||||
if (isset($_POST['groupstatus'])) {
|
|
||||||
$groupstatus = $_POST["groupstatus"];
|
|
||||||
}
|
|
||||||
|
|
||||||
$entries = 20;
|
|
||||||
$currentpage = 1;
|
|
||||||
if (isset($_POST['currentpage'])) {
|
|
||||||
$currentpage = (int) test_input($_POST["currentpage"]);
|
|
||||||
}
|
|
||||||
|
|
||||||
$offset = (int) $currentpage * $entries - $entries;
|
|
||||||
|
|
||||||
|
if ($pagetype == "user") {
|
||||||
include ("../../views/adminpanel-page.php");
|
include ("../../views/adminpanel-page.php");
|
||||||
} else {
|
} else {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
echo "Pagenumber failed!";
|
||||||
}
|
}
|
||||||
@@ -7,44 +7,38 @@ require_once ("../../queries/checkInput.php");
|
|||||||
require_once ("../../queries/user.php");
|
require_once ("../../queries/user.php");
|
||||||
require_once ("../../queries/group_page.php");
|
require_once ("../../queries/group_page.php");
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
$offset = 0;
|
||||||
(getRoleByID($_SESSION["userID"]) == 'admin' ||
|
if (isset($_POST["n"])) {
|
||||||
getRoleByID($_SESSION["userID"]) == 'owner')) {
|
$offset = (int) test_input($_POST["n"]);
|
||||||
$offset = 0;
|
}
|
||||||
$entries = 20;
|
$entries = 20;
|
||||||
if (isset($_POST["currentpage"])) {
|
if (isset($_POST["m"])) {
|
||||||
$offset = (int)test_input($_POST["currentpage"]) * $entries - $entries;
|
$entries = (int) test_input($_POST["m"]);
|
||||||
}
|
}
|
||||||
|
$search = "";
|
||||||
$search = "";
|
if (isset($_POST["search"])) {
|
||||||
if (isset($_POST["search"])) {
|
$search = test_input($_POST["search"]);
|
||||||
$search = test_input($_POST["search"]);
|
}
|
||||||
}
|
|
||||||
|
$pagetype = "user";
|
||||||
$pagetype = "user";
|
if (isset($_POST['pagetype'])) {
|
||||||
if (isset($_POST['pagetype'])) {
|
$pagetype = test_input($_POST['pagetype']);
|
||||||
$pagetype = test_input($_POST['pagetype']);
|
}
|
||||||
}
|
|
||||||
|
$status = array();
|
||||||
$status = array();
|
if (isset($_POST['status'])) {
|
||||||
if (isset($_POST['status'])) {
|
$status = $_POST["status"];
|
||||||
$status = $_POST["status"];
|
}
|
||||||
}
|
|
||||||
|
$groupstatus = array();
|
||||||
$groupstatus = array();
|
if (isset($_POST['groupstatus'])) {
|
||||||
if (isset($_POST['groupstatus'])) {
|
$groupstatus = $_POST["groupstatus"];
|
||||||
$groupstatus = $_POST["groupstatus"];
|
}
|
||||||
}
|
|
||||||
|
if ($pagetype == "user") {
|
||||||
$userinfo = getRoleByID($_SESSION['userID']);
|
include ("../../views/adminpanel-table.php");
|
||||||
|
} else if ($pagetype == "group") {
|
||||||
if ($pagetype == "user") {
|
include ("../../views/adminpanel-grouptable.php");
|
||||||
include("../../views/adminpanel-table.php");
|
} else {
|
||||||
} else if ($pagetype == "group") {
|
echo "Search failed!";
|
||||||
include("../../views/adminpanel-grouptable.php");
|
|
||||||
} else {
|
|
||||||
echo "Search failed!";
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
}
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?php
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
require_once "../../queries/post.php";
|
|
||||||
require_once "../../queries/user.php";
|
|
||||||
if (!isset($_SESSION["userID"])) {
|
|
||||||
echo "logged out";
|
|
||||||
} else if (getRoleByID($_SESSION["userID"]) != 'frozen' and
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
|
|
||||||
if (empty($_POST["postID"]) or empty($_SESSION["userID"])) {
|
|
||||||
header('HTTP/1.1 500 Non enough arguments');
|
|
||||||
}
|
|
||||||
|
|
||||||
deletePost($_POST["postID"], $_SESSION["userID"]);
|
|
||||||
return;
|
|
||||||
|
|
||||||
} else {
|
|
||||||
echo "frozen";
|
|
||||||
}
|
|
||||||
@@ -3,32 +3,25 @@
|
|||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
require_once ("../../queries/friendship.php");
|
require_once ("../../queries/friendship.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
if(empty($_POST["usr"]) OR empty($_POST["action"]) OR !in_array($_POST["action"], array("request", "accept", "delete"))) {
|
||||||
getRoleByID($_SESSION["userID"]) != 'frozen' &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
if (empty($_POST["usr"]) OR empty($_POST["action"]) OR !in_array($_POST["action"], array("request", "accept", "delete"))) {
|
|
||||||
header('HTTP/1.1 500 Non enough arguments');
|
header('HTTP/1.1 500 Non enough arguments');
|
||||||
}
|
}
|
||||||
|
|
||||||
$friendship_status = getFriendshipStatus($_POST["usr"]);
|
$friendship_status = getFriendshipStatus($_POST["usr"]);
|
||||||
|
|
||||||
if ($_POST["action"] == "request" AND $friendship_status == 0) {
|
if($_POST["action"] == "request" AND $friendship_status == 0) {
|
||||||
if (!requestFriendship($_POST["usr"])) {
|
if (!requestFriendship($_POST["usr"])) {
|
||||||
header('HTTP/1.1 500 Query (request) failed');
|
header('HTTP/1.1 500 Query (request) failed');
|
||||||
}
|
}
|
||||||
} else if ($_POST["action"] == "delete" AND in_array($friendship_status, array(1, 2, 3))) {
|
} else if($_POST["action"] == "delete" AND in_array($friendship_status, array(1, 2, 3))) {
|
||||||
if (!removeFriendship($_POST["usr"])) {
|
if (!removeFriendship($_POST["usr"])) {
|
||||||
header('HTTP/1.1 500 Query (delete) failed');
|
header('HTTP/1.1 500 Query (delete) failed');
|
||||||
}
|
}
|
||||||
} else if ($_POST["action"] == "accept" AND $friendship_status == 3) {
|
} else if ($_POST["action"] == "accept" AND $friendship_status == 3) {
|
||||||
if (!acceptFriendship($_POST["usr"])) {
|
if (!acceptFriendship($_POST["usr"])) {
|
||||||
header('HTTP/1.1 500 Query (accept) failed');
|
header('HTTP/1.1 500 Query (accept) failed');
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
header('HTTP/1.1 500 Not the right friendship status');
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
header('HTTP/1.1 500 Not the right friendship status');
|
||||||
}
|
}
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
if(empty($_POST["grp"]) or empty($_POST["role"])) {
|
|
||||||
header('HTTP/1.1 500 Non enough arguments');
|
|
||||||
}
|
|
||||||
|
|
||||||
if(in_array($_POST["role"], array('request', 'member', 'banned', 'mod', 'admin'))) {
|
|
||||||
header('HTTP/1.1 500 Wrong argument given for role');
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once ("../../queries/group_member.php");
|
|
||||||
require_once ("../../queries/group_page.php");
|
|
||||||
require_once ("../../queries/group_member.php");
|
|
||||||
|
|
||||||
$currentRole = selectGroupRole($_POST["grp"]);
|
|
||||||
$groupStatus = selectGroupStatus($_POST["grp"]);
|
|
||||||
echo "role: $currentRole status: $groupStatus ";
|
|
||||||
|
|
||||||
if($_POST["role"] == 'request' and $currentRole == 'none') {
|
|
||||||
if($groupStatus = 'public') {
|
|
||||||
// Add member to public group
|
|
||||||
addMember($_POST["grp"], $_SESSION["userID"], 'member');
|
|
||||||
echo "ADDED";
|
|
||||||
} else if($groupStatus = 'membersonly') {
|
|
||||||
// Send request to members only group
|
|
||||||
addMember($_POST["grp"], $_SESSION["userID"], 'request');
|
|
||||||
} else {
|
|
||||||
// Can't invite yourself to hidden groups
|
|
||||||
header('HTTP/1.1 500 This group is hidden');
|
|
||||||
}
|
|
||||||
header('HTTP/1.1 200');
|
|
||||||
} else if($_POST["role"] == 'none' and $currentRole != 'none') {
|
|
||||||
// Remove yourself from a group
|
|
||||||
deleteMember($_POST["grp"], $_SESSION["userID"]);
|
|
||||||
} else {
|
|
||||||
echo "failure";
|
|
||||||
header('HTTP/1.1 500 Wrong argument given for role');
|
|
||||||
}
|
|
||||||
@@ -10,21 +10,15 @@
|
|||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
require_once ("../../queries/friendship.php");
|
require_once ("../../queries/friendship.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
if(empty($_POST["usr"])) {
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
if (empty($_POST["usr"])) {
|
|
||||||
header('HTTP/1.1 500 Non enough arguments');
|
header('HTTP/1.1 500 Non enough arguments');
|
||||||
}
|
|
||||||
|
|
||||||
$friendship_status = getFriendshipStatus($_POST["usr"]);
|
|
||||||
|
|
||||||
if ($friendship_status == -2) {
|
|
||||||
header('HTTP/1.1 500 Query failed');
|
|
||||||
}
|
|
||||||
|
|
||||||
echo $friendship_status;
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$friendship_status = getFriendshipStatus($_POST["usr"]);
|
||||||
|
|
||||||
|
if($friendship_status == -2) {
|
||||||
|
header('HTTP/1.1 500 Query failed');
|
||||||
|
}
|
||||||
|
|
||||||
|
echo $friendship_status;
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
if(empty($_POST["grp"])) {
|
|
||||||
header('HTTP/1.1 500 Non enough arguments');
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once("../../queries/group_page.php");
|
|
||||||
|
|
||||||
echo selectGroupRole($_POST["grp"]);
|
|
||||||
|
|
||||||
@@ -1,37 +1,26 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
if(!isset($_POST["offset"]) or !isset($_POST["limit"])) {
|
if(empty($_POST["usr"]) and empty($_POST["grp"])) {
|
||||||
header('HTTP/1.1 500 Not enough arguments');
|
header('HTTP/1.1 500 Non enough arguments');
|
||||||
}
|
}
|
||||||
if(!isset($_POST["usr"]) and !isset($_POST["grp"])) {
|
|
||||||
header('HTTP/1.1 500 Not enough arguments');
|
|
||||||
}
|
|
||||||
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
require_once ("../../queries/post.php");
|
require_once ("../../queries/post.php");
|
||||||
require_once ("../../queries/nicetime.php");
|
require_once ("../../queries/nicetime.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
if(empty($_POST["usr"])) {
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
$posts = selectAllPosts(0, $_POST["grp"]);
|
||||||
if(empty($_POST["usr"])) {
|
|
||||||
$posts = selectSomePosts(0, $_POST["grp"], $_POST["offset"], $_POST["limit"]);
|
|
||||||
} else {
|
|
||||||
$posts = selectSomePosts($_POST["usr"], 0, $_POST["offset"], $_POST["limit"]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!$posts) {
|
|
||||||
echo false;
|
|
||||||
} else {
|
|
||||||
$results = $posts->fetchAll(PDO::FETCH_ASSOC);
|
|
||||||
|
|
||||||
for($i = 0; $i < sizeof($results); $i++) {
|
|
||||||
$results[$i]["nicetime"] = nicetime($results[$i]["creationdate"]);
|
|
||||||
}
|
|
||||||
|
|
||||||
echo json_encode($results);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
$posts = selectAllPosts($_POST["usr"], 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!$posts) {
|
||||||
|
header('HTTP/1.1 500 Query failed');
|
||||||
|
}
|
||||||
|
|
||||||
|
$results = $posts->fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
|
for($i = 0; $i < sizeof($results); $i++) {
|
||||||
|
$results[$i]["nicetime"] = nicetime($results[$i]["creationdate"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
echo json_encode($results);
|
||||||
@@ -4,12 +4,5 @@ session_start();
|
|||||||
|
|
||||||
require_once ("../../queries/connect.php");
|
require_once ("../../queries/connect.php");
|
||||||
require_once ("../../queries/private_message.php");
|
require_once ("../../queries/private_message.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
// Check if the user is allowed to load them.
|
echo selectAllUnreadChat();
|
||||||
if (isset($_SESSION["userID"]) &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
echo selectAllUnreadChat();
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
|
||||||
@@ -4,13 +4,5 @@ session_start();
|
|||||||
|
|
||||||
require_once ("../../queries/connect.php");
|
require_once ("../../queries/connect.php");
|
||||||
require_once ("../../queries/friendship.php");
|
require_once ("../../queries/friendship.php");
|
||||||
require_once ("../../queries/user.php");
|
|
||||||
|
|
||||||
// Check if the user is allowed to load them.
|
echo selectAllFriendRequests();
|
||||||
if (isset($_SESSION["userID"]) &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'frozen' &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
echo selectAllFriendRequests();
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
|
||||||
@@ -5,24 +5,12 @@ session_start();
|
|||||||
require_once ("../../queries/connect.php");
|
require_once ("../../queries/connect.php");
|
||||||
require_once ("../../queries/checkInput.php");
|
require_once ("../../queries/checkInput.php");
|
||||||
require_once ("../../queries/friendship.php");
|
require_once ("../../queries/friendship.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
// Check if the user is allowed to load them.
|
if (isset($_POST["limit"])) {
|
||||||
if (isset($_SESSION["userID"]) &&
|
echo selectLimitedFriends($_SESSION["userID"], (int) test_input($_POST["limit"]));
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
} else if (isset($_GET["limit"])) {
|
||||||
if (isset($_SESSION["userID"])) {
|
echo selectLimitedFriends($_SESSION["userID"], (int) test_input($_GET["limit"]));
|
||||||
// Echo the limited or unlimited users.
|
|
||||||
if (isset($_POST["limit"])) {
|
|
||||||
echo selectLimitedFriends($_SESSION["userID"], (int)test_input($_POST["limit"]));
|
|
||||||
} else if (isset($_GET["limit"])) {
|
|
||||||
echo selectLimitedFriends($_SESSION["userID"], (int)test_input($_GET["limit"]));
|
|
||||||
} else {
|
|
||||||
echo selectFriends($_SESSION["userID"]);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
echo "[]";
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
echo selectFriends($_SESSION["userID"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,17 +6,9 @@ require_once ("../../queries/connect.php");
|
|||||||
require_once ("../../queries/checkInput.php");
|
require_once ("../../queries/checkInput.php");
|
||||||
require_once ("../../queries/group_member.php");
|
require_once ("../../queries/group_member.php");
|
||||||
|
|
||||||
require_once("../../queries/user.php");
|
if (isset($_POST["limit"])) {
|
||||||
|
echo selectLimitedGroupsFromUser($_SESSION["userID"], (int) test_input($_POST["limit"]));
|
||||||
// Check if the user is allowed to load them.
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
// Echo the limited or unlimited groups.
|
|
||||||
if (isset($_POST["limit"])) {
|
|
||||||
echo selectLimitedGroupsFromUser($_SESSION["userID"], (int)test_input($_POST["limit"]));
|
|
||||||
} else {
|
|
||||||
echo selectAllGroupsFromUser($_SESSION["userID"]);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
echo selectAllGroupsFromUser($_SESSION["userID"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,19 +6,11 @@ require_once("../../queries/connect.php");
|
|||||||
require_once("../../queries/private_message.php");
|
require_once("../../queries/private_message.php");
|
||||||
require_once("../../queries/checkInput.php");
|
require_once("../../queries/checkInput.php");
|
||||||
require_once("../../queries/friendship.php");
|
require_once("../../queries/friendship.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
// Check if the user is allowed to get the messages.
|
if (isset($_POST["lastID"]) && $_POST["lastID"] != "") {
|
||||||
if (isset($_SESSION["userID"]) &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
// Check if the users wants new messages or old ones, and give the right one back.
|
|
||||||
if (isset($_POST["lastID"]) && $_POST["lastID"] != "") {
|
|
||||||
setLastVisited(test_input($_POST["destination"]));
|
setLastVisited(test_input($_POST["destination"]));
|
||||||
echo getNewChatMessages(test_input($_POST["lastID"]), test_input($_POST["destination"]));
|
echo getNewChatMessages(test_input($_POST["lastID"]), test_input($_POST["destination"]));
|
||||||
} else {
|
} else {
|
||||||
setLastVisited(test_input($_POST["destination"]));
|
setLastVisited(test_input($_POST["destination"]));
|
||||||
echo getOldChatMessages(test_input($_POST["destination"]));
|
echo getOldChatMessages(test_input($_POST["destination"]));
|
||||||
}
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
}
|
||||||
@@ -1,21 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
require_once("../../queries/connect.php");
|
require_once("../../queries/connect.php");
|
||||||
require_once("../../queries/post.php");
|
require_once("../../queries/post.php");
|
||||||
require_once("../../queries/checkInput.php");
|
require_once("../../queries/checkInput.php");
|
||||||
require_once("../../queries/nicetime.php");
|
require_once("../../queries/nicetime.php");
|
||||||
|
|
||||||
require_once("../../queries/user.php");
|
if(isset($_GET['postID'])) {
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
if (isset($_GET['postID'])) {
|
|
||||||
include("../../views/post-view.php");
|
include("../../views/post-view.php");
|
||||||
} else {
|
|
||||||
echo "Kan de post niet laden";
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
echo "Failed to load";
|
||||||
}
|
}
|
||||||
41
website/public/API/nietSlecht.php
Normal file
41
website/public/API/nietSlecht.php
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
session_start();
|
||||||
|
require_once ("../queries/connect.php");
|
||||||
|
require_once ("../queries/checkInput.php");
|
||||||
|
|
||||||
|
function getNietSlechtCountForPost(int $postID) : int {
|
||||||
|
$stmt = prepareQuery("
|
||||||
|
SELECT
|
||||||
|
`userID`
|
||||||
|
FROM
|
||||||
|
`niet_slecht`
|
||||||
|
WHERE
|
||||||
|
`postID` = :postID
|
||||||
|
");
|
||||||
|
$stmt->bindParam(":postID", $postID);
|
||||||
|
$stmt->execute();
|
||||||
|
return $stmt->rowCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getNietSlechtUsersForPost(int $postID) {
|
||||||
|
$stmt = prepareQuery("
|
||||||
|
SELECT
|
||||||
|
`fname`,
|
||||||
|
`lname`,
|
||||||
|
CONCAT(`user`.`fname`, ' ', `user`.`lname`) as `fullname`
|
||||||
|
FROM
|
||||||
|
`user`
|
||||||
|
INNER JOIN
|
||||||
|
`niet_slecht`
|
||||||
|
WHERE
|
||||||
|
`user`.`userID` = `niet_slecht`.`userID` AND
|
||||||
|
`niet_slecht`.`postID` = :postID
|
||||||
|
");
|
||||||
|
$stmt->bindParam(":postID", $postID);
|
||||||
|
$stmt->execute();
|
||||||
|
$rows = $stmt->fetchAll();
|
||||||
|
foreach ($rows as $row) {
|
||||||
|
print($row["fullname"]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,16 +2,11 @@
|
|||||||
|
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
require_once("../../queries/post.php");
|
require("../../queries/post.php");
|
||||||
require_once("../../queries/connect.php");
|
require_once("../../queries/connect.php");
|
||||||
require_once("../../queries/checkInput.php");
|
require("../../queries/checkInput.php");
|
||||||
require_once("../../queries/user.php");
|
print_r($_POST);
|
||||||
|
if ($_POST['button'] == 'reaction') {
|
||||||
if (!isset($_SESSION["userID"])) {
|
|
||||||
echo "logged out";
|
|
||||||
} else if (getRoleByID($_SESSION["userID"]) != 'frozen' &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
if ($_POST['button'] == 'reaction') {
|
|
||||||
if (empty($_POST['newcomment-content'])) {
|
if (empty($_POST['newcomment-content'])) {
|
||||||
echo 0;
|
echo 0;
|
||||||
} else {
|
} else {
|
||||||
@@ -23,15 +18,12 @@ if (!isset($_SESSION["userID"])) {
|
|||||||
echo 0;
|
echo 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if ($_POST['button'] == 'nietslecht') {
|
} else if ($_POST['button'] == 'nietslecht') {
|
||||||
if (makeNietSlecht($_POST["postID"], $_SESSION["userID"])) {
|
if (makeNietSlecht($_POST["postID"], $_SESSION["userID"])) {
|
||||||
echo 1;
|
echo 1;
|
||||||
} else {
|
} else {
|
||||||
echo 0;
|
echo 0;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
echo 0;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
echo "frozen";
|
echo 0;
|
||||||
}
|
}
|
||||||
@@ -6,47 +6,34 @@ require_once("../../queries/post.php");
|
|||||||
require_once("../../queries/group_page.php");
|
require_once("../../queries/group_page.php");
|
||||||
require_once("../../queries/connect.php");
|
require_once("../../queries/connect.php");
|
||||||
require_once("../../queries/checkInput.php");
|
require_once("../../queries/checkInput.php");
|
||||||
require_once("../../queries/user.php");
|
require_once("../../queries/picture.php");
|
||||||
|
|
||||||
if (!isset($_SESSION["userID"])) {
|
if (empty($_POST["title"]) or
|
||||||
echo "logged out";
|
empty($_POST["content"]) or
|
||||||
} else if (getRoleByID($_SESSION["userID"]) != 'frozen' &&
|
empty($_SESSION["userID"])) {
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
|
|
||||||
if (empty($_SESSION["userID"])) {
|
|
||||||
header('HTTP/1.1 500 Non enough arguments');
|
header('HTTP/1.1 500 Non enough arguments');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty(test_input($_POST["title"])) or
|
if (empty($_POST["group"])) {
|
||||||
empty(test_input($_POST["content"]))
|
|
||||||
) {
|
|
||||||
echo "empty";
|
|
||||||
} else {
|
|
||||||
if (empty($_POST["group"])) {
|
|
||||||
// User Post
|
// User Post
|
||||||
makePost(
|
makePost(
|
||||||
$_SESSION["userID"],
|
$_SESSION["userID"],
|
||||||
null,
|
|
||||||
test_input($_POST["title"]),
|
test_input($_POST["title"]),
|
||||||
test_input($_POST["content"])
|
test_input($_POST["content"])
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
// Group Post
|
// Group Post
|
||||||
|
|
||||||
// Check if the user is an admin or mod of the group.
|
// Check if the user is an admin or mod of the group.
|
||||||
if (!in_array(selectGroupRole($_POST["group"]), array('mod', 'admin'))) {
|
if(!in_array(selectGroupRole($_POST["group"]), array('mod', 'admin'))) {
|
||||||
header('HTTP/1.1 500 Non enough rights');
|
header('HTTP/1.1 500 Non enough rights');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
makePost(
|
makePost(
|
||||||
$_SESSION["userID"],
|
$_SESSION["userID"],
|
||||||
$_POST["group"],
|
|
||||||
test_input($_POST["title"]),
|
test_input($_POST["title"]),
|
||||||
test_input($_POST["content"])
|
test_input($_POST["content"]),
|
||||||
|
$_POST["group"]
|
||||||
);
|
);
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
echo "frozen";
|
|
||||||
}
|
}
|
||||||
@@ -7,29 +7,22 @@ require_once ("../../queries/connect.php");
|
|||||||
require_once ("../../queries/checkInput.php");
|
require_once ("../../queries/checkInput.php");
|
||||||
require_once ("../../queries/group_member.php");
|
require_once ("../../queries/group_member.php");
|
||||||
require_once ("../../queries/group_page.php");
|
require_once ("../../queries/group_page.php");
|
||||||
require_once ("../../queries/user.php");
|
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
$n = 0;
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
if (isset($_POST["n"])) {
|
||||||
|
$n = (int) test_input($_POST["n"]);
|
||||||
$n = 0;
|
}
|
||||||
if (isset($_POST["n"])) {
|
$m = 20;
|
||||||
$n = (int)test_input($_POST["n"]);
|
if (isset($_POST["m"])) {
|
||||||
}
|
$m = (int) test_input($_POST["m"]);
|
||||||
$m = 20;
|
}
|
||||||
if (isset($_POST["m"])) {
|
$search = "";
|
||||||
$m = (int)test_input($_POST["m"]);
|
if (isset($_POST["search"])) {
|
||||||
}
|
$search = test_input($_POST["search"]);
|
||||||
$search = "";
|
}
|
||||||
if (isset($_POST["search"])) {
|
|
||||||
$search = test_input($_POST["search"]);
|
if (isset($_POST["filter"]) && $_POST["filter"] == "personal") {
|
||||||
}
|
echo searchSomeOwnGroups($n, $m, $search);
|
||||||
|
} else {
|
||||||
if (isset($_POST["filter"]) && $_POST["filter"] == "personal") {
|
echo searchSomeGroups($n, $m, $search);
|
||||||
echo searchSomeOwnGroups($n, $m, $search);
|
|
||||||
} else {
|
|
||||||
echo searchSomeGroups($n, $m, $search);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
}
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
require_once ("../../queries/connect.php");
|
|
||||||
require_once ("../../queries/checkInput.php");
|
|
||||||
require_once ("../../queries/user.php");
|
|
||||||
require_once ("../../queries/group_page.php");
|
|
||||||
require_once ("../../queries/friendship.php");
|
|
||||||
require_once ("../../queries/group_member.php");
|
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {$user_perpage = $group_perpage = 20;
|
|
||||||
|
|
||||||
$user_currentpage = $group_currentpage = 1;
|
|
||||||
if (isset($_POST['user-pageselect'])) {
|
|
||||||
$user_currentpage = test_input($_POST['user-pageselect']);
|
|
||||||
}
|
|
||||||
if (isset($_POST['group-pageselect'])) {
|
|
||||||
$group_currentpage = test_input($_POST['group-pageselect']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$user_n = $user_currentpage * $user_perpage - $user_perpage;
|
|
||||||
$group_n = $group_currentpage * $group_perpage - $group_perpage;
|
|
||||||
|
|
||||||
$search = "";
|
|
||||||
if (isset($_POST['search'])) {
|
|
||||||
$search = test_input($_POST['search']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$filter = "all";
|
|
||||||
if (isset($_POST['filter'])) {
|
|
||||||
$filter = test_input($_POST['filter']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($filter == "all") {
|
|
||||||
$user_count = countSomeUsers($search)->fetchColumn();
|
|
||||||
$group_count = countSomeGroups($search)->fetchColumn();
|
|
||||||
} else {
|
|
||||||
$user_count = countSomeFriends($search);
|
|
||||||
$group_count = countSomeOwnGroups($search);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$option = "user";
|
|
||||||
if (isset($_POST['option'])) {
|
|
||||||
$option = test_input($_POST['option']);
|
|
||||||
}
|
|
||||||
|
|
||||||
include ("../../views/searchPageNumber.php");
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
|
||||||
@@ -7,29 +7,21 @@ require_once ("../../queries/checkInput.php");
|
|||||||
require_once ("../../queries/friendship.php");
|
require_once ("../../queries/friendship.php");
|
||||||
require_once ("../../queries/user.php");
|
require_once ("../../queries/user.php");
|
||||||
|
|
||||||
if (isset($_SESSION["userID"]) &&
|
$n = 0;
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
if (isset($_POST["n"])) {
|
||||||
|
$n = (int) test_input($_POST["n"]);
|
||||||
$n = 0;
|
}
|
||||||
$m = 20;
|
$m = 20;
|
||||||
|
if (isset($_POST["m"])) {
|
||||||
$page = 1;
|
$m = (int) test_input($_POST["m"]);
|
||||||
if (isset($_POST["user-pageselect"])) {
|
}
|
||||||
$page = (int)test_input($_POST['user-pageselect']);
|
$search = "";
|
||||||
}
|
if (isset($_POST["search"])) {
|
||||||
|
$search = test_input($_POST["search"]);
|
||||||
$n = ($page - 1) * $m;
|
}
|
||||||
|
|
||||||
$search = "";
|
if (isset($_POST["filter"]) && $_POST["filter"] == "personal") {
|
||||||
if (isset($_POST["search"])) {
|
echo searchSomeFriends($n, $m, $search);
|
||||||
$search = test_input($_POST["search"]);
|
} else {
|
||||||
}
|
echo searchSomeUsers($n, $m, $search);
|
||||||
|
|
||||||
if (isset($_POST["filter"]) && $_POST["filter"] == "personal") {
|
|
||||||
echo searchSomeFriends($n, $m, $search);
|
|
||||||
} else {
|
|
||||||
echo searchSomeUsers($n, $m, $search);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
header('HTTP/1.0 403 Forbidden');
|
|
||||||
}
|
}
|
||||||
@@ -4,26 +4,14 @@ session_start();
|
|||||||
require_once("../../queries/connect.php");
|
require_once("../../queries/connect.php");
|
||||||
require_once("../../queries/private_message.php");
|
require_once("../../queries/private_message.php");
|
||||||
require_once("../../queries/checkInput.php");
|
require_once("../../queries/checkInput.php");
|
||||||
require_once("../../queries/user.php");
|
|
||||||
|
|
||||||
// Check if the user is allowed to send a message.
|
if (!empty(test_input($_POST["destination"])) &&
|
||||||
if (!isset($_SESSION["userID"])) {
|
!empty(test_input($_POST["content"]))) {
|
||||||
echo "logged out";
|
|
||||||
} else if (getRoleByID($_SESSION["userID"]) != 'frozen' &&
|
|
||||||
getRoleByID($_SESSION["userID"]) != 'banned') {
|
|
||||||
if (!empty(test_input($_POST["destination"])) &&
|
|
||||||
!empty(test_input($_POST["content"]))
|
|
||||||
) {
|
|
||||||
// Send the message.
|
|
||||||
// Returns false when it didn't succeed sending the message.
|
|
||||||
if (sendMessage(test_input($_POST["destination"]), test_input($_POST["content"]))) {
|
if (sendMessage(test_input($_POST["destination"]), test_input($_POST["content"]))) {
|
||||||
echo 1;
|
echo 1;
|
||||||
} else {
|
} else {
|
||||||
echo 0;
|
echo 0;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
echo 0;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
echo "frozen";
|
echo 0;
|
||||||
}
|
}
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
<style>
|
<style>
|
||||||
@import url("styles/adminpanel.css");
|
@import url("styles/adminpanel.css");
|
||||||
</style>
|
</style>
|
||||||
<script src="js/admin.js" charset="utf-8"></script>
|
<script src="js/admin.js" charset="utf-8"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
@@ -19,9 +19,9 @@
|
|||||||
include_once ("../queries/user.php");
|
include_once ("../queries/user.php");
|
||||||
|
|
||||||
// auth
|
// auth
|
||||||
$role = getRoleByID($_SESSION['userID']);
|
$userinfo = getRoleByID($_SESSION['userID'])->fetch(PDO::FETCH_ASSOC);
|
||||||
|
|
||||||
if ($role != 'admin' AND $role != 'owner') {
|
if ($userinfo['role'] != 'admin' AND $userinfo['role'] != 'owner') {
|
||||||
header("location:profile.php");
|
header("location:profile.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ session_start();
|
|||||||
|
|
||||||
include_once ("../../queries/friendship.php");
|
include_once ("../../queries/friendship.php");
|
||||||
|
|
||||||
// Initialize variables to given or default values.
|
|
||||||
if (isset($_POST["action"])) {
|
if (isset($_POST["action"])) {
|
||||||
$action = $_POST["action"];
|
$action = $_POST["action"];
|
||||||
} else {
|
} else {
|
||||||
@@ -19,8 +18,6 @@ if (isset($_POST["actionType"])) {
|
|||||||
|
|
||||||
$friends = json_decode($_POST["friends"]);
|
$friends = json_decode($_POST["friends"]);
|
||||||
|
|
||||||
|
|
||||||
// Foreach friend, return them as list item.
|
|
||||||
foreach($friends as $i => $friend) {
|
foreach($friends as $i => $friend) {
|
||||||
$friendshipStatus = getFriendshipStatus($friend->userID);
|
$friendshipStatus = getFriendshipStatus($friend->userID);
|
||||||
?>
|
?>
|
||||||
@@ -36,12 +33,12 @@ foreach($friends as $i => $friend) {
|
|||||||
}
|
}
|
||||||
?>'>
|
?>'>
|
||||||
<div class='friend'>
|
<div class='friend'>
|
||||||
<img alt='PF' class='profile-picture <?= $friend->onlinestatus ?>' src='<?= $friend->profilepicture ?>'/>
|
<img alt='PF' class='profile-picture' src='<?= $friend->profilepicture ?>'/>
|
||||||
<div class='friend-name'>
|
<div class='friend-name'>
|
||||||
<?= $friend->fullname ?><br/>
|
<?= $friend->fullname ?><br/>
|
||||||
<span style='color: #666'><?php
|
<span style='color: #666'><?php
|
||||||
if (isset($friend->username)) {
|
if (isset($friend->username)) {
|
||||||
echo $friend->usernameshort;
|
echo $friend->username;
|
||||||
} else if (isset($friend->content)) {
|
} else if (isset($friend->content)) {
|
||||||
echo $friend->content;
|
echo $friend->content;
|
||||||
}
|
}
|
||||||
@@ -51,7 +48,6 @@ foreach($friends as $i => $friend) {
|
|||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
// Add friendship options if possible.
|
|
||||||
if ($friendshipStatus > 1) {
|
if ($friendshipStatus > 1) {
|
||||||
if ($friendshipStatus == 2) {
|
if ($friendshipStatus == 2) {
|
||||||
$denyName = "Annuleer";
|
$denyName = "Annuleer";
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ include_once ("../../queries/group_member.php");
|
|||||||
|
|
||||||
$groups = json_decode($_POST["groups"]);
|
$groups = json_decode($_POST["groups"]);
|
||||||
|
|
||||||
// Add each group as list item.
|
|
||||||
foreach($groups as $i => $group) {
|
foreach($groups as $i => $group) {
|
||||||
?>
|
?>
|
||||||
<li class='group-item'>
|
<li class='group-item'>
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
<?php
|
|
||||||
if (isset($_GET["groupname"])) {
|
|
||||||
$url = "https://myhyvesbookplus.nl/~lars/group.php?groupname=" . $_GET["groupname"];
|
|
||||||
} else {
|
|
||||||
$url = "https://myhyvesbookplus.nl/";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<a href="<?= $url ?>" target='_blank'><img style="width: 100%; height: auto;" src="../external/nietslecht_button.png" alt='\"Niet slecht\" ons op MyHyvesbook+' /></a>
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
require_once "../queries/createGroup.php";
|
|
||||||
require_once "../queries/connect.php";
|
|
||||||
require_once "../queries/alerts.php"?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<?php include("../views/head.php"); ?>
|
|
||||||
<style>
|
|
||||||
@import url("styles/settings.css");
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<?php
|
|
||||||
/*
|
|
||||||
* This view adds the main layout over the screen.
|
|
||||||
* Header and menu.
|
|
||||||
*/
|
|
||||||
include("../views/main.php");
|
|
||||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|
||||||
try {
|
|
||||||
createGroup();
|
|
||||||
} catch (AlertMessage $e) {
|
|
||||||
|
|
||||||
}
|
|
||||||
$groupname = $_POST["groupName"];
|
|
||||||
header("location: group.php?groupname=$groupname");
|
|
||||||
}
|
|
||||||
/* Add your view files here. */
|
|
||||||
include("../views/createGroup.php");
|
|
||||||
|
|
||||||
/* This adds the footer. */
|
|
||||||
include("../views/footer.php");
|
|
||||||
?>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -11,17 +11,15 @@
|
|||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
include_once("../queries/group_page.php");
|
include("../queries/group_page.php");
|
||||||
|
|
||||||
if(!$group = selectGroupByName($_GET["groupname"])) {
|
$group = selectGroupByName($_GET["groupname"]);
|
||||||
header("HTTP/1.0 404 Not Found");
|
$members = selectGroupMembers(2);
|
||||||
header("Location: error/404.php");
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$members = selectGroupMembers($group["groupID"]);
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
<script>alert("<?= $members[0] ?>");</script>
|
||||||
|
<script>alert("<?= $members[1] ?>");</script>
|
||||||
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This view adds the main layout over the screen.
|
* This view adds the main layout over the screen.
|
||||||
@@ -42,15 +40,12 @@ if ($group["role"] == "mod" OR $group["role"] == "admin") {
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<script src="js/masonry.js"></script>
|
<script src="js/masonry.js"></script>
|
||||||
<script src="js/groupButtons.js"></script>
|
|
||||||
<script src="js/post.js"></script>
|
<script src="js/post.js"></script>
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
userID = 0;
|
userID = 0;
|
||||||
groupID = <?= $group["groupID"] ?>;
|
groupID = <?= $group["groupID"] ?>;
|
||||||
|
|
||||||
placeGroupButtons();
|
|
||||||
|
|
||||||
masonry(<?= $masonry_mode ?>);
|
masonry(<?= $masonry_mode ?>);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,72 +0,0 @@
|
|||||||
<?php
|
|
||||||
require_once "../queries/picture.php";
|
|
||||||
require_once "../queries/groupAdmin.php";
|
|
||||||
require_once "../queries/alerts.php";
|
|
||||||
?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<?php include("../views/head.php"); ?>
|
|
||||||
<style>
|
|
||||||
/*Insert own stylesheet here ;)*/
|
|
||||||
@import url("styles/settings.css");
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<?php
|
|
||||||
/*
|
|
||||||
* This view adds the main layout over the screen.
|
|
||||||
* Header and menu.
|
|
||||||
*/
|
|
||||||
include("../views/main.php");
|
|
||||||
$alertClass;
|
|
||||||
$alertMessage;
|
|
||||||
|
|
||||||
// Select which button has been pressed.
|
|
||||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|
||||||
try {
|
|
||||||
switch ($_POST["form"]) {
|
|
||||||
case "group":
|
|
||||||
updateGroupSettings($_POST["groupID"]);
|
|
||||||
break;
|
|
||||||
case "picture":
|
|
||||||
if (checkGroupAdmin($_POST["groupID"], $_SESSION["userID"])) {
|
|
||||||
updateAvatar($_POST["groupID"]);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "mod":
|
|
||||||
if (!array_key_exists("userID", $_POST)) {
|
|
||||||
throw new AngryAlert("Geen gebruiker geselecteerd.");
|
|
||||||
}
|
|
||||||
upgradeUser($_POST["groupID"], $_POST["userID"], "mod");
|
|
||||||
break;
|
|
||||||
case "admin":
|
|
||||||
if (!array_key_exists("userID", $_POST)) {
|
|
||||||
throw new AngryAlert("Geen gebruiker geselecteerd.");
|
|
||||||
}
|
|
||||||
upgradeUser($_POST["groupID"], $_POST["userID"], "admin");
|
|
||||||
break;
|
|
||||||
case "deadmin":
|
|
||||||
if (!array_key_exists("userID", $_POST)) {
|
|
||||||
throw new AngryAlert("Geen gebruiker geselecteerd.");
|
|
||||||
}
|
|
||||||
upgradeUser($_POST["groupID"], $_POST["userID"], "member");
|
|
||||||
break;
|
|
||||||
case "delete":
|
|
||||||
deleteGroup();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} catch (AlertMessage $w) {
|
|
||||||
$alertClass = $w->getClass();
|
|
||||||
$alertMessage = $w->getMessage();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add your view files here. */
|
|
||||||
include("../views/groupAdmin.php");
|
|
||||||
|
|
||||||
/* This adds the footer. */
|
|
||||||
include("../views/footer.php");
|
|
||||||
?>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,46 +1,42 @@
|
|||||||
$(window).on("load", function () {
|
$(window).on("load", function () {
|
||||||
changeFilter();
|
changeFilter();
|
||||||
searchFromOne();
|
|
||||||
|
|
||||||
$(".admin-searchinput").keyup(function(){
|
$(".admin-searchinput").keyup(function(){
|
||||||
searchFromOne();
|
adminSearch();
|
||||||
});
|
});
|
||||||
// all inputs and labels directly under admin filter and groupfilter
|
// all inputs and labels directly under admin filter and groupfilter
|
||||||
$("#admin-filter, #admin-groupfilter > input, label").change(function(){
|
$("#admin-filter, #admin-groupfilter > input, label").click(function(){
|
||||||
searchFromOne();
|
adminSearch();
|
||||||
});
|
});
|
||||||
$("#pagetype").change(function(){
|
$("#pagetype").change(function(){
|
||||||
searchFromOne();
|
adminSearch();
|
||||||
});
|
});
|
||||||
|
|
||||||
/* Update hidden input to be equal to submit pressed,
|
adminSearch();
|
||||||
because serialize doesn't take submit values. */
|
|
||||||
$('#admin-batchform > button').click(function () {
|
|
||||||
$('#batchinput').prop('value', $(this).prop('value'));
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#admin-groupbatchform > button').click(function () {
|
|
||||||
$('#groupbatchinput').prop('value', $(this).prop('value'));
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function checkAll() {
|
function checkAll(allbox) {
|
||||||
$('.checkbox-list').each(function () {
|
var checkboxes = document.getElementsByClassName('checkbox-list');
|
||||||
$(this).prop('checked', $('#checkall').prop('checked'));
|
|
||||||
});
|
for (var i = 0; i < checkboxes.length; i++) {
|
||||||
|
if (checkboxes[i].type == 'checkbox') {
|
||||||
|
checkboxes[i].checked = allbox.checked;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkCheckAll() {
|
function checkCheckAll(allbox) {
|
||||||
|
var checkboxes = document.getElementsByClassName('checkbox-list');
|
||||||
var checked = true;
|
var checked = true;
|
||||||
|
|
||||||
$('.checkbox-list').each(function () {
|
for (var i = 0; i < checkboxes.length; i++) {
|
||||||
if ($(this).prop('checked') == false) {
|
if (checkboxes[i].type == 'checkbox') {
|
||||||
|
if (checkboxes[i].checked == false) {
|
||||||
checked = false;
|
checked = false;
|
||||||
return;
|
break;
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
}
|
||||||
$('#checkall').prop('checked', checked);
|
allbox.checked = checked;
|
||||||
}
|
}
|
||||||
|
|
||||||
function changeFilter() {
|
function changeFilter() {
|
||||||
@@ -59,27 +55,12 @@ function changeFilter() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function searchFromOne() {
|
|
||||||
$('#currentpage').prop('value', 1);
|
|
||||||
adminSearch();
|
|
||||||
}
|
|
||||||
|
|
||||||
function adminSearch() {
|
function adminSearch() {
|
||||||
$.post(
|
$.post(
|
||||||
"API/adminSearchUsers.php",
|
"API/adminSearchUsers.php",
|
||||||
$("#admin-searchform").serialize()
|
$("#admin-searchform").serialize()
|
||||||
).done(function (data) {
|
).done(function (data) {
|
||||||
$("#usertable").html(data);
|
$("#usertable").html(data);
|
||||||
updatePageN();
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
function adminUpdate(form) {
|
|
||||||
$.post(
|
|
||||||
"API/adminChangeUser.php",
|
|
||||||
$(form).serialize()
|
|
||||||
).done(function () {
|
|
||||||
adminSearch();
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -91,17 +72,3 @@ function updatePageN() {
|
|||||||
$("#admin-pageinfo").html(data);
|
$("#admin-pageinfo").html(data);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleBancomment(button) {
|
|
||||||
$(button).siblings("div").toggle();
|
|
||||||
$(button).toggle();
|
|
||||||
}
|
|
||||||
|
|
||||||
function editComment(form) {
|
|
||||||
$.post(
|
|
||||||
"API/adminChangeUser.php",
|
|
||||||
$(form).serialize()
|
|
||||||
).done(function (data) {
|
|
||||||
adminSearch();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -9,25 +9,18 @@ $(document).ready(function() {
|
|||||||
$(".chat-field").hide();
|
$(".chat-field").hide();
|
||||||
});
|
});
|
||||||
|
|
||||||
// This function loads the new messages and runs the addMessages function to show them.
|
|
||||||
function loadMessages() {
|
function loadMessages() {
|
||||||
// If the function is not running elsewhere, run it here.
|
|
||||||
if (!gettingMessages) {
|
if (!gettingMessages) {
|
||||||
gettingMessages = true;
|
gettingMessages = true;
|
||||||
// Get the messages.
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/loadMessages.php",
|
"API/loadMessages.php",
|
||||||
$("#lastIDForm").serialize()
|
$("#lastIDForm").serialize()
|
||||||
).done(function (data) {
|
).done(function (data) {
|
||||||
// Post the messages in the chat.
|
|
||||||
if (data && data != "[]") {
|
if (data && data != "[]") {
|
||||||
messages = JSON.parse(data);
|
messages = JSON.parse(data);
|
||||||
addMessages(messages);
|
addMessages(messages);
|
||||||
$("#lastID").val(messages[messages.length - 1].messageID);
|
$("#lastID").val(messages[messages.length - 1].messageID);
|
||||||
}
|
}
|
||||||
|
|
||||||
loadUnreadMessages();
|
|
||||||
|
|
||||||
gettingMessages = false;
|
gettingMessages = false;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@@ -35,46 +28,34 @@ function loadMessages() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send a message to a friend of the user.
|
|
||||||
function sendMessage() {
|
function sendMessage() {
|
||||||
$.post(
|
$.post(
|
||||||
"API/sendMessage.php",
|
"API/sendMessage.php",
|
||||||
$("#sendMessageForm").serialize()
|
$("#sendMessageForm").serialize()
|
||||||
).done(function(response) {
|
);
|
||||||
if (response == "frozen") {
|
|
||||||
alert("Je account is bevroren, dus je kan niet chat berichten versturen. Contacteer een admin als je denkt dat dit onjuist is.");
|
|
||||||
} else if (response == "logged out") {
|
|
||||||
window.location.href = "login.php?url=" + window.location.pathname;
|
|
||||||
}
|
|
||||||
// Load messages if the message has been send, so it shows in the chat.
|
|
||||||
loadMessages();
|
|
||||||
});
|
|
||||||
|
|
||||||
$("#newContent").val("");
|
$("#newContent").val("");
|
||||||
|
loadMessages();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add messages to the chat.
|
|
||||||
function addMessages(messages) {
|
function addMessages(messages) {
|
||||||
var messagesText = "";
|
var messagesText = "";
|
||||||
|
|
||||||
// Loop over all the messages.
|
|
||||||
for(var i in messages) {
|
for(var i in messages) {
|
||||||
// Initialize message variables.
|
// Initialize message variables
|
||||||
var thisDate = new Date(messages[i].creationdate.replace(/ /,"T"));
|
var thisDate = new Date(messages[i].creationdate);
|
||||||
var thisTime = thisDate.getHours() + ":" + ('0' + thisDate.getMinutes()).slice(-2);
|
var thisTime = thisDate.getHours() + ":" + thisDate.getMinutes();
|
||||||
var type;
|
var type;
|
||||||
thisDate.setHours(0,0,0,0);
|
thisDate.setHours(0,0,0,0);
|
||||||
|
|
||||||
// See where the message has been send from, so it shows on the right side.
|
|
||||||
if (messages[i].destination == $(".destinationID").val()) {
|
if (messages[i].destination == $(".destinationID").val()) {
|
||||||
type = "chat-message-self";
|
type = "chat-message-self";
|
||||||
} else {
|
} else {
|
||||||
type = "chat-message-other";
|
type = "chat-message-other";
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it is the first message, open the message box and maybe add a year.
|
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
if (thisDate.getTime() > previousDate.getTime()) {
|
if (thisDate > previousDate) {
|
||||||
|
previousDate = thisDate;
|
||||||
messagesText += '\
|
messagesText += '\
|
||||||
<div class="day-message"> \
|
<div class="day-message"> \
|
||||||
<div class="day-message-content">\
|
<div class="day-message-content">\
|
||||||
@@ -82,20 +63,14 @@ function addMessages(messages) {
|
|||||||
</div> \
|
</div> \
|
||||||
</div>';
|
</div>';
|
||||||
}
|
}
|
||||||
previousDate = thisDate;
|
|
||||||
previousTime = thisTime;
|
|
||||||
previousType = type;
|
|
||||||
messagesText += '<div class="chat-message"><div class="' + type + '">';
|
messagesText += '<div class="chat-message"><div class="' + type + '">';
|
||||||
// If it is not the first message, and has a different date/time/type then the previous message,
|
} else if (type != previousType || thisTime != previousTime || thisDate > previousDate) {
|
||||||
} else if (type != previousType || thisTime != previousTime || thisDate.getTime() > previousDate.getTime()) {
|
|
||||||
// Close the previous message.
|
|
||||||
messagesText += '<div class="chat-time">\
|
messagesText += '<div class="chat-time">\
|
||||||
' + thisTime + '\
|
' + thisTime + '\
|
||||||
</div></div></div>';
|
</div></div></div>';
|
||||||
|
|
||||||
previousTime = thisTime;
|
previousTime = thisTime;
|
||||||
previousType = type;
|
previousType = type;
|
||||||
// If the date is different, add a new date.
|
|
||||||
if (thisDate > previousDate) {
|
if (thisDate > previousDate) {
|
||||||
previousDate = thisDate;
|
previousDate = thisDate;
|
||||||
messagesText += '\
|
messagesText += '\
|
||||||
@@ -106,11 +81,8 @@ function addMessages(messages) {
|
|||||||
</div>';
|
</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open the new message.
|
|
||||||
messagesText += '<div class="chat-message"><div class="' + type + '">';
|
messagesText += '<div class="chat-message"><div class="' + type + '">';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add the content of the message in the new box.
|
|
||||||
messagesText += fancyText(messages[i].content) + "<br />";
|
messagesText += fancyText(messages[i].content) + "<br />";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,14 +91,11 @@ function addMessages(messages) {
|
|||||||
' + thisTime + '\
|
' + thisTime + '\
|
||||||
</div></div></div>';
|
</div></div></div>';
|
||||||
|
|
||||||
// Add all the new created messaged to the chat.
|
|
||||||
$("#chat-history").append(messagesText);
|
$("#chat-history").append(messagesText);
|
||||||
|
|
||||||
// Scroll down, so the user can see the new messages.
|
|
||||||
$("#chat-history").scrollTop($("#chat-history")[0].scrollHeight - $('#chat-history')[0].clientHeight);
|
$("#chat-history").scrollTop($("#chat-history")[0].scrollHeight - $('#chat-history')[0].clientHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Switch to a different user.
|
|
||||||
function switchUser(userID) {
|
function switchUser(userID) {
|
||||||
previousDate = new Date("1970-01-01 00:00:00");
|
previousDate = new Date("1970-01-01 00:00:00");
|
||||||
$(".chat-field").show();
|
$(".chat-field").show();
|
||||||
@@ -137,7 +106,6 @@ function switchUser(userID) {
|
|||||||
$("#friend-item-" + userID).addClass("active-friend-chat");
|
$("#friend-item-" + userID).addClass("active-friend-chat");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Insert a message in the chat, this is used when it is empty.
|
|
||||||
function sayEmpty() {
|
function sayEmpty() {
|
||||||
$("#chat-history").html("Probeer ook eens foto's en video's te sturen");
|
$("#chat-history").html("Probeer ook eens foto's en video's te sturen");
|
||||||
}
|
}
|
||||||
123
website/public/js/dobPicker.js
Normal file
123
website/public/js/dobPicker.js
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
/**
|
||||||
|
* jQuery DOB Picker
|
||||||
|
* Website: https://github.com/tyea/dobpicker
|
||||||
|
* Version: 1.0
|
||||||
|
* Author: Tom Yeadon
|
||||||
|
* License: BSD 3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
jQuery.extend({
|
||||||
|
|
||||||
|
dobPicker: function(params) {
|
||||||
|
|
||||||
|
// set the defaults
|
||||||
|
if (typeof(params.dayDefault)==='undefined') params.dayDefault = 'Day';
|
||||||
|
if (typeof(params.monthDefault)==='undefined') params.monthDefault = 'Month';
|
||||||
|
if (typeof(params.yearDefault)==='undefined') params.yearDefault = 'Year';
|
||||||
|
if (typeof(params.minimumAge)==='undefined') params.minimumAge = 12;
|
||||||
|
if (typeof(params.maximumAge)==='undefined') params.maximumAge = 80;
|
||||||
|
|
||||||
|
// set the default messages
|
||||||
|
$(params.daySelector).append('<option value="">' + params.dayDefault + '</option>');
|
||||||
|
$(params.monthSelector).append('<option value="">' + params.monthDefault + '</option>');
|
||||||
|
$(params.yearSelector).append('<option value="">' + params.yearDefault + '</option>');
|
||||||
|
|
||||||
|
// populate the day select
|
||||||
|
for (i = 1; i <= 31; i++) {
|
||||||
|
if (i <= 9) {
|
||||||
|
var val = '0' + i;
|
||||||
|
} else {
|
||||||
|
var val = i;
|
||||||
|
}
|
||||||
|
$(params.daySelector).append('<option value="' + val + '">' + i + '</option>');
|
||||||
|
}
|
||||||
|
|
||||||
|
// populate the month select
|
||||||
|
var months = [
|
||||||
|
"January",
|
||||||
|
"February",
|
||||||
|
"March",
|
||||||
|
"April",
|
||||||
|
"May",
|
||||||
|
"June",
|
||||||
|
"July",
|
||||||
|
"August",
|
||||||
|
"September",
|
||||||
|
"October",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
];
|
||||||
|
|
||||||
|
for (i = 1; i <= 12; i++) {
|
||||||
|
if (i <= 9) {
|
||||||
|
var val = '0' + i;
|
||||||
|
} else {
|
||||||
|
var val = i;
|
||||||
|
}
|
||||||
|
$(params.monthSelector).append('<option value="' + val + '">' + months[i - 1] + '</option>');
|
||||||
|
}
|
||||||
|
|
||||||
|
// populate the year select
|
||||||
|
var date = new Date();
|
||||||
|
var year = date.getFullYear();
|
||||||
|
var start = year - params.minimumAge;
|
||||||
|
var count = start - params.maximumAge;
|
||||||
|
|
||||||
|
for (i = start; i >= count; i--) {
|
||||||
|
$(params.yearSelector).append('<option value="' + i + '">' + i + '</option>');
|
||||||
|
}
|
||||||
|
|
||||||
|
// do the logic for the day select
|
||||||
|
$(params.daySelector).change(function() {
|
||||||
|
|
||||||
|
$(params.monthSelector)[0].selectedIndex = 0;
|
||||||
|
$(params.yearSelector)[0].selectedIndex = 0;
|
||||||
|
$(params.yearSelector + ' option').removeAttr('disabled');
|
||||||
|
|
||||||
|
if ($(params.daySelector).val() >= 1 && $(params.daySelector).val() <= 29) {
|
||||||
|
|
||||||
|
$(params.monthSelector + ' option').removeAttr('disabled');
|
||||||
|
|
||||||
|
} else if ($(params.daySelector).val() == 30) {
|
||||||
|
|
||||||
|
$(params.monthSelector + ' option').removeAttr('disabled');
|
||||||
|
$(params.monthSelector + ' option[value="02"]').attr('disabled', 'disabled');
|
||||||
|
|
||||||
|
} else if($(params.daySelector).val() == 31) {
|
||||||
|
|
||||||
|
$(params.monthSelector + ' option').removeAttr('disabled');
|
||||||
|
$(params.monthSelector + ' option[value="02"]').attr('disabled', 'disabled');
|
||||||
|
$(params.monthSelector + ' option[value="04"]').attr('disabled', 'disabled');
|
||||||
|
$(params.monthSelector + ' option[value="06"]').attr('disabled', 'disabled');
|
||||||
|
$(params.monthSelector + ' option[value="09"]').attr('disabled', 'disabled');
|
||||||
|
$(params.monthSelector + ' option[value="11"]').attr('disabled', 'disabled');
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// do the logic for the month select
|
||||||
|
$(params.monthSelector).change(function() {
|
||||||
|
|
||||||
|
$(params.yearSelector)[0].selectedIndex = 0;
|
||||||
|
$(params.yearSelector + ' option').removeAttr('disabled');
|
||||||
|
|
||||||
|
if ($(params.daySelector).val() == 29 && $(params.monthSelector).val() == '02') {
|
||||||
|
|
||||||
|
$(params.yearSelector + ' option').each(function(index) {
|
||||||
|
if (index !== 0) {
|
||||||
|
var year = $(this).attr('value');
|
||||||
|
var leap = !((year % 4) || (!(year % 100) && (year % 400)));
|
||||||
|
if (leap === false) {
|
||||||
|
$(this).attr('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
1
website/public/js/dobPicker.min.js
vendored
Normal file
1
website/public/js/dobPicker.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
jQuery.extend({dobPicker:function(a){for("undefined"==typeof a.dayDefault&&(a.dayDefault="Day"),"undefined"==typeof a.monthDefault&&(a.monthDefault="Month"),"undefined"==typeof a.yearDefault&&(a.yearDefault="Year"),"undefined"==typeof a.minimumAge&&(a.minimumAge=12),"undefined"==typeof a.maximumAge&&(a.maximumAge=80),$(a.daySelector).append('<option value="">'+a.dayDefault+"</option>"),$(a.monthSelector).append('<option value="">'+a.monthDefault+"</option>"),$(a.yearSelector).append('<option value="">'+a.yearDefault+"</option>"),i=1;i<=31;i++){if(i<=9)var b="0"+i;else var b=i;$(a.daySelector).append('<option value="'+b+'">'+i+"</option>")}var c=["January","February","March","April","May","June","July","August","September","October","November","December"];for(i=1;i<=12;i++){if(i<=9)var b="0"+i;else var b=i;$(a.monthSelector).append('<option value="'+b+'">'+c[i-1]+"</option>")}var d=new Date,e=d.getFullYear(),f=e-a.minimumAge,g=f-a.maximumAge;for(i=f;i>=g;i--)$(a.yearSelector).append('<option value="'+i+'">'+i+"</option>");$(a.daySelector).change(function(){$(a.monthSelector)[0].selectedIndex=0,$(a.yearSelector)[0].selectedIndex=0,$(a.yearSelector+" option").removeAttr("disabled"),$(a.daySelector).val()>=1&&$(a.daySelector).val()<=29?$(a.monthSelector+" option").removeAttr("disabled"):30==$(a.daySelector).val()?($(a.monthSelector+" option").removeAttr("disabled"),$(a.monthSelector+' option[value="02"]').attr("disabled","disabled")):31==$(a.daySelector).val()&&($(a.monthSelector+" option").removeAttr("disabled"),$(a.monthSelector+' option[value="02"]').attr("disabled","disabled"),$(a.monthSelector+' option[value="04"]').attr("disabled","disabled"),$(a.monthSelector+' option[value="06"]').attr("disabled","disabled"),$(a.monthSelector+' option[value="09"]').attr("disabled","disabled"),$(a.monthSelector+' option[value="11"]').attr("disabled","disabled"))}),$(a.monthSelector).change(function(){$(a.yearSelector)[0].selectedIndex=0,$(a.yearSelector+" option").removeAttr("disabled"),29==$(a.daySelector).val()&&"02"==$(a.monthSelector).val()&&$(a.yearSelector+" option").each(function(a){if(0!==a){var b=$(this).attr("value"),c=!(b%4||!(b%100)&&b%400);c===!1&&$(this).attr("disabled","disabled")}})})}});
|
||||||
@@ -19,24 +19,24 @@ function placeFriendButtons() {
|
|||||||
case "0":
|
case "0":
|
||||||
value1 = "request";
|
value1 = "request";
|
||||||
class1 = "green";
|
class1 = "green";
|
||||||
text1 = "Word vrienden";
|
text1 = "Bevriend";
|
||||||
icon1 = "fa-user-plus";
|
icon1 = "fa-handshake-o";
|
||||||
break;
|
break;
|
||||||
case "1":
|
case "1":
|
||||||
value1 = userID;
|
value1 = userID;
|
||||||
class1 = "green";
|
class1 = "green";
|
||||||
text1 = "Chat";
|
text1 = "Chat";
|
||||||
icon1 = "fa-comment";
|
icon1 = "fa-comment-o";
|
||||||
value2 = "delete";
|
value2 = "delete";
|
||||||
class2 = "red";
|
class2 = "red";
|
||||||
text2 = "Ontvriend";
|
text2 = "Verwijder";
|
||||||
icon2 = "fa-user-times";
|
icon2 = "fa-times";
|
||||||
break;
|
break;
|
||||||
case "2":
|
case "2":
|
||||||
value1 = "delete";
|
value1 = "delete";
|
||||||
class1 = "red";
|
class1 = "red";
|
||||||
text1 = "Trek verzoek in";
|
text1 = "Trek verzoek in";
|
||||||
icon1 = "fa-times";
|
icon1 = "fa-cross";
|
||||||
break;
|
break;
|
||||||
case "3":
|
case "3":
|
||||||
value1 = "accept";
|
value1 = "accept";
|
||||||
@@ -51,18 +51,16 @@ function placeFriendButtons() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$buttonContainer.append(
|
$buttonContainer.append(
|
||||||
"<div><button class='"+ class1 +" fancy-button friend-button' value='"+ value1 +"'>" +
|
"<button class='"+ class1 +" friend-button' value='"+ value1 +"'>" +
|
||||||
"<span>"+ text1 +"</span>" +
|
"<i class='fa "+ icon1 +"'></i> " + text1 +
|
||||||
"<i class='fa fa-fw "+ icon1 +"'></i> " +
|
"</button>");
|
||||||
"</button></div>");
|
|
||||||
$buttonContainer.append(
|
$buttonContainer.append(
|
||||||
"<div><button class='"+ class2 +" fancy-button friend-button' value='"+ value2 +"'>" +
|
"<button class='"+ class2 +" friend-button' value='"+ value2 +"'>" +
|
||||||
"<span>"+ text2 +"</span>" +
|
"<i class='fa "+ icon2 +"'></i> " + text2 +
|
||||||
"<i class='fa fa-fw "+ icon2 +"'></i> " +
|
"</button>");
|
||||||
"</button></div>");
|
|
||||||
|
|
||||||
|
|
||||||
$buttonContainer.find("button").click(function() {
|
$buttonContainer.children().click(function() {
|
||||||
if (isNaN(this.value))
|
if (isNaN(this.value))
|
||||||
editFriendship(userID, this.value);
|
editFriendship(userID, this.value);
|
||||||
else if (this.value != "")
|
else if (this.value != "")
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
function placeGroupButtons() {
|
|
||||||
$.post("API/getGrouprole.php", { grp: groupID })
|
|
||||||
.done(function(data) {
|
|
||||||
var $buttonContainer = $("div.group-button-container");
|
|
||||||
|
|
||||||
if (data == 'none') {
|
|
||||||
$buttonContainer.append(
|
|
||||||
"<button class='green group-button fancy-button' value='request'>" +
|
|
||||||
"<span>Treed toe</span><i class='fa fa-plus'></i>" +
|
|
||||||
"</button>");
|
|
||||||
} else if (data == 'request') {
|
|
||||||
$buttonContainer.append(
|
|
||||||
"<button class='red group-button fancy-button' value='none'>" +
|
|
||||||
"<span>Trek verzoek in</span><i class='fa fa-times'></i>" +
|
|
||||||
"</button>");
|
|
||||||
} else if (data == 'admin') {
|
|
||||||
$buttonContainer.append(
|
|
||||||
"<button class='group-button fancy-button' value='admin'>" +
|
|
||||||
"<span>Instellingen</span><i class='fa fa-cogs'></i>" +
|
|
||||||
"</button>"
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
$buttonContainer.append(
|
|
||||||
"<button class='red group-button fancy-button' value='none'>" +
|
|
||||||
"<span>Verlaat groep</span><i class='fa fa-sign-out'></i>" +
|
|
||||||
"</button>");
|
|
||||||
}
|
|
||||||
|
|
||||||
$buttonContainer.children().click(function() {
|
|
||||||
if (this.value == 'admin') {
|
|
||||||
window.location.href='groupAdmin.php?groupID=' + groupID;
|
|
||||||
} else {
|
|
||||||
$.post("API/editMembership.php", {grp: groupID, role: this.value})
|
|
||||||
.done(function () {
|
|
||||||
$buttonContainer.children().remove();
|
|
||||||
placeGroupButtons();
|
|
||||||
updateMenus();
|
|
||||||
}).fail(function () {
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -11,8 +11,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
// Add cookie so the menu stays open on other pages
|
// Add cookie so the menu stays open on other pages
|
||||||
if (window.innerWidth > 1080) {
|
if (window.innerWidth > 1080) {
|
||||||
$("#chat-history").css("margin-right", "266px");
|
$("#chat-history").width("calc(100% - 587px)");
|
||||||
$("#chat-history").css("width", "calc(100% - 512px - 75px)");
|
|
||||||
document.cookie = "menu=open; path=/";
|
document.cookie = "menu=open; path=/";
|
||||||
} else {
|
} else {
|
||||||
document.cookie = "menu=closed; path=/";
|
document.cookie = "menu=closed; path=/";
|
||||||
@@ -23,8 +22,7 @@ $(document).ready(function() {
|
|||||||
$("#notification-center").css("display", "none");
|
$("#notification-center").css("display", "none");
|
||||||
|
|
||||||
if (window.innerWidth > 1080) {
|
if (window.innerWidth > 1080) {
|
||||||
$("#chat-history").css("margin-right", "10px");
|
$("#chat-history").width("calc(100% - 331px)");
|
||||||
$("#chat-history").css("width", "calc(100% - 256px - 85px)");
|
|
||||||
} else {
|
} else {
|
||||||
// Make the menu invisible and move the content to the right.
|
// Make the menu invisible and move the content to the right.
|
||||||
$("#contact-menu").css("display", "none");
|
$("#contact-menu").css("display", "none");
|
||||||
@@ -32,24 +30,11 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
// Change menu cookie to close
|
// Change menu cookie to close
|
||||||
document.cookie = "menu=closed; path=/";
|
document.cookie = "menu=closed; path=/";
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (getCookie("menu") == "open") {
|
if (getCookie("menu") == "open") {
|
||||||
// Make the menu visible and move the content to the left.
|
$("#own-profile-picture").click();
|
||||||
$(".modal").width("calc(100% - 512px)");
|
|
||||||
$(".content").css("margin-right", "256px");
|
|
||||||
$("#notification-center").css("right", "0px");
|
|
||||||
$("#notification-center").css("display", "block");
|
|
||||||
$("#contact-menu").css("display", "block");
|
|
||||||
|
|
||||||
// Add cookie so the menu stays open on other pages
|
|
||||||
if (window.innerWidth > 1080) {
|
|
||||||
$("#chat-history").css("margin-right", "266px");
|
|
||||||
$("#chat-history").width("calc(100% - 587px)");
|
|
||||||
document.cookie = "menu=open; path=/";
|
|
||||||
} else {
|
|
||||||
document.cookie = "menu=closed; path=/";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,68 +0,0 @@
|
|||||||
|
|
||||||
// Get the modal
|
|
||||||
var modal = document.getElementById('myModal');
|
|
||||||
var registerModal = document.getElementById('registerModal');
|
|
||||||
var facebookModal = document.getElementById("fbModal");
|
|
||||||
|
|
||||||
// Get the button that opens the modal
|
|
||||||
var registerBtn = document.getElementById("registerBtn");
|
|
||||||
var btn = document.getElementById("myBtn");
|
|
||||||
|
|
||||||
|
|
||||||
// Get the <span> element that closes the modal
|
|
||||||
var span = document.getElementsByClassName("close")[0];
|
|
||||||
var registerSpan = document.getElementsByClassName("close")[1];
|
|
||||||
var facebookCLose = document.getElementsByClassName("close")[2];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* When the user clicks the button, open the modal
|
|
||||||
*/
|
|
||||||
btn.onclick = function () {
|
|
||||||
modal.style.display = "block";
|
|
||||||
|
|
||||||
}
|
|
||||||
registerBtn.onclick = function () {
|
|
||||||
registerModal.style.display = "block";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* WHen the user clicks on (X), close the modal
|
|
||||||
*/
|
|
||||||
span.onclick = function () {
|
|
||||||
modal.style.display = "none";
|
|
||||||
}
|
|
||||||
registerSpan.onclick = function () {
|
|
||||||
registerModal.style.display = "none";
|
|
||||||
}
|
|
||||||
facebookCLose.onclick = function () {
|
|
||||||
facebookModal.style.display = "none";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* When the user clicks anywhere outside of the modal, close it
|
|
||||||
*/
|
|
||||||
window.onclick = function (event) {
|
|
||||||
if (event.target == modal) {
|
|
||||||
modal.style.display = "none";
|
|
||||||
}
|
|
||||||
if (event.target == registerModal) {
|
|
||||||
registerModal.style.display = "none";
|
|
||||||
}
|
|
||||||
if (event.target == facebookModal) {
|
|
||||||
facebookModal.style.display = "none";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* When ESC is pressed, close modal
|
|
||||||
*/
|
|
||||||
document.addEventListener('keyup', function(e) {
|
|
||||||
if (e.keyCode == 27) {
|
|
||||||
modal.style.display = "none";
|
|
||||||
registerModal.style.display = "none";
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
/**
|
|
||||||
* Created by joey on 2-2-17.
|
|
||||||
*/
|
|
||||||
@@ -3,7 +3,8 @@ var months = ["januari", "februari", "maart", "april", "mei", "juni", "juli", "a
|
|||||||
|
|
||||||
function fancyText(text) {
|
function fancyText(text) {
|
||||||
// Add links, images, gifs and (youtube) video's.
|
// Add links, images, gifs and (youtube) video's.
|
||||||
text = text.replace(/(https?:\/\/.[^ \n<>"]*)/ig, function(link) {
|
var regex = /(https?:\/\/.[^ ]*)/ig;
|
||||||
|
text = text.replace(regex, function(link) {
|
||||||
// Add images
|
// Add images
|
||||||
if (link.match(/(https?:\/\/.[^ ]*\.(?:png|jpg|jpeg|gif))/ig)) {
|
if (link.match(/(https?:\/\/.[^ ]*\.(?:png|jpg|jpeg|gif))/ig)) {
|
||||||
return "<img alt='" + link + "' src='" + link + "' />";
|
return "<img alt='" + link + "' src='" + link + "' />";
|
||||||
@@ -13,14 +14,14 @@ function fancyText(text) {
|
|||||||
return "<video width='100%'>" +
|
return "<video width='100%'>" +
|
||||||
"<source src='"+ link +"' type='video/mp4'>" +
|
"<source src='"+ link +"' type='video/mp4'>" +
|
||||||
"<b>Je browser ondersteund geen video</b>" +
|
"<b>Je browser ondersteund geen video</b>" +
|
||||||
"</video><button class='gray' onclick='$(this).prev().get(0).play();'><i class='fa fa-play'></i></button>";
|
"</video><button class='gray' onclick='$(this).prev().get(0).play();'>Speel af</button>";
|
||||||
}
|
}
|
||||||
// Add ogg video's
|
// Add ogg video's
|
||||||
else if (link.match(/(https?:\/\/.[^ ]*\.(?:ogg))/ig)) {
|
else if (link.match(/(https?:\/\/.[^ ]*\.(?:ogg))/ig)) {
|
||||||
return "<video width='100%'>" +
|
return "<video width='100%'>" +
|
||||||
"<source src='"+ link +"' type='video/ogg'>" +
|
"<source src='"+ link +"' type='video/ogg'>" +
|
||||||
"<b>Je browser ondersteund geen video</b>" +
|
"<b>Je browser ondersteund geen video</b>" +
|
||||||
"</video><button class='gray' onclick='$(this).prev().get(0).play();'><i class='fa fa-play'></i></button>";
|
"</video><button onclick='$(this).prev().get(0).play();'>Speel af</button>";
|
||||||
}
|
}
|
||||||
// Add youtube video's
|
// Add youtube video's
|
||||||
else if (link.match(/(https?:\/\/.(www.)?youtube|youtu.be)*watch/ig)) {
|
else if (link.match(/(https?:\/\/.(www.)?youtube|youtu.be)*watch/ig)) {
|
||||||
@@ -30,15 +31,13 @@ function fancyText(text) {
|
|||||||
}
|
}
|
||||||
// Add links
|
// Add links
|
||||||
else {
|
else {
|
||||||
return "<a href='" + link + "' target='_blank'>" + link + "</a>";
|
return "<a href='" + link + "'>" + link + "</a>";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
|
|
||||||
// This function gets the value of a cookie when given a key.
|
|
||||||
// If it didn´t find any compatible cookie, it returns false.
|
|
||||||
function getCookie(key) {
|
function getCookie(key) {
|
||||||
cookies = document.cookie.split("; ");
|
cookies = document.cookie.split("; ");
|
||||||
for (var i in cookies) {
|
for (var i in cookies) {
|
||||||
@@ -50,17 +49,13 @@ function getCookie(key) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Edit the friendship status of two users.
|
|
||||||
function editFriendship(userID, value) {
|
function editFriendship(userID, value) {
|
||||||
$.post("API/editFriendship.php", { usr: userID, action: value })
|
$.post("API/editFriendship.php", { usr: userID, action: value })
|
||||||
.done(function() {
|
.done(function() {
|
||||||
placeFriendButtons();
|
placeFriendButtons();
|
||||||
updateMenus();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show the given friends in the given list.
|
|
||||||
// The friends are giving in JSON, and the list is giving with a hashtag.
|
|
||||||
function showFriends(friends, list) {
|
function showFriends(friends, list) {
|
||||||
if(friends && friends != "[]") {
|
if(friends && friends != "[]") {
|
||||||
$(list).load("bits/friend-item.php", {
|
$(list).load("bits/friend-item.php", {
|
||||||
@@ -73,8 +68,6 @@ function showFriends(friends, list) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show the given friends in the given list.
|
|
||||||
// This function supports more options given as parameters. This adds extra functionality.
|
|
||||||
function showFriendsPlus(friends, list, limit, action, actionType) {
|
function showFriendsPlus(friends, list, limit, action, actionType) {
|
||||||
if(friends && friends != "[]") {
|
if(friends && friends != "[]") {
|
||||||
$(list).load("bits/friend-item.php", {
|
$(list).load("bits/friend-item.php", {
|
||||||
@@ -90,7 +83,6 @@ function showFriendsPlus(friends, list, limit, action, actionType) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show the given groups in the given list.
|
|
||||||
function showGroups(groups, list) {
|
function showGroups(groups, list) {
|
||||||
if(groups && groups != "[]") {
|
if(groups && groups != "[]") {
|
||||||
$(list).load("bits/group-item.php", {
|
$(list).load("bits/group-item.php", {
|
||||||
|
|||||||
@@ -19,98 +19,53 @@ function requestPost(postID) {
|
|||||||
var scrollBarWidth = window.innerWidth - document.body.offsetWidth;
|
var scrollBarWidth = window.innerWidth - document.body.offsetWidth;
|
||||||
scrollbarMargin(scrollBarWidth, 'hidden');
|
scrollbarMargin(scrollBarWidth, 'hidden');
|
||||||
$('#modal-response').show();
|
$('#modal-response').show();
|
||||||
$('#modal-response').html(fancyText(data));
|
$('#modal-response').html(data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function postPost() {
|
function postPost() {
|
||||||
title = $("input.newpost[name='title']").val();
|
title = $("input.newpost[name='title']").val();
|
||||||
content = $("textarea.newpost[name='content']").val();
|
content = $("textarea.newpost[name='content']").val();
|
||||||
console.log(masonryMode);
|
|
||||||
if (masonryMode == 2) {
|
if (masonryMode == 2) {
|
||||||
$.post("API/postPost.php", { title: title,
|
$.post("API/postPost.php", { title: title,
|
||||||
content : content,
|
content : content,
|
||||||
group : groupID })
|
group : groupID })
|
||||||
.done(function(data) {
|
.done(function(data) {
|
||||||
if (data == "empty") {
|
|
||||||
$('#alertbox').show();
|
|
||||||
$('#alerttext').html("Geen titel of inhoud; vul a.u.b. in.");
|
|
||||||
window.scrollTo(0,0);
|
|
||||||
} else if (data == "logged out") {
|
|
||||||
window.location.href = "login.php?url=" + window.location.pathname;
|
|
||||||
} else if (data == "frozen") {
|
|
||||||
alert("Je account is bevroren, dus je kan geen posts plaatsen. Contacteer een admin als je denkt dat dit onjuist is.");
|
|
||||||
} else {
|
|
||||||
$('#alertbox').hide();
|
|
||||||
masonry(masonryMode);
|
masonry(masonryMode);
|
||||||
}
|
console.log(data);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$.post("API/postPost.php", { title: title,
|
$.post("API/postPost.php", { title: title,
|
||||||
content : content })
|
content : content })
|
||||||
.done(function(data) {
|
.done(function(data) {
|
||||||
if (data == "empty") {
|
|
||||||
$('#alertbox').show();
|
|
||||||
$('#alerttext').html("Geen titel of inhoud; vul a.u.b. in.");
|
|
||||||
window.scrollTo(0,0);
|
|
||||||
} else if (data == "logged out") {
|
|
||||||
window.location.href = "login.php?url=" + window.location.pathname;
|
|
||||||
} else if (data == "frozen") {
|
|
||||||
alert("Je account is bevroren, dus je kan geen posts plaatsen. Contacteer een admin als je denkt dat dit onjuist is.");
|
|
||||||
} else {
|
|
||||||
$('#alertbox').hide();
|
|
||||||
masonry(masonryMode);
|
masonry(masonryMode);
|
||||||
}
|
console.log(data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var masonryMode = 0;
|
|
||||||
var windowWidth;
|
|
||||||
var columnCount;
|
|
||||||
var columns;
|
|
||||||
var postLimit;
|
|
||||||
var postAmount = 0;
|
|
||||||
var noposts = false;
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
|
||||||
windowWidth = $(window).width();
|
|
||||||
columnCount = Math.floor($(".posts").width() / 250);
|
|
||||||
columns = new Array(columnCount);
|
|
||||||
postLimit = columnCount * 7;
|
|
||||||
});
|
|
||||||
|
|
||||||
$(window).on("load", function() {
|
$(window).on("load", function() {
|
||||||
$(".modal-close").click(function (){closeModal()});
|
$(".modal-close").click(function () {
|
||||||
|
|
||||||
// http://stackoverflow.com/questions/9439725/javascript-how-to-detect-if-browser-window-is-scrolled-to-bottom
|
|
||||||
window.onscroll = function(ev) {
|
|
||||||
if($(window).scrollTop() + $(window).height() == $(document).height() ) {
|
|
||||||
loadMorePosts(userID, groupID, postAmount, postLimit);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
function closeModal() {
|
|
||||||
$(".modal").hide();
|
$(".modal").hide();
|
||||||
scrollbarMargin(0, 'auto');
|
scrollbarMargin(0, 'auto');
|
||||||
$('#modal-response').hide();
|
$('#modal-response').hide();
|
||||||
$('.modal-default').show();
|
$('.modal-default').show();
|
||||||
}
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
var masonryMode = 0;
|
||||||
|
var windowWidth = $(window).width();
|
||||||
|
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
clearTimeout(window.resizedFinished);
|
clearTimeout(window.resizedFinished);
|
||||||
window.resizeFinished = setTimeout(function() {
|
window.resizeFinished = setTimeout(function() {
|
||||||
if ($(window).width() != windowWidth) {
|
if ($(window).width() != windowWidth) {
|
||||||
windowWidth = $(window).width();
|
windowWidth = $(window).width();
|
||||||
|
|
||||||
if (columnCount != Math.floor($(".posts").width() / 250)) {
|
|
||||||
columnCount = Math.floor($(".posts").width() / 250);
|
|
||||||
masonry(masonryMode);
|
masonry(masonryMode);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}, 250);
|
}, 250);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -119,34 +74,33 @@ var $container = $(".posts");
|
|||||||
function masonry(mode) {
|
function masonry(mode) {
|
||||||
masonryMode = mode;
|
masonryMode = mode;
|
||||||
$container.children().remove();
|
$container.children().remove();
|
||||||
|
columnCount = Math.floor($(".posts").width() / 250);
|
||||||
// reinit posts
|
|
||||||
noposts = false;
|
|
||||||
postAmount = 0;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialise columns.
|
* Initialise columns.
|
||||||
*/
|
*/
|
||||||
|
var columns = new Array(columnCount);
|
||||||
|
var $columns = new Array(columnCount);
|
||||||
for (i = 0; i < columnCount; i++) {
|
for (i = 0; i < columnCount; i++) {
|
||||||
$column = $("<div class=\"column\">");
|
$column = $("<div class='column'>");
|
||||||
$column.width(100/columnCount + "%");
|
$column.width(100/columnCount + "%");
|
||||||
$container.append($column);
|
$container.append($column);
|
||||||
columns[i] = [0, $column];
|
columns[i] = [0, $column];
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mode > 0) {
|
if(mode > 0) {
|
||||||
$postInput = $("<div class=\"post platform\">");
|
$postInput = $("<div class='post platform'>");
|
||||||
$form = $("<form class=\"newpost\" action=\"API/postPost.php\" method=\"post\" onsubmit=\"postPost(); return false;\">");
|
$form = $("<form class='newpost' action='API/postPost.php' method='post' onsubmit='postPost(); return false;'>");
|
||||||
$postInput.append($form);
|
$postInput.append($form);
|
||||||
|
|
||||||
if(mode == 2) {
|
if(mode == 2) {
|
||||||
$form.append($("<input class=\"newpost\" type=\"hidden\" name=\"group\" value=\"" + groupID + "\">"));
|
$form.append($("<input class='newpost' type='hidden' name='group' value='" + groupID + "'>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
$form.append($("<input class=\"newpost\" name=\"title\" placeholder=\"Titel\" type=\"text\">"));
|
$form.append($("<input class='newpost' name='title' placeholder='Titel' type='text'>"));
|
||||||
$form.append($("<textarea class=\"newpost\" name=\"content\" placeholder=\"Schrijf een berichtje...\" maxlength='1000'></textarea><span></span>"));
|
$form.append($("<textarea class='newpost' name='content' placeholder='Schrijf een berichtje...'>"));
|
||||||
$form.append($("<button type=\"submit\"><i class='fa fa-sticky-note-o'></i> Plaats!</button>"));
|
$form.append($("<label for='picture'>Voeg een foto toe</label><input class='newpost' name='picture' id='picture' type='file' accept='image/*' size='4000000'>"));
|
||||||
|
$form.append($("<input value='Plaats!' type='submit'>"));
|
||||||
columns[0][1].append($postInput);
|
columns[0][1].append($postInput);
|
||||||
|
|
||||||
columns[0][0] = $postInput.height() + margin;
|
columns[0][0] = $postInput.height() + margin;
|
||||||
@@ -155,15 +109,7 @@ function masonry(mode) {
|
|||||||
/*
|
/*
|
||||||
* Function will find the column with the shortest height.
|
* Function will find the column with the shortest height.
|
||||||
*/
|
*/
|
||||||
|
function getShortestColumn(columns) {
|
||||||
|
|
||||||
/*
|
|
||||||
* Get the posts from the server.
|
|
||||||
*/
|
|
||||||
loadMorePosts(userID, groupID, 0, postLimit);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getShortestColumn(columns) {
|
|
||||||
column = columns[0];
|
column = columns[0];
|
||||||
|
|
||||||
for (i = 1; i < columnCount; i++) {
|
for (i = 1; i < columnCount; i++) {
|
||||||
@@ -172,41 +118,29 @@ function getShortestColumn(columns) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return column;
|
return column;
|
||||||
}
|
|
||||||
|
|
||||||
function loadMorePosts(uID, gID, offset, limit) {
|
|
||||||
if (noposts) {
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$.post("API/getPosts.php", { usr : uID,
|
/*
|
||||||
grp : gID,
|
* Get the posts from the server.
|
||||||
offset : offset,
|
*/
|
||||||
limit : limit})
|
$.post("API/getPosts.php", { usr : userID, grp : groupID })
|
||||||
.done(function(data) {
|
.done(function(data) {
|
||||||
if (!data) {
|
|
||||||
$('.noposts').show();
|
|
||||||
noposts = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
posts = JSON.parse(data);
|
posts = JSON.parse(data);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Rearange the objects.
|
* Rearange the objects.
|
||||||
*/
|
*/
|
||||||
$.each(posts, function() {
|
$.each(posts, function() {
|
||||||
$post = $("<div class=\"post platform\" onclick=\"requestPost(\'"+this['postID']+"\')\">");
|
$post = $("<div class='post platform' onclick='requestPost(\'"+this['postID']+"\')'>");
|
||||||
$post.append($("<h2>").html(this["title"]));
|
$post.append($("<h2>").html(this["title"]));
|
||||||
$post.append($("<p>").html(fancyText(this["content"])));
|
$post.append($("<p>").html(this["content"]));
|
||||||
$post.append($("<p class=\"subscript\">").text(this["nicetime"]));
|
$post.append($("<p class='subscript'>").text(this["nicetime"]));
|
||||||
$post.append($("<p class=\"subscript\">").text("comments: " + this["comments"] + ", niet slechts: " + this["niet_slechts"]));
|
$post.append($("<p class='subscript'>").text("comments: " + this["comments"] + ", niet slechts: " + this["niet_slechts"]));
|
||||||
|
|
||||||
shortestColumn = getShortestColumn(columns);
|
shortestColumn = getShortestColumn(columns);
|
||||||
shortestColumn[1].append($post);
|
shortestColumn[1].append($post);
|
||||||
shortestColumn[0] = shortestColumn[0] + $post.height() + margin;
|
shortestColumn[0] = shortestColumn[0] + $post.height() + margin;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
postAmount += limit;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,125 +2,92 @@ var menuFriendsData;
|
|||||||
var menuGroupsData;
|
var menuGroupsData;
|
||||||
var notificationMessagesData;
|
var notificationMessagesData;
|
||||||
var notificationRequestsData;
|
var notificationRequestsData;
|
||||||
var updatingMenus = 0;
|
|
||||||
|
|
||||||
// On document load, load menus and loops loading menus every 10 seconds.
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
updateMenus();
|
loadMenuFriends(5);
|
||||||
setInterval(updateMenus, 10000);
|
loadNotificationFriends();
|
||||||
|
loadUnreadMessages();
|
||||||
|
loadMenuGroups();
|
||||||
|
setInterval(updateMenus, 3000);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Update the menu and notification items.
|
// Update the menu and notification items.
|
||||||
function updateMenus() {
|
function updateMenus() {
|
||||||
if (updatingMenus <= 0) {
|
|
||||||
loadMenuFriends(5);
|
loadMenuFriends(5);
|
||||||
loadNotificationFriends();
|
loadNotificationFriends();
|
||||||
loadUnreadMessages();
|
loadUnreadMessages();
|
||||||
loadMenuGroups();
|
loadMenuGroups();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Get the friends and insert them in the menu.
|
// Get, every 3 seconds, the friends and insert them in the menu.
|
||||||
function loadMenuFriends(limit) {
|
function loadMenuFriends(limit) {
|
||||||
updatingMenus ++;
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/loadFriends.php",
|
"API/loadFriends.php",
|
||||||
{
|
{
|
||||||
limit: 5
|
limit: 5
|
||||||
}
|
}
|
||||||
).done(function(data) {
|
).done(function(data) {
|
||||||
if (data == "" || data == "[]") {
|
|
||||||
$("#friends-menu-section").hide();
|
|
||||||
} else {
|
|
||||||
$("#friends-menu-section").show();
|
|
||||||
}
|
|
||||||
if (menuFriendsData != data) {
|
if (menuFriendsData != data) {
|
||||||
menuFriendsData = data;
|
menuFriendsData = data;
|
||||||
if (!showFriends(data, "#menu-friends-list", 5, "profile.php", "GET", limit)) {
|
if (showFriends(data, "#menu-friends-list", 5, "profile.php", "GET", limit)) {
|
||||||
|
$("#friends-menu-section").show();
|
||||||
|
} else {
|
||||||
$("#friends-menu-section").hide();
|
$("#friends-menu-section").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).fail(function() {
|
|
||||||
$("#friends-menu-section").hide();
|
|
||||||
}).always(function() {
|
|
||||||
updatingMenus --;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the groups and insert them in the menu.
|
// Get, every 3 seconds, the groups and insert them in the menu.
|
||||||
function loadMenuGroups() {
|
function loadMenuGroups() {
|
||||||
updatingMenus ++;
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/loadGroups.php",
|
"API/loadGroups.php",
|
||||||
{
|
{
|
||||||
limit: 5
|
limit: 5
|
||||||
}
|
}
|
||||||
).done(function(data) {
|
).done(function(data) {
|
||||||
|
|
||||||
if (data == "" || data == "[]") {
|
|
||||||
$("#groups-menu-section").hide();
|
|
||||||
} else {
|
|
||||||
$("#groups-menu-section").show();
|
|
||||||
}
|
|
||||||
if (menuGroupsData != data) {
|
if (menuGroupsData != data) {
|
||||||
menuGroupsData = data;
|
menuGroupsData = data;
|
||||||
if (!showGroups(data, "#menu-groups-list")) {
|
if (showGroups(data, "#menu-groups-list")) {
|
||||||
|
$("#groups-menu-section").show();
|
||||||
|
} else {
|
||||||
$("#groups-menu-section").hide();
|
$("#groups-menu-section").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).fail(function() {
|
|
||||||
$("#groups-menu-section").hide();
|
|
||||||
}).always(function() {
|
|
||||||
updatingMenus --;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the friends requests and insert them in the notification center.
|
// Get, every 3 seconds, the friends requests and insert them in the notification center.
|
||||||
function loadNotificationFriends() {
|
function loadNotificationFriends() {
|
||||||
updatingMenus ++;
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/loadFriendRequest.php"
|
"API/loadFriendRequest.php"
|
||||||
).done(function(data) {
|
).done(function(data) {
|
||||||
if (data == "" || data == "[]") {
|
|
||||||
$("#friend-request-section").hide();
|
|
||||||
} else {
|
|
||||||
$("#friend-request-section").show();
|
|
||||||
}
|
|
||||||
if (notificationRequestsData != data) {
|
if (notificationRequestsData != data) {
|
||||||
notificationRequestsData = data;
|
notificationRequestsData = data;
|
||||||
if (!showFriendsPlus(data, "#friend-requests-list", 5, "profile.php", "GET")) {
|
if (showFriendsPlus(data, "#friend-requests-list", 5, "profile.php", "GET")) {
|
||||||
|
$("#friend-request-section").show();
|
||||||
|
} else {
|
||||||
$("#friend-request-section").hide();
|
$("#friend-request-section").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).fail(function() {
|
|
||||||
$("#friend-request-section").hide();
|
|
||||||
}).always(function() {
|
|
||||||
updatingMenus --;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the unread messages and insert them in the notification center.
|
// Get, every 3 seconds, the unread messages and insert them in the notification center.
|
||||||
function loadUnreadMessages() {
|
function loadUnreadMessages() {
|
||||||
updatingMenus ++;
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/loadChatNotifications.php"
|
"API/loadChatNotifications.php"
|
||||||
).done(function(data) {
|
).done(function(data) {
|
||||||
if (data == "" || data == "[]") {
|
|
||||||
$("#unread-messages-section").hide();
|
|
||||||
} else {
|
|
||||||
$("#unread-messages-section").show();
|
|
||||||
}
|
|
||||||
if (notificationMessagesData != data) {
|
if (notificationMessagesData != data) {
|
||||||
notificationMessagesData = data;
|
notificationMessagesData = data;
|
||||||
if (!showFriendsPlus(data, "#unread-chat-list", 5, "chat.php", "GET")) {
|
if (showFriendsPlus(data, "#unread-chat-list", 5, "chat.php", "GET")) {
|
||||||
|
$("#unread-messages-section").show();
|
||||||
|
} else {
|
||||||
$("#unread-messages-section").hide();
|
$("#unread-messages-section").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).fail(function() {
|
|
||||||
$("#unread-messages-section").hide();
|
|
||||||
}).always(function() {
|
|
||||||
updatingMenus --;
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -1,16 +1,11 @@
|
|||||||
|
|
||||||
function postComment(buttonValue) {
|
function postComment(buttonValue) {
|
||||||
formData = $("#newcommentform").serializeArray();
|
formData = $("#newcommentform").serializeArray();
|
||||||
formData.push({name: "button", value: buttonValue});
|
formData.push({name: "button", value: buttonValue});
|
||||||
$.post(
|
$.post(
|
||||||
"API/postComment.php",
|
"API/postComment.php",
|
||||||
formData
|
formData
|
||||||
).done(function (response) {
|
).done(function(data) {
|
||||||
if (response == "frozen") {
|
console.log(data);
|
||||||
alert("Je account is bevroren, dus je kan geen comments plaatsen of \"niet slechten\". Contacteer een admin als je denkt dat dit onjuist is.");
|
|
||||||
} else if (response == "logged out") {
|
|
||||||
window.location.href = "login.php?url=" + window.location.pathname;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#newcomment").val("");
|
$("#newcomment").val("");
|
||||||
@@ -20,22 +15,6 @@ function postComment(buttonValue) {
|
|||||||
"API/loadPost.php",
|
"API/loadPost.php",
|
||||||
$("#newcommentform").serialize()
|
$("#newcommentform").serialize()
|
||||||
).done(function (data) {
|
).done(function (data) {
|
||||||
$('#modal-response').html(fancyText(data));
|
$('#modal-response').html(data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function deletePost(postID) {
|
|
||||||
var formData = [{name: "postID", value: postID}];
|
|
||||||
$.post(
|
|
||||||
"API/deletePost.php",
|
|
||||||
formData
|
|
||||||
).done(function (response) {
|
|
||||||
if (response == "frozen") {
|
|
||||||
alert("Je account is bevroren, dus je kan geen posts verwijderen. Contacteer een admin als je denkt dat dit onjuist is.");
|
|
||||||
} else if (response == "logged out") {
|
|
||||||
window.location.href = "login.php?url=" + window.location.pathname;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
closeModal();
|
|
||||||
masonry(masonryMode);
|
|
||||||
}
|
|
||||||
@@ -1,23 +1,15 @@
|
|||||||
function checkLoggedIn() {
|
function checkLoggedIn() {
|
||||||
if (confirm("U bent al ingelogd!\nWilt u uitloggen?\nKlik ok om uit te loggen.") == true) {
|
if (confirm("U bent al ingelogd!!\nWilt u uitloggen?\nKlik ok om uit te loggen.") == true) {
|
||||||
window.location.href = "logout.php";
|
window.location.href = "logout.php";
|
||||||
} else {
|
} else {
|
||||||
window.location.href = "profile.php";
|
window.location.href = "profile.php";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function emailAlert(){
|
|
||||||
alert("Bevestigingsemail is gestuurd!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
function bannedAlert(){
|
function bannedAlert(){
|
||||||
alert("Uw account is geband!");
|
alert("Uw account is geband!");
|
||||||
}
|
}
|
||||||
|
|
||||||
function frozenAlert(){
|
|
||||||
alert("Uw account is bevroren!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
function emailNotConfirmed(){
|
function emailNotConfirmed(){
|
||||||
alert("Uw account is nog niet bevestigd!\nEr is een nieuwe email gestuurd om uw account te bevestigen");
|
alert("Uw account is nog niet bevestigd!\nEr is een nieuwe email gestuurd om uw account te bevestigen");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
$(window).on('load', function () {
|
function searchUsers(n, m) {
|
||||||
pageNumber();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Search for the users and put them in the user list.
|
|
||||||
function searchUsers() {
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/searchUsers.php",
|
"API/searchUsers.php",
|
||||||
$('#search-form').serialize()
|
{
|
||||||
|
n: n,
|
||||||
|
m: m,
|
||||||
|
search: $("#search-input").val(),
|
||||||
|
filter: $("#search-filter").val()
|
||||||
|
}
|
||||||
).done(function(data) {
|
).done(function(data) {
|
||||||
if (!showFriends(data, "#search-users-list", 0, "profile.php", "GET")) {
|
if (!showFriends(data, "#search-users-list", 0, "profile.php", "GET")) {
|
||||||
$("#search-users-list").text("Niemand gevonden");
|
$("#search-users-list").text("Niemand gevonden");
|
||||||
@@ -14,31 +14,18 @@ function searchUsers() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search for the groups and put them in the group list.
|
function searchGroups(n, m) {
|
||||||
function searchGroups() {
|
|
||||||
$.post(
|
$.post(
|
||||||
"API/searchGroups.php",
|
"API/searchGroups.php",
|
||||||
$('#search-form').serialize()
|
{
|
||||||
|
n: n,
|
||||||
|
m: m,
|
||||||
|
search: $("#search-input").val(),
|
||||||
|
filter: $("#search-filter").val()
|
||||||
|
}
|
||||||
).done(function(data) {
|
).done(function(data) {
|
||||||
if (!showGroups(data, "#search-groups-list")) {
|
if (!showGroups(data, "#search-groups-list")) {
|
||||||
$("#search-groups-list").text("Geen groepen gevonden");
|
$("#search-groups-list").text("Geen groepen gevonden");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the page numbers and return them in the select.
|
|
||||||
function pageNumber() {
|
|
||||||
var input = input2 = $('#search-form').serialize();
|
|
||||||
$.post(
|
|
||||||
"API/searchPageNumber.php",
|
|
||||||
input + "&option=user"
|
|
||||||
).done(function (data) {
|
|
||||||
$('#user-pageselect').html(data);
|
|
||||||
});
|
|
||||||
$.post(
|
|
||||||
"API/searchPageNumber.php",
|
|
||||||
input2 + "&option=group"
|
|
||||||
).done(function (data) {
|
|
||||||
$('#group-pageselect').html(data);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -8,17 +8,58 @@
|
|||||||
include_once("../queries/emailconfirm.php");
|
include_once("../queries/emailconfirm.php");
|
||||||
include_once("../queries/requestpassword.php");
|
include_once("../queries/requestpassword.php");
|
||||||
include_once("../queries/register.php");
|
include_once("../queries/register.php");
|
||||||
require_once("../queries/Facebook/autoload.php");
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
|
session_start();
|
||||||
|
|
||||||
include("../views/homeLoginRegister.php");
|
if(isset($_SESSION["userID"])){
|
||||||
|
echo "<script>
|
||||||
|
window.onload=checkLoggedIn();
|
||||||
|
</script>";
|
||||||
|
}
|
||||||
|
|
||||||
|
// define variables and set to empty values
|
||||||
|
$name = $surname = $bday = $username = $password = $confirmpassword = $location = $housenumber = $email = $confirmEmail = $captcha = $ip = "";
|
||||||
|
$genericErr = $nameErr = $surnameErr = $bdayErr = $usernameErr = $passwordErr = $confirmpasswordErr = $locationErr = $housenumberErr = $emailErr = $confirmEmailErr = $captchaErr = "";
|
||||||
|
$correct = true;
|
||||||
|
$day_date = "dag";
|
||||||
|
$month_date = "maand";
|
||||||
|
$year_date = "jaar";
|
||||||
|
|
||||||
|
// Define variables and set to empty values
|
||||||
|
$user = $psw = $remember ="";
|
||||||
|
$loginErr = $resetErr ="";
|
||||||
|
|
||||||
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||||
|
switch ($_POST["submit"]) {
|
||||||
|
case "login":
|
||||||
|
try {
|
||||||
|
$user = ($_POST["user"]);
|
||||||
|
validateLogin($_POST["user"], $_POST["psw"]);
|
||||||
|
} catch(loginException $e) {
|
||||||
|
$loginErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "reset":
|
||||||
|
try {
|
||||||
|
resetEmail($_POST["forgotEmail"]);
|
||||||
|
sendPasswordRecovery($_POST["forgotEmail"]);
|
||||||
|
} catch (emailException $e){
|
||||||
|
$resetErr = $e->getMessage();
|
||||||
|
echo "<script>
|
||||||
|
window.onload = function() {
|
||||||
|
$('#myModal').show();
|
||||||
|
}
|
||||||
|
</script>";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "register":
|
||||||
|
include("register.php");
|
||||||
|
}
|
||||||
|
}
|
||||||
/* This view adds login view */
|
/* This view adds login view */
|
||||||
include("../views/login-view.php");
|
include("../views/login-view.php");
|
||||||
?>
|
?>
|
||||||
<script src="js/loginRegisterModals.js"></script>;
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -13,11 +13,10 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
include_once("../queries/user.php");
|
include("../queries/user.php");
|
||||||
include_once("../queries/friendship.php");
|
include("../queries/friendship.php");
|
||||||
include_once("../queries/nicetime.php");
|
include("../queries/nicetime.php");
|
||||||
include_once("../queries/post.php");
|
include("../queries/post.php");
|
||||||
include_once("../queries/calcAge.php");
|
|
||||||
|
|
||||||
if(empty($_GET["username"])) {
|
if(empty($_GET["username"])) {
|
||||||
$userID = $_SESSION["userID"];
|
$userID = $_SESSION["userID"];
|
||||||
@@ -25,15 +24,9 @@ if(empty($_GET["username"])) {
|
|||||||
$userID = getUserID($_GET["username"]);
|
$userID = getUserID($_GET["username"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$user = selectUser($_SESSION["userID"], $userID)) {
|
$user = selectUser($_SESSION["userID"], $userID);
|
||||||
header("HTTP/1.0 404 Not Found");
|
|
||||||
header("Location: error/404.php");
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
$profile_friends = selectAllFriends($userID);
|
$profile_friends = selectAllFriends($userID);
|
||||||
$profile_groups = selectAllUserGroups($userID);
|
$profile_groups = selectAllUserGroups($userID);
|
||||||
$showProfile = $user["showProfile"] || ($user["status"] == 'confirmed') || $_SESSION["userID"] == $userID;
|
|
||||||
|
|
||||||
|
|
||||||
if ($userID == $_SESSION["userID"]) {
|
if ($userID == $_SESSION["userID"]) {
|
||||||
|
|||||||
116
website/public/register(stash).php
Normal file
116
website/public/register(stash).php
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<?php
|
||||||
|
include("../views/login_head.php");
|
||||||
|
require_once("../queries/connect.php");
|
||||||
|
include_once("../queries/register.php");
|
||||||
|
include_once("../queries/checkInput.php");
|
||||||
|
include_once("../queries/emailconfirm.php");
|
||||||
|
?>
|
||||||
|
<body>
|
||||||
|
<?php
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
if(isset($_SESSION["userID"])){
|
||||||
|
header("location: login.php");
|
||||||
|
}
|
||||||
|
// define variables and set to empty values
|
||||||
|
$name = $surname = $bday = $username = $password = $confirmpassword = $location = $housenumber = $email = $confirmEmail = $captcha = $ip = "";
|
||||||
|
$genericErr = $nameErr = $surnameErr = $bdayErr = $usernameErr = $passwordErr = $confirmpasswordErr = $locationErr = $housenumberErr = $emailErr = $confirmEmailErr = $captchaErr = "";
|
||||||
|
$correct = true;
|
||||||
|
$day_date = "dag";
|
||||||
|
$month_date = "maand";
|
||||||
|
$year_date = "jaar";
|
||||||
|
|
||||||
|
// Trying to register an account
|
||||||
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||||
|
try {
|
||||||
|
$name = test_input(($_POST["name"]));
|
||||||
|
checkInputChoice($name, "lettersAndSpaces");
|
||||||
|
} catch(lettersAndSpacesException $e){
|
||||||
|
$correct = false;
|
||||||
|
$nameErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$surname = test_input(($_POST["surname"]));
|
||||||
|
checkInputChoice($surname, "lettersAndSpaces");
|
||||||
|
}
|
||||||
|
catch(lettersAndSpacesException $e){
|
||||||
|
$correct = false;
|
||||||
|
$surnameErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
$day_date = test_input(($_POST["day_date"]));
|
||||||
|
$month_date = test_input(($_POST["month_date"]));
|
||||||
|
$year_date = test_input(($_POST["year_date"]));
|
||||||
|
$bday = $year_date . "-" . $month_date . "-" . $day_date;
|
||||||
|
checkInputChoice($bday, "bday");
|
||||||
|
} catch(bdayException $e){
|
||||||
|
$correct = false;
|
||||||
|
$bdayErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
$username = str_replace(' ', '', test_input(($_POST["username"])));
|
||||||
|
checkInputChoice($username, "username");
|
||||||
|
} catch(usernameException $e){
|
||||||
|
$correct = false;
|
||||||
|
$usernameErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
$password = str_replace(' ', '', test_input(($_POST["password"])));
|
||||||
|
checkInputChoice($password, "longerEight");
|
||||||
|
matchPassword();
|
||||||
|
} catch(passwordException $e){
|
||||||
|
$correct = false;
|
||||||
|
$passwordErr = $e->getMessage();
|
||||||
|
} catch(confirmPasswordException $e){
|
||||||
|
$correct = false;
|
||||||
|
$confirmPasswordErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
$location = test_input(($_POST["location"]));
|
||||||
|
checkInputChoice($location, "lettersAndSpaces");
|
||||||
|
} catch(lettersAndSpacesException $e){
|
||||||
|
$correct = false;
|
||||||
|
$locationErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
$email = test_input(($_POST["email"]));
|
||||||
|
checkInputChoice($email, "email");
|
||||||
|
$confirmEmail = test_input(($_POST["confirmEmail"]));
|
||||||
|
matchEmail();
|
||||||
|
} catch(emailException $e){
|
||||||
|
$correct = false;
|
||||||
|
$emailErr = $e->getMessage();
|
||||||
|
} catch(confirmEmailException $e){
|
||||||
|
$correct = false;
|
||||||
|
$confirmEmailErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
$captcha = $_POST['g-recaptcha-response'];
|
||||||
|
checkCaptcha($captcha);
|
||||||
|
} catch(captchaException $e){
|
||||||
|
$correct = false;
|
||||||
|
$captchaErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
getIp();
|
||||||
|
registerCheck($correct);
|
||||||
|
sendConfirmEmailUsername($username);
|
||||||
|
} catch(registerException $e){
|
||||||
|
$genericErr = $e->getMessage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* This view adds register view */
|
||||||
|
include("../views/register-view.php");
|
||||||
|
?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
|
|
||||||
try{
|
try{
|
||||||
$location = test_input(($_POST["location"]));
|
$location = test_input(($_POST["location"]));
|
||||||
checkInputChoice($location, "");
|
checkInputChoice($location, "lettersAndSpaces");
|
||||||
} catch(lettersAndSpacesException $e){
|
} catch(lettersAndSpacesException $e){
|
||||||
$correct = false;
|
$correct = false;
|
||||||
$locationErr = $e->getMessage();
|
$locationErr = $e->getMessage();
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
try {
|
try {
|
||||||
getIp();
|
getIp();
|
||||||
registerCheck($correct);
|
registerCheck($correct);
|
||||||
sendConfirmEmail(getUserID()["userID"]);
|
sendConfirmEmailUsername($username);
|
||||||
} catch(registerException $e){
|
} catch(registerException $e){
|
||||||
echo "<script>
|
echo "<script>
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
@@ -14,13 +14,11 @@
|
|||||||
<?php
|
<?php
|
||||||
$alertClass;
|
$alertClass;
|
||||||
$alertMessage;
|
$alertMessage;
|
||||||
|
|
||||||
// Select which button has been pressed.
|
|
||||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||||
try {
|
try {
|
||||||
switch ($_POST["form"]) {
|
switch ($_POST["form"]) {
|
||||||
case "profile":
|
case "profile":
|
||||||
checkUpdateSettings();
|
updateSettings();
|
||||||
break;
|
break;
|
||||||
case "password":
|
case "password":
|
||||||
changePassword();
|
changePassword();
|
||||||
@@ -31,6 +29,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||||||
case "picture":
|
case "picture":
|
||||||
updateAvatar();
|
updateAvatar();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
} catch (AlertMessage $w) {
|
} catch (AlertMessage $w) {
|
||||||
$alertClass = $w->getClass();
|
$alertClass = $w->getClass();
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
.admin-panel input[type="radio"], input[type="checkbox"] {
|
.admin-panel input[type="radio"], input[type="checkbox"] {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
height: 28px;
|
height: auto;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -34,6 +34,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.usertable .table-checkbox {width: 20px}
|
||||||
.usertable .table-username {width: 150px}
|
.usertable .table-username {width: 150px}
|
||||||
.usertable .table-status {width: 100px}
|
.usertable .table-status {width: 100px}
|
||||||
.usertable .table-action {width: 200px}
|
.usertable .table-action {width: 200px}
|
||||||
@@ -43,18 +44,10 @@
|
|||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.usertable th, tr {
|
.usertable tr {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.usertable tr:hover {
|
.usertable tr:hover {
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bancommentedit {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bancommentform input[type="text"] {
|
|
||||||
width: 80%;
|
|
||||||
}
|
|
||||||
@@ -22,7 +22,6 @@ body {
|
|||||||
height: calc(100% - 100px);
|
height: calc(100% - 100px);
|
||||||
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float: left;
|
|
||||||
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
@@ -32,14 +31,12 @@ body {
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
|
||||||
width: calc(100% - 256px - 85px);
|
width: calc(100% - 256px - 75px);
|
||||||
height: calc(100% - 80px);
|
height: calc(100% - 80px);
|
||||||
margin-right: 10px;
|
|
||||||
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float: right;
|
|
||||||
|
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ header div {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#open-notifications {
|
#open-notifications {
|
||||||
padding: 20px 20px 20px 0px;
|
padding: 5px 20px 5px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1080px) {
|
@media only screen and (max-width: 1080px) {
|
||||||
|
|||||||
@@ -10,19 +10,6 @@ a.button {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a.fbButton {
|
|
||||||
background-color: #3B5998;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: black;
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 8px 20px;
|
|
||||||
font-family: Arial;
|
|
||||||
font-size: 22px;
|
|
||||||
color: white;
|
|
||||||
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Body */
|
/* Body */
|
||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@@ -41,7 +28,7 @@ body {
|
|||||||
form {
|
form {
|
||||||
/*background-color: #a87a87;*/
|
/*background-color: #a87a87;*/
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
height: 80%;
|
height: 85%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: 600px;
|
width: 600px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
@@ -133,12 +120,6 @@ label {
|
|||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.login_containerNoscript {
|
|
||||||
padding: 4px;
|
|
||||||
text-align: center;
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes animatezoom {
|
@keyframes animatezoom {
|
||||||
from {transform: scale(0)}
|
from {transform: scale(0)}
|
||||||
to {transform: scale(1)}
|
to {transform: scale(1)}
|
||||||
@@ -156,7 +137,7 @@ label {
|
|||||||
margin: 16px auto;
|
margin: 16px auto;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
width: 650px;
|
width: 600px;
|
||||||
}
|
}
|
||||||
|
|
||||||
select{
|
select{
|
||||||
@@ -173,7 +154,7 @@ ul {
|
|||||||
display: none; /* Hidden by default */
|
display: none; /* Hidden by default */
|
||||||
position: fixed; /* Stay in place */
|
position: fixed; /* Stay in place */
|
||||||
z-index: 1; /* Sit on top */
|
z-index: 1; /* Sit on top */
|
||||||
padding-top: 75px; /* Location of the box */
|
padding-top: 30px; /* Location of the box */
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%; /* Full width */
|
width: 100%; /* Full width */
|
||||||
@@ -198,6 +179,12 @@ ul {
|
|||||||
animation-duration: 0.4s
|
animation-duration: 0.4s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Add Animation */
|
||||||
|
@-webkit-keyframes animatetop {
|
||||||
|
from {top:-300px; opacity:0}
|
||||||
|
to {top:0; opacity:1}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes animatetop {
|
@keyframes animatetop {
|
||||||
from {top:-300px; opacity:0}
|
from {top:-300px; opacity:0}
|
||||||
to {top:0; opacity:1}
|
to {top:0; opacity:1}
|
||||||
@@ -229,7 +216,6 @@ ul {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
padding: 2px 8px;
|
|
||||||
background-color: #FBC02D;
|
background-color: #FBC02D;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,14 +92,6 @@ p {
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.online {
|
|
||||||
border: #4CAF50 solid 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.offline {
|
|
||||||
border: #666666 solid 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group-picture {
|
.group-picture {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
@@ -116,7 +108,7 @@ p {
|
|||||||
|
|
||||||
@media only screen and (max-width: 1400px) {
|
@media only screen and (max-width: 1400px) {
|
||||||
.item-box {
|
.item-box {
|
||||||
width: calc(100% - 50px)!important;
|
width: calc(100% - 50px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -256,6 +248,8 @@ div[data-title]:hover:after {
|
|||||||
top: 150%;
|
top: 150%;
|
||||||
z-index: 200;
|
z-index: 200;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
@@ -288,20 +282,25 @@ div[data-title]:hover:after {
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
height: 5px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
-webkit-border-radius: 20px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background: #4CAF50;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1080px) {
|
@media only screen and (max-width: 1080px) {
|
||||||
body {
|
body {
|
||||||
font-size: 28px!important;
|
font-size: 28px!important;
|
||||||
}
|
}
|
||||||
button, input, select {
|
button {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
height: 42px;
|
|
||||||
}
|
|
||||||
textarea {
|
|
||||||
font-size: 28px;
|
|
||||||
}
|
|
||||||
input[type="checkbox"], input[type="radio"] {
|
|
||||||
width: 28px;
|
|
||||||
height: 28px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
/* Modal Content/Box */
|
/* Modal Content/Box */
|
||||||
.modal-content {
|
.modal-content {
|
||||||
margin: 50px auto;
|
margin: 5% auto;
|
||||||
width: 70%; /* Could be more or less, depending on screen size */
|
width: 70%; /* Could be more or less, depending on screen size */
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
@@ -48,10 +48,6 @@
|
|||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-content a {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.commentfield {
|
.commentfield {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
@@ -88,8 +84,3 @@
|
|||||||
height: 24px;
|
height: 24px;
|
||||||
width: 24px;
|
width: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.deleteButton {
|
|
||||||
background-color: firebrick;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
@@ -1,14 +1,5 @@
|
|||||||
/* New */
|
/* New */
|
||||||
|
|
||||||
.alertbox {
|
|
||||||
display: none;
|
|
||||||
background-color: firebrick;
|
|
||||||
}
|
|
||||||
|
|
||||||
.alerttext {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.user-box {
|
.user-box {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@@ -20,33 +11,21 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.friend-button-container, .group-button-container {
|
.friend-button-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
float: right;
|
float: right;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.friend-button-container div, .status-buttons-container div {
|
.friend-button-container button, .status-buttons-container button {
|
||||||
width: 200px;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.friend-button-container button, .status-buttons-container button, .group-button-container button {
|
|
||||||
display: block;
|
display: block;
|
||||||
float: right;
|
|
||||||
|
|
||||||
margin: 7px 0;
|
margin: 7px 0;
|
||||||
|
width: 200px;
|
||||||
|
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
.status-buttons-container button {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group-button-container button {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.empty-button {
|
.empty-button {
|
||||||
background: none;
|
background: none;
|
||||||
@@ -66,36 +45,12 @@
|
|||||||
|
|
||||||
.main-picture {
|
.main-picture {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-width: 5px;
|
border: #4CAF50 solid 5px;
|
||||||
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 150px;
|
width: 150px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
margin-bottom: -45px;
|
margin-bottom: -45px;
|
||||||
|
|
||||||
object-fit: cover;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group-picture {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancy-button span {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancy-button:hover {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancy-button i {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fancy-button:hover span {
|
|
||||||
display: inline-block;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Old */
|
/* Old */
|
||||||
@@ -121,10 +76,6 @@ div.posts div.post {
|
|||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.posts div.post a {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.posts div.post:hover {
|
div.posts div.post:hover {
|
||||||
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
||||||
}
|
}
|
||||||
@@ -143,7 +94,7 @@ div.posts .post form input, div.posts .post form textarea {
|
|||||||
width: calc(100% - 15px);
|
width: calc(100% - 15px);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.posts .post form input[type="submit"], .post button{
|
div.posts .post form input[type="submit"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,11 +109,6 @@ div.posts .post form textarea.newpost {
|
|||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.noposts {
|
|
||||||
display: none;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1500px) {
|
@media only screen and (max-width: 1500px) {
|
||||||
.post-box {
|
.post-box {
|
||||||
width: calc(50% - 68px);
|
width: calc(50% - 68px);
|
||||||
@@ -174,8 +120,4 @@ div.posts .post form textarea.newpost {
|
|||||||
.post-box {
|
.post-box {
|
||||||
width: calc(100% - 65px);
|
width: calc(100% - 65px);
|
||||||
}
|
}
|
||||||
.modal {
|
|
||||||
left: 0!important;
|
|
||||||
width: 100%!important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,11 +32,6 @@
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings-password, .settings-email {
|
|
||||||
width: calc(50% - 60px);
|
|
||||||
display: inline-flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.settings-password label, .settings-email label {
|
.settings-password label, .settings-email label {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,160 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Authentication;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class AccessToken
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class AccessToken
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The access token value.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $value = '';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Date when token expires.
|
|
||||||
*
|
|
||||||
* @var \DateTime|null
|
|
||||||
*/
|
|
||||||
protected $expiresAt;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new access token entity.
|
|
||||||
*
|
|
||||||
* @param string $accessToken
|
|
||||||
* @param int $expiresAt
|
|
||||||
*/
|
|
||||||
public function __construct($accessToken, $expiresAt = 0)
|
|
||||||
{
|
|
||||||
$this->value = $accessToken;
|
|
||||||
if ($expiresAt) {
|
|
||||||
$this->setExpiresAtFromTimeStamp($expiresAt);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate an app secret proof to sign a request to Graph.
|
|
||||||
*
|
|
||||||
* @param string $appSecret The app secret.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getAppSecretProof($appSecret)
|
|
||||||
{
|
|
||||||
return hash_hmac('sha256', $this->value, $appSecret);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for expiresAt.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getExpiresAt()
|
|
||||||
{
|
|
||||||
return $this->expiresAt;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines whether or not this is an app access token.
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isAppAccessToken()
|
|
||||||
{
|
|
||||||
return strpos($this->value, '|') !== false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines whether or not this is a long-lived token.
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isLongLived()
|
|
||||||
{
|
|
||||||
if ($this->expiresAt) {
|
|
||||||
return $this->expiresAt->getTimestamp() > time() + (60 * 60 * 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isAppAccessToken()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks the expiration of the access token.
|
|
||||||
*
|
|
||||||
* @return boolean|null
|
|
||||||
*/
|
|
||||||
public function isExpired()
|
|
||||||
{
|
|
||||||
if ($this->getExpiresAt() instanceof \DateTime) {
|
|
||||||
return $this->getExpiresAt()->getTimestamp() < time();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isAppAccessToken()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the access token as a string.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getValue()
|
|
||||||
{
|
|
||||||
return $this->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the access token as a string.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return $this->getValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Setter for expires_at.
|
|
||||||
*
|
|
||||||
* @param int $timeStamp
|
|
||||||
*/
|
|
||||||
protected function setExpiresAtFromTimeStamp($timeStamp)
|
|
||||||
{
|
|
||||||
$dt = new \DateTime();
|
|
||||||
$dt->setTimestamp($timeStamp);
|
|
||||||
$this->expiresAt = $dt;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,390 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Authentication;
|
|
||||||
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class AccessTokenMetadata
|
|
||||||
*
|
|
||||||
* Represents metadata from an access token.
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
* @see https://developers.facebook.com/docs/graph-api/reference/debug_token
|
|
||||||
*/
|
|
||||||
class AccessTokenMetadata
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The access token metadata.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $metadata = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Properties that should be cast as DateTime objects.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected static $dateProperties = ['expires_at', 'issued_at'];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $metadata
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function __construct(array $metadata)
|
|
||||||
{
|
|
||||||
if (!isset($metadata['data'])) {
|
|
||||||
throw new FacebookSDKException('Unexpected debug token response data.', 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->metadata = $metadata['data'];
|
|
||||||
|
|
||||||
$this->castTimestampsToDateTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from the metadata.
|
|
||||||
*
|
|
||||||
* @param string $field The property to retrieve.
|
|
||||||
* @param mixed $default The default to return if the property doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getField($field, $default = null)
|
|
||||||
{
|
|
||||||
if (isset($this->metadata[$field])) {
|
|
||||||
return $this->metadata[$field];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from the metadata.
|
|
||||||
*
|
|
||||||
* @param string $field The property to retrieve.
|
|
||||||
* @param mixed $default The default to return if the property doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 getProperty() has been renamed to getField()
|
|
||||||
* @todo v6: Remove this method
|
|
||||||
*/
|
|
||||||
public function getProperty($field, $default = null)
|
|
||||||
{
|
|
||||||
return $this->getField($field, $default);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from a child property in the metadata.
|
|
||||||
*
|
|
||||||
* @param string $parentField The parent property.
|
|
||||||
* @param string $field The property to retrieve.
|
|
||||||
* @param mixed $default The default to return if the property doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getChildProperty($parentField, $field, $default = null)
|
|
||||||
{
|
|
||||||
if (!isset($this->metadata[$parentField])) {
|
|
||||||
return $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($this->metadata[$parentField][$field])) {
|
|
||||||
return $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->metadata[$parentField][$field];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from the error metadata.
|
|
||||||
*
|
|
||||||
* @param string $field The property to retrieve.
|
|
||||||
* @param mixed $default The default to return if the property doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getErrorProperty($field, $default = null)
|
|
||||||
{
|
|
||||||
return $this->getChildProperty('error', $field, $default);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from the "metadata" metadata. *Brain explodes*
|
|
||||||
*
|
|
||||||
* @param string $field The property to retrieve.
|
|
||||||
* @param mixed $default The default to return if the property doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getMetadataProperty($field, $default = null)
|
|
||||||
{
|
|
||||||
return $this->getChildProperty('metadata', $field, $default);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The ID of the application this access token is for.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAppId()
|
|
||||||
{
|
|
||||||
return $this->getField('app_id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Name of the application this access token is for.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getApplication()
|
|
||||||
{
|
|
||||||
return $this->getField('application');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Any error that a request to the graph api
|
|
||||||
* would return due to the access token.
|
|
||||||
*
|
|
||||||
* @return bool|null
|
|
||||||
*/
|
|
||||||
public function isError()
|
|
||||||
{
|
|
||||||
return $this->getField('error') !== null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The error code for the error.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getErrorCode()
|
|
||||||
{
|
|
||||||
return $this->getErrorProperty('code');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The error message for the error.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getErrorMessage()
|
|
||||||
{
|
|
||||||
return $this->getErrorProperty('message');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The error subcode for the error.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getErrorSubcode()
|
|
||||||
{
|
|
||||||
return $this->getErrorProperty('subcode');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DateTime when this access token expires.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getExpiresAt()
|
|
||||||
{
|
|
||||||
return $this->getField('expires_at');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Whether the access token is still valid or not.
|
|
||||||
*
|
|
||||||
* @return boolean|null
|
|
||||||
*/
|
|
||||||
public function getIsValid()
|
|
||||||
{
|
|
||||||
return $this->getField('is_valid');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DateTime when this access token was issued.
|
|
||||||
*
|
|
||||||
* Note that the issued_at field is not returned
|
|
||||||
* for short-lived access tokens.
|
|
||||||
*
|
|
||||||
* @see https://developers.facebook.com/docs/facebook-login/access-tokens#debug
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getIssuedAt()
|
|
||||||
{
|
|
||||||
return $this->getField('issued_at');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* General metadata associated with the access token.
|
|
||||||
* Can contain data like 'sso', 'auth_type', 'auth_nonce'.
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
public function getMetadata()
|
|
||||||
{
|
|
||||||
return $this->getField('metadata');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The 'sso' child property from the 'metadata' parent property.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getSso()
|
|
||||||
{
|
|
||||||
return $this->getMetadataProperty('sso');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The 'auth_type' child property from the 'metadata' parent property.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAuthType()
|
|
||||||
{
|
|
||||||
return $this->getMetadataProperty('auth_type');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The 'auth_nonce' child property from the 'metadata' parent property.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAuthNonce()
|
|
||||||
{
|
|
||||||
return $this->getMetadataProperty('auth_nonce');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For impersonated access tokens, the ID of
|
|
||||||
* the page this token contains.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getProfileId()
|
|
||||||
{
|
|
||||||
return $this->getField('profile_id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* List of permissions that the user has granted for
|
|
||||||
* the app in this access token.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getScopes()
|
|
||||||
{
|
|
||||||
return $this->getField('scopes');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The ID of the user this access token is for.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getUserId()
|
|
||||||
{
|
|
||||||
return $this->getField('user_id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures the app ID from the access token
|
|
||||||
* metadata is what we expect.
|
|
||||||
*
|
|
||||||
* @param string $appId
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateAppId($appId)
|
|
||||||
{
|
|
||||||
if ($this->getAppId() !== $appId) {
|
|
||||||
throw new FacebookSDKException('Access token metadata contains unexpected app ID.', 401);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures the user ID from the access token
|
|
||||||
* metadata is what we expect.
|
|
||||||
*
|
|
||||||
* @param string $userId
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateUserId($userId)
|
|
||||||
{
|
|
||||||
if ($this->getUserId() !== $userId) {
|
|
||||||
throw new FacebookSDKException('Access token metadata contains unexpected user ID.', 401);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures the access token has not expired yet.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateExpiration()
|
|
||||||
{
|
|
||||||
if (!$this->getExpiresAt() instanceof \DateTime) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->getExpiresAt()->getTimestamp() < time()) {
|
|
||||||
throw new FacebookSDKException('Inspection of access token metadata shows that the access token has expired.', 401);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts a unix timestamp into a DateTime entity.
|
|
||||||
*
|
|
||||||
* @param int $timestamp
|
|
||||||
*
|
|
||||||
* @return \DateTime
|
|
||||||
*/
|
|
||||||
private function convertTimestampToDateTime($timestamp)
|
|
||||||
{
|
|
||||||
$dt = new \DateTime();
|
|
||||||
$dt->setTimestamp($timestamp);
|
|
||||||
|
|
||||||
return $dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Casts the unix timestamps as DateTime entities.
|
|
||||||
*/
|
|
||||||
private function castTimestampsToDateTime()
|
|
||||||
{
|
|
||||||
foreach (static::$dateProperties as $key) {
|
|
||||||
if (isset($this->metadata[$key])) {
|
|
||||||
$this->metadata[$key] = $this->convertTimestampToDateTime($this->metadata[$key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,292 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Authentication;
|
|
||||||
|
|
||||||
use Facebook\Facebook;
|
|
||||||
use Facebook\FacebookApp;
|
|
||||||
use Facebook\FacebookRequest;
|
|
||||||
use Facebook\FacebookResponse;
|
|
||||||
use Facebook\FacebookClient;
|
|
||||||
use Facebook\Exceptions\FacebookResponseException;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class OAuth2Client
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class OAuth2Client
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @const string The base authorization URL.
|
|
||||||
*/
|
|
||||||
const BASE_AUTHORIZATION_URL = 'https://www.facebook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The FacebookApp entity.
|
|
||||||
*
|
|
||||||
* @var FacebookApp
|
|
||||||
*/
|
|
||||||
protected $app;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The Facebook client.
|
|
||||||
*
|
|
||||||
* @var FacebookClient
|
|
||||||
*/
|
|
||||||
protected $client;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The version of the Graph API to use.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $graphVersion;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The last request sent to Graph.
|
|
||||||
*
|
|
||||||
* @var FacebookRequest|null
|
|
||||||
*/
|
|
||||||
protected $lastRequest;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param FacebookApp $app
|
|
||||||
* @param FacebookClient $client
|
|
||||||
* @param string|null $graphVersion The version of the Graph API to use.
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookApp $app, FacebookClient $client, $graphVersion = null)
|
|
||||||
{
|
|
||||||
$this->app = $app;
|
|
||||||
$this->client = $client;
|
|
||||||
$this->graphVersion = $graphVersion ?: Facebook::DEFAULT_GRAPH_VERSION;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the last FacebookRequest that was sent.
|
|
||||||
* Useful for debugging and testing.
|
|
||||||
*
|
|
||||||
* @return FacebookRequest|null
|
|
||||||
*/
|
|
||||||
public function getLastRequest()
|
|
||||||
{
|
|
||||||
return $this->lastRequest;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the metadata associated with the access token.
|
|
||||||
*
|
|
||||||
* @param AccessToken|string $accessToken The access token to debug.
|
|
||||||
*
|
|
||||||
* @return AccessTokenMetadata
|
|
||||||
*/
|
|
||||||
public function debugToken($accessToken)
|
|
||||||
{
|
|
||||||
$accessToken = $accessToken instanceof AccessToken ? $accessToken->getValue() : $accessToken;
|
|
||||||
$params = ['input_token' => $accessToken];
|
|
||||||
|
|
||||||
$this->lastRequest = new FacebookRequest(
|
|
||||||
$this->app,
|
|
||||||
$this->app->getAccessToken(),
|
|
||||||
'GET',
|
|
||||||
'/debug_token',
|
|
||||||
$params,
|
|
||||||
null,
|
|
||||||
$this->graphVersion
|
|
||||||
);
|
|
||||||
$response = $this->client->sendRequest($this->lastRequest);
|
|
||||||
$metadata = $response->getDecodedBody();
|
|
||||||
|
|
||||||
return new AccessTokenMetadata($metadata);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generates an authorization URL to begin the process of authenticating a user.
|
|
||||||
*
|
|
||||||
* @param string $redirectUrl The callback URL to redirect to.
|
|
||||||
* @param array $scope An array of permissions to request.
|
|
||||||
* @param string $state The CSPRNG-generated CSRF value.
|
|
||||||
* @param array $params An array of parameters to generate URL.
|
|
||||||
* @param string $separator The separator to use in http_build_query().
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getAuthorizationUrl($redirectUrl, $state, array $scope = [], array $params = [], $separator = '&')
|
|
||||||
{
|
|
||||||
$params += [
|
|
||||||
'client_id' => $this->app->getId(),
|
|
||||||
'state' => $state,
|
|
||||||
'response_type' => 'code',
|
|
||||||
'sdk' => 'php-sdk-' . Facebook::VERSION,
|
|
||||||
'redirect_uri' => $redirectUrl,
|
|
||||||
'scope' => implode(',', $scope)
|
|
||||||
];
|
|
||||||
|
|
||||||
return static::BASE_AUTHORIZATION_URL . '/' . $this->graphVersion . '/dialog/oauth?' . http_build_query($params, null, $separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a valid access token from a code.
|
|
||||||
*
|
|
||||||
* @param string $code
|
|
||||||
* @param string $redirectUri
|
|
||||||
*
|
|
||||||
* @return AccessToken
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getAccessTokenFromCode($code, $redirectUri = '')
|
|
||||||
{
|
|
||||||
$params = [
|
|
||||||
'code' => $code,
|
|
||||||
'redirect_uri' => $redirectUri,
|
|
||||||
];
|
|
||||||
|
|
||||||
return $this->requestAnAccessToken($params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Exchanges a short-lived access token with a long-lived access token.
|
|
||||||
*
|
|
||||||
* @param AccessToken|string $accessToken
|
|
||||||
*
|
|
||||||
* @return AccessToken
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getLongLivedAccessToken($accessToken)
|
|
||||||
{
|
|
||||||
$accessToken = $accessToken instanceof AccessToken ? $accessToken->getValue() : $accessToken;
|
|
||||||
$params = [
|
|
||||||
'grant_type' => 'fb_exchange_token',
|
|
||||||
'fb_exchange_token' => $accessToken,
|
|
||||||
];
|
|
||||||
|
|
||||||
return $this->requestAnAccessToken($params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a valid code from an access token.
|
|
||||||
*
|
|
||||||
* @param AccessToken|string $accessToken
|
|
||||||
* @param string $redirectUri
|
|
||||||
*
|
|
||||||
* @return AccessToken
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getCodeFromLongLivedAccessToken($accessToken, $redirectUri = '')
|
|
||||||
{
|
|
||||||
$params = [
|
|
||||||
'redirect_uri' => $redirectUri,
|
|
||||||
];
|
|
||||||
|
|
||||||
$response = $this->sendRequestWithClientParams('/oauth/client_code', $params, $accessToken);
|
|
||||||
$data = $response->getDecodedBody();
|
|
||||||
|
|
||||||
if (!isset($data['code'])) {
|
|
||||||
throw new FacebookSDKException('Code was not returned from Graph.', 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $data['code'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Send a request to the OAuth endpoint.
|
|
||||||
*
|
|
||||||
* @param array $params
|
|
||||||
*
|
|
||||||
* @return AccessToken
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
protected function requestAnAccessToken(array $params)
|
|
||||||
{
|
|
||||||
$response = $this->sendRequestWithClientParams('/oauth/access_token', $params);
|
|
||||||
$data = $response->getDecodedBody();
|
|
||||||
|
|
||||||
if (!isset($data['access_token'])) {
|
|
||||||
throw new FacebookSDKException('Access token was not returned from Graph.', 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Graph returns two different key names for expiration time
|
|
||||||
// on the same endpoint. Doh! :/
|
|
||||||
$expiresAt = 0;
|
|
||||||
if (isset($data['expires'])) {
|
|
||||||
// For exchanging a short lived token with a long lived token.
|
|
||||||
// The expiration time in seconds will be returned as "expires".
|
|
||||||
$expiresAt = time() + $data['expires'];
|
|
||||||
} elseif (isset($data['expires_in'])) {
|
|
||||||
// For exchanging a code for a short lived access token.
|
|
||||||
// The expiration time in seconds will be returned as "expires_in".
|
|
||||||
// See: https://developers.facebook.com/docs/facebook-login/access-tokens#long-via-code
|
|
||||||
$expiresAt = time() + $data['expires_in'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return new AccessToken($data['access_token'], $expiresAt);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Send a request to Graph with an app access token.
|
|
||||||
*
|
|
||||||
* @param string $endpoint
|
|
||||||
* @param array $params
|
|
||||||
* @param string|null $accessToken
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookResponseException
|
|
||||||
*/
|
|
||||||
protected function sendRequestWithClientParams($endpoint, array $params, $accessToken = null)
|
|
||||||
{
|
|
||||||
$params += $this->getClientParams();
|
|
||||||
|
|
||||||
$accessToken = $accessToken ?: $this->app->getAccessToken();
|
|
||||||
|
|
||||||
$this->lastRequest = new FacebookRequest(
|
|
||||||
$this->app,
|
|
||||||
$accessToken,
|
|
||||||
'GET',
|
|
||||||
$endpoint,
|
|
||||||
$params,
|
|
||||||
null,
|
|
||||||
$this->graphVersion
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->client->sendRequest($this->lastRequest);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the client_* params for OAuth requests.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
protected function getClientParams()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'client_id' => $this->app->getId(),
|
|
||||||
'client_secret' => $this->app->getSecret(),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookAuthenticationException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookAuthenticationException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookAuthorizationException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookAuthorizationException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookClientException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookClientException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookOtherException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookOtherException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,208 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
use Facebook\FacebookResponse;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookResponseException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookResponseException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var FacebookResponse The response that threw the exception.
|
|
||||||
*/
|
|
||||||
protected $response;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array Decoded response.
|
|
||||||
*/
|
|
||||||
protected $responseData;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a FacebookResponseException.
|
|
||||||
*
|
|
||||||
* @param FacebookResponse $response The response that threw the exception.
|
|
||||||
* @param FacebookSDKException $previousException The more detailed exception.
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookResponse $response, FacebookSDKException $previousException = null)
|
|
||||||
{
|
|
||||||
$this->response = $response;
|
|
||||||
$this->responseData = $response->getDecodedBody();
|
|
||||||
|
|
||||||
$errorMessage = $this->get('message', 'Unknown error from Graph.');
|
|
||||||
$errorCode = $this->get('code', -1);
|
|
||||||
|
|
||||||
parent::__construct($errorMessage, $errorCode, $previousException);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A factory for creating the appropriate exception based on the response from Graph.
|
|
||||||
*
|
|
||||||
* @param FacebookResponse $response The response that threw the exception.
|
|
||||||
*
|
|
||||||
* @return FacebookResponseException
|
|
||||||
*/
|
|
||||||
public static function create(FacebookResponse $response)
|
|
||||||
{
|
|
||||||
$data = $response->getDecodedBody();
|
|
||||||
|
|
||||||
if (!isset($data['error']['code']) && isset($data['code'])) {
|
|
||||||
$data = ['error' => $data];
|
|
||||||
}
|
|
||||||
|
|
||||||
$code = isset($data['error']['code']) ? $data['error']['code'] : null;
|
|
||||||
$message = isset($data['error']['message']) ? $data['error']['message'] : 'Unknown error from Graph.';
|
|
||||||
|
|
||||||
$previousException = null;
|
|
||||||
|
|
||||||
if (isset($data['error']['error_subcode'])) {
|
|
||||||
switch ($data['error']['error_subcode']) {
|
|
||||||
// Other authentication issues
|
|
||||||
case 458:
|
|
||||||
case 459:
|
|
||||||
case 460:
|
|
||||||
case 463:
|
|
||||||
case 464:
|
|
||||||
case 467:
|
|
||||||
return new static($response, new FacebookAuthenticationException($message, $code));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
switch ($code) {
|
|
||||||
// Login status or token expired, revoked, or invalid
|
|
||||||
case 100:
|
|
||||||
case 102:
|
|
||||||
case 190:
|
|
||||||
return new static($response, new FacebookAuthenticationException($message, $code));
|
|
||||||
|
|
||||||
// Server issue, possible downtime
|
|
||||||
case 1:
|
|
||||||
case 2:
|
|
||||||
return new static($response, new FacebookServerException($message, $code));
|
|
||||||
|
|
||||||
// API Throttling
|
|
||||||
case 4:
|
|
||||||
case 17:
|
|
||||||
case 341:
|
|
||||||
return new static($response, new FacebookThrottleException($message, $code));
|
|
||||||
|
|
||||||
// Duplicate Post
|
|
||||||
case 506:
|
|
||||||
return new static($response, new FacebookClientException($message, $code));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Missing Permissions
|
|
||||||
if ($code == 10 || ($code >= 200 && $code <= 299)) {
|
|
||||||
return new static($response, new FacebookAuthorizationException($message, $code));
|
|
||||||
}
|
|
||||||
|
|
||||||
// OAuth authentication error
|
|
||||||
if (isset($data['error']['type']) && $data['error']['type'] === 'OAuthException') {
|
|
||||||
return new static($response, new FacebookAuthenticationException($message, $code));
|
|
||||||
}
|
|
||||||
|
|
||||||
// All others
|
|
||||||
return new static($response, new FacebookOtherException($message, $code));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks isset and returns that or a default value.
|
|
||||||
*
|
|
||||||
* @param string $key
|
|
||||||
* @param mixed $default
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
private function get($key, $default = null)
|
|
||||||
{
|
|
||||||
if (isset($this->responseData['error'][$key])) {
|
|
||||||
return $this->responseData['error'][$key];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the HTTP status code
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function getHttpStatusCode()
|
|
||||||
{
|
|
||||||
return $this->response->getHttpStatusCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the sub-error code
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function getSubErrorCode()
|
|
||||||
{
|
|
||||||
return $this->get('error_subcode', -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the error type
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getErrorType()
|
|
||||||
{
|
|
||||||
return $this->get('type', '');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the raw response used to create the exception.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getRawResponse()
|
|
||||||
{
|
|
||||||
return $this->response->getBody();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the decoded response used to create the exception.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getResponseData()
|
|
||||||
{
|
|
||||||
return $this->responseData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the response entity used to create the exception.
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*/
|
|
||||||
public function getResponse()
|
|
||||||
{
|
|
||||||
return $this->response;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookSDKException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookSDKException extends \Exception
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookServerException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookServerException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Exceptions;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookThrottleException
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookThrottleException extends FacebookSDKException
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,589 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use Facebook\Authentication\AccessToken;
|
|
||||||
use Facebook\Authentication\OAuth2Client;
|
|
||||||
use Facebook\FileUpload\FacebookFile;
|
|
||||||
use Facebook\FileUpload\FacebookVideo;
|
|
||||||
use Facebook\GraphNodes\GraphEdge;
|
|
||||||
use Facebook\Url\UrlDetectionInterface;
|
|
||||||
use Facebook\Url\FacebookUrlDetectionHandler;
|
|
||||||
use Facebook\PseudoRandomString\PseudoRandomStringGeneratorInterface;
|
|
||||||
use Facebook\PseudoRandomString\McryptPseudoRandomStringGenerator;
|
|
||||||
use Facebook\PseudoRandomString\OpenSslPseudoRandomStringGenerator;
|
|
||||||
use Facebook\PseudoRandomString\UrandomPseudoRandomStringGenerator;
|
|
||||||
use Facebook\HttpClients\FacebookHttpClientInterface;
|
|
||||||
use Facebook\HttpClients\FacebookCurlHttpClient;
|
|
||||||
use Facebook\HttpClients\FacebookStreamHttpClient;
|
|
||||||
use Facebook\HttpClients\FacebookGuzzleHttpClient;
|
|
||||||
use Facebook\PersistentData\PersistentDataInterface;
|
|
||||||
use Facebook\PersistentData\FacebookSessionPersistentDataHandler;
|
|
||||||
use Facebook\PersistentData\FacebookMemoryPersistentDataHandler;
|
|
||||||
use Facebook\Helpers\FacebookCanvasHelper;
|
|
||||||
use Facebook\Helpers\FacebookJavaScriptHelper;
|
|
||||||
use Facebook\Helpers\FacebookPageTabHelper;
|
|
||||||
use Facebook\Helpers\FacebookRedirectLoginHelper;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Facebook
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class Facebook
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @const string Version number of the Facebook PHP SDK.
|
|
||||||
*/
|
|
||||||
const VERSION = '5.0.0';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string Default Graph API version for requests.
|
|
||||||
*/
|
|
||||||
const DEFAULT_GRAPH_VERSION = 'v2.4';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string The name of the environment variable that contains the app ID.
|
|
||||||
*/
|
|
||||||
const APP_ID_ENV_NAME = 'FACEBOOK_APP_ID';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string The name of the environment variable that contains the app secret.
|
|
||||||
*/
|
|
||||||
const APP_SECRET_ENV_NAME = 'FACEBOOK_APP_SECRET';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookApp The FacebookApp entity.
|
|
||||||
*/
|
|
||||||
protected $app;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookClient The Facebook client service.
|
|
||||||
*/
|
|
||||||
protected $client;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var OAuth2Client The OAuth 2.0 client service.
|
|
||||||
*/
|
|
||||||
protected $oAuth2Client;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var UrlDetectionInterface|null The URL detection handler.
|
|
||||||
*/
|
|
||||||
protected $urlDetectionHandler;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var PseudoRandomStringGeneratorInterface|null The cryptographically secure pseudo-random string generator.
|
|
||||||
*/
|
|
||||||
protected $pseudoRandomStringGenerator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var AccessToken|null The default access token to use with requests.
|
|
||||||
*/
|
|
||||||
protected $defaultAccessToken;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string|null The default Graph version we want to use.
|
|
||||||
*/
|
|
||||||
protected $defaultGraphVersion;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var PersistentDataInterface|null The persistent data handler.
|
|
||||||
*/
|
|
||||||
protected $persistentDataHandler;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookResponse|FacebookBatchResponse|null Stores the last request made to Graph.
|
|
||||||
*/
|
|
||||||
protected $lastResponse;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiates a new Facebook super-class object.
|
|
||||||
*
|
|
||||||
* @param array $config
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function __construct(array $config = [])
|
|
||||||
{
|
|
||||||
$appId = isset($config['app_id']) ? $config['app_id'] : getenv(static::APP_ID_ENV_NAME);
|
|
||||||
if (!$appId) {
|
|
||||||
throw new FacebookSDKException('Required "app_id" key not supplied in config and could not find fallback environment variable "' . static::APP_ID_ENV_NAME . '"');
|
|
||||||
}
|
|
||||||
|
|
||||||
$appSecret = isset($config['app_secret']) ? $config['app_secret'] : getenv(static::APP_SECRET_ENV_NAME);
|
|
||||||
if (!$appSecret) {
|
|
||||||
throw new FacebookSDKException('Required "app_secret" key not supplied in config and could not find fallback environment variable "' . static::APP_SECRET_ENV_NAME . '"');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->app = new FacebookApp($appId, $appSecret);
|
|
||||||
|
|
||||||
$httpClientHandler = null;
|
|
||||||
if (isset($config['http_client_handler'])) {
|
|
||||||
if ($config['http_client_handler'] instanceof FacebookHttpClientInterface) {
|
|
||||||
$httpClientHandler = $config['http_client_handler'];
|
|
||||||
} elseif ($config['http_client_handler'] === 'curl') {
|
|
||||||
$httpClientHandler = new FacebookCurlHttpClient();
|
|
||||||
} elseif ($config['http_client_handler'] === 'stream') {
|
|
||||||
$httpClientHandler = new FacebookStreamHttpClient();
|
|
||||||
} elseif ($config['http_client_handler'] === 'guzzle') {
|
|
||||||
$httpClientHandler = new FacebookGuzzleHttpClient();
|
|
||||||
} else {
|
|
||||||
throw new \InvalidArgumentException('The http_client_handler must be set to "curl", "stream", "guzzle", or be an instance of Facebook\HttpClients\FacebookHttpClientInterface');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$enableBeta = isset($config['enable_beta_mode']) && $config['enable_beta_mode'] === true;
|
|
||||||
$this->client = new FacebookClient($httpClientHandler, $enableBeta);
|
|
||||||
|
|
||||||
if (isset($config['url_detection_handler'])) {
|
|
||||||
if ($config['url_detection_handler'] instanceof UrlDetectionInterface) {
|
|
||||||
$this->urlDetectionHandler = $config['url_detection_handler'];
|
|
||||||
} else {
|
|
||||||
throw new \InvalidArgumentException('The url_detection_handler must be an instance of Facebook\Url\UrlDetectionInterface');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($config['pseudo_random_string_generator'])) {
|
|
||||||
if ($config['pseudo_random_string_generator'] instanceof PseudoRandomStringGeneratorInterface) {
|
|
||||||
$this->pseudoRandomStringGenerator = $config['pseudo_random_string_generator'];
|
|
||||||
} elseif ($config['pseudo_random_string_generator'] === 'mcrypt') {
|
|
||||||
$this->pseudoRandomStringGenerator = new McryptPseudoRandomStringGenerator();
|
|
||||||
} elseif ($config['pseudo_random_string_generator'] === 'openssl') {
|
|
||||||
$this->pseudoRandomStringGenerator = new OpenSslPseudoRandomStringGenerator();
|
|
||||||
} elseif ($config['pseudo_random_string_generator'] === 'urandom') {
|
|
||||||
$this->pseudoRandomStringGenerator = new UrandomPseudoRandomStringGenerator();
|
|
||||||
} else {
|
|
||||||
throw new \InvalidArgumentException('The pseudo_random_string_generator must be set to "mcrypt", "openssl", or "urandom", or be an instance of Facebook\PseudoRandomString\PseudoRandomStringGeneratorInterface');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($config['persistent_data_handler'])) {
|
|
||||||
if ($config['persistent_data_handler'] instanceof PersistentDataInterface) {
|
|
||||||
$this->persistentDataHandler = $config['persistent_data_handler'];
|
|
||||||
} elseif ($config['persistent_data_handler'] === 'session') {
|
|
||||||
$this->persistentDataHandler = new FacebookSessionPersistentDataHandler();
|
|
||||||
} elseif ($config['persistent_data_handler'] === 'memory') {
|
|
||||||
$this->persistentDataHandler = new FacebookMemoryPersistentDataHandler();
|
|
||||||
} else {
|
|
||||||
throw new \InvalidArgumentException('The persistent_data_handler must be set to "session", "memory", or be an instance of Facebook\PersistentData\PersistentDataInterface');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($config['default_access_token'])) {
|
|
||||||
$this->setDefaultAccessToken($config['default_access_token']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($config['default_graph_version'])) {
|
|
||||||
$this->defaultGraphVersion = $config['default_graph_version'];
|
|
||||||
} else {
|
|
||||||
// @todo v6: Throw an InvalidArgumentException if "default_graph_version" is not set
|
|
||||||
$this->defaultGraphVersion = static::DEFAULT_GRAPH_VERSION;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the FacebookApp entity.
|
|
||||||
*
|
|
||||||
* @return FacebookApp
|
|
||||||
*/
|
|
||||||
public function getApp()
|
|
||||||
{
|
|
||||||
return $this->app;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the FacebookClient service.
|
|
||||||
*
|
|
||||||
* @return FacebookClient
|
|
||||||
*/
|
|
||||||
public function getClient()
|
|
||||||
{
|
|
||||||
return $this->client;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the OAuth 2.0 client service.
|
|
||||||
*
|
|
||||||
* @return OAuth2Client
|
|
||||||
*/
|
|
||||||
public function getOAuth2Client()
|
|
||||||
{
|
|
||||||
if (!$this->oAuth2Client instanceof OAuth2Client) {
|
|
||||||
$app = $this->getApp();
|
|
||||||
$client = $this->getClient();
|
|
||||||
$this->oAuth2Client = new OAuth2Client($app, $client, $this->defaultGraphVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->oAuth2Client;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the last response returned from Graph.
|
|
||||||
*
|
|
||||||
* @return FacebookResponse|FacebookBatchResponse|null
|
|
||||||
*/
|
|
||||||
public function getLastResponse()
|
|
||||||
{
|
|
||||||
return $this->lastResponse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the URL detection handler.
|
|
||||||
*
|
|
||||||
* @return UrlDetectionInterface
|
|
||||||
*/
|
|
||||||
public function getUrlDetectionHandler()
|
|
||||||
{
|
|
||||||
if (!$this->urlDetectionHandler instanceof UrlDetectionInterface) {
|
|
||||||
$this->urlDetectionHandler = new FacebookUrlDetectionHandler();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->urlDetectionHandler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the default AccessToken entity.
|
|
||||||
*
|
|
||||||
* @return AccessToken|null
|
|
||||||
*/
|
|
||||||
public function getDefaultAccessToken()
|
|
||||||
{
|
|
||||||
return $this->defaultAccessToken;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the default access token to use with requests.
|
|
||||||
*
|
|
||||||
* @param AccessToken|string $accessToken The access token to save.
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException
|
|
||||||
*/
|
|
||||||
public function setDefaultAccessToken($accessToken)
|
|
||||||
{
|
|
||||||
if (is_string($accessToken)) {
|
|
||||||
$this->defaultAccessToken = new AccessToken($accessToken);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($accessToken instanceof AccessToken) {
|
|
||||||
$this->defaultAccessToken = $accessToken;
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new \InvalidArgumentException('The default access token must be of type "string" or Facebook\AccessToken');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the default Graph version.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getDefaultGraphVersion()
|
|
||||||
{
|
|
||||||
return $this->defaultGraphVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the redirect login helper.
|
|
||||||
*
|
|
||||||
* @return FacebookRedirectLoginHelper
|
|
||||||
*/
|
|
||||||
public function getRedirectLoginHelper()
|
|
||||||
{
|
|
||||||
return new FacebookRedirectLoginHelper(
|
|
||||||
$this->getOAuth2Client(),
|
|
||||||
$this->persistentDataHandler,
|
|
||||||
$this->urlDetectionHandler,
|
|
||||||
$this->pseudoRandomStringGenerator
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the JavaScript helper.
|
|
||||||
*
|
|
||||||
* @return FacebookJavaScriptHelper
|
|
||||||
*/
|
|
||||||
public function getJavaScriptHelper()
|
|
||||||
{
|
|
||||||
return new FacebookJavaScriptHelper($this->app, $this->client, $this->defaultGraphVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the canvas helper.
|
|
||||||
*
|
|
||||||
* @return FacebookCanvasHelper
|
|
||||||
*/
|
|
||||||
public function getCanvasHelper()
|
|
||||||
{
|
|
||||||
return new FacebookCanvasHelper($this->app, $this->client, $this->defaultGraphVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the page tab helper.
|
|
||||||
*
|
|
||||||
* @return FacebookPageTabHelper
|
|
||||||
*/
|
|
||||||
public function getPageTabHelper()
|
|
||||||
{
|
|
||||||
return new FacebookPageTabHelper($this->app, $this->client, $this->defaultGraphVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a GET request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param string $endpoint
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $eTag
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function get($endpoint, $accessToken = null, $eTag = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
return $this->sendRequest(
|
|
||||||
'GET',
|
|
||||||
$endpoint,
|
|
||||||
$params = [],
|
|
||||||
$accessToken,
|
|
||||||
$eTag,
|
|
||||||
$graphVersion
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a POST request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param string $endpoint
|
|
||||||
* @param array $params
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $eTag
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function post($endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
return $this->sendRequest(
|
|
||||||
'POST',
|
|
||||||
$endpoint,
|
|
||||||
$params,
|
|
||||||
$accessToken,
|
|
||||||
$eTag,
|
|
||||||
$graphVersion
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a DELETE request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param string $endpoint
|
|
||||||
* @param array $params
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $eTag
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function delete($endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
return $this->sendRequest(
|
|
||||||
'DELETE',
|
|
||||||
$endpoint,
|
|
||||||
$params,
|
|
||||||
$accessToken,
|
|
||||||
$eTag,
|
|
||||||
$graphVersion
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a request to Graph for the next page of results.
|
|
||||||
*
|
|
||||||
* @param GraphEdge $graphEdge The GraphEdge to paginate over.
|
|
||||||
*
|
|
||||||
* @return GraphEdge|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function next(GraphEdge $graphEdge)
|
|
||||||
{
|
|
||||||
return $this->getPaginationResults($graphEdge, 'next');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a request to Graph for the previous page of results.
|
|
||||||
*
|
|
||||||
* @param GraphEdge $graphEdge The GraphEdge to paginate over.
|
|
||||||
*
|
|
||||||
* @return GraphEdge|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function previous(GraphEdge $graphEdge)
|
|
||||||
{
|
|
||||||
return $this->getPaginationResults($graphEdge, 'previous');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a request to Graph for the next page of results.
|
|
||||||
*
|
|
||||||
* @param GraphEdge $graphEdge The GraphEdge to paginate over.
|
|
||||||
* @param string $direction The direction of the pagination: next|previous.
|
|
||||||
*
|
|
||||||
* @return GraphEdge|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getPaginationResults(GraphEdge $graphEdge, $direction)
|
|
||||||
{
|
|
||||||
$paginationRequest = $graphEdge->getPaginationRequest($direction);
|
|
||||||
if (!$paginationRequest) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->lastResponse = $this->client->sendRequest($paginationRequest);
|
|
||||||
|
|
||||||
// Keep the same GraphNode subclass
|
|
||||||
$subClassName = $graphEdge->getSubClassName();
|
|
||||||
$graphEdge = $this->lastResponse->getGraphEdge($subClassName, false);
|
|
||||||
|
|
||||||
return count($graphEdge) > 0 ? $graphEdge : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param string $method
|
|
||||||
* @param string $endpoint
|
|
||||||
* @param array $params
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $eTag
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function sendRequest($method, $endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
$accessToken = $accessToken ?: $this->defaultAccessToken;
|
|
||||||
$graphVersion = $graphVersion ?: $this->defaultGraphVersion;
|
|
||||||
$request = $this->request($method, $endpoint, $params, $accessToken, $eTag, $graphVersion);
|
|
||||||
|
|
||||||
return $this->lastResponse = $this->client->sendRequest($request);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a batched request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param array $requests
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*
|
|
||||||
* @return FacebookBatchResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function sendBatchRequest(array $requests, $accessToken = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
$accessToken = $accessToken ?: $this->defaultAccessToken;
|
|
||||||
$graphVersion = $graphVersion ?: $this->defaultGraphVersion;
|
|
||||||
$batchRequest = new FacebookBatchRequest(
|
|
||||||
$this->app,
|
|
||||||
$requests,
|
|
||||||
$accessToken,
|
|
||||||
$graphVersion
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->lastResponse = $this->client->sendBatchRequest($batchRequest);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiates a new FacebookRequest entity.
|
|
||||||
*
|
|
||||||
* @param string $method
|
|
||||||
* @param string $endpoint
|
|
||||||
* @param array $params
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $eTag
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function request($method, $endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
$accessToken = $accessToken ?: $this->defaultAccessToken;
|
|
||||||
$graphVersion = $graphVersion ?: $this->defaultGraphVersion;
|
|
||||||
|
|
||||||
return new FacebookRequest(
|
|
||||||
$this->app,
|
|
||||||
$accessToken,
|
|
||||||
$method,
|
|
||||||
$endpoint,
|
|
||||||
$params,
|
|
||||||
$eTag,
|
|
||||||
$graphVersion
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Factory to create FacebookFile's.
|
|
||||||
*
|
|
||||||
* @param string $pathToFile
|
|
||||||
*
|
|
||||||
* @return FacebookFile
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function fileToUpload($pathToFile)
|
|
||||||
{
|
|
||||||
return new FacebookFile($pathToFile);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Factory to create FacebookVideo's.
|
|
||||||
*
|
|
||||||
* @param string $pathToFile
|
|
||||||
*
|
|
||||||
* @return FacebookVideo
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function videoToUpload($pathToFile)
|
|
||||||
{
|
|
||||||
return new FacebookVideo($pathToFile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use Facebook\Authentication\AccessToken;
|
|
||||||
|
|
||||||
class FacebookApp implements \Serializable
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var string The app ID.
|
|
||||||
*/
|
|
||||||
protected $id;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string The app secret.
|
|
||||||
*/
|
|
||||||
protected $secret;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $id
|
|
||||||
* @param string $secret
|
|
||||||
*/
|
|
||||||
public function __construct($id, $secret)
|
|
||||||
{
|
|
||||||
$this->id = $id;
|
|
||||||
$this->secret = $secret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the app ID.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->id;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the app secret.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getSecret()
|
|
||||||
{
|
|
||||||
return $this->secret;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an app access token.
|
|
||||||
*
|
|
||||||
* @return AccessToken
|
|
||||||
*/
|
|
||||||
public function getAccessToken()
|
|
||||||
{
|
|
||||||
return new AccessToken($this->id . '|' . $this->secret);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Serializes the FacebookApp entity as a string.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function serialize()
|
|
||||||
{
|
|
||||||
return serialize([$this->id, $this->secret]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Unserializes a string as a FacebookApp entity.
|
|
||||||
*
|
|
||||||
* @param string $serialized
|
|
||||||
*/
|
|
||||||
public function unserialize($serialized)
|
|
||||||
{
|
|
||||||
list($id, $secret) = unserialize($serialized);
|
|
||||||
|
|
||||||
$this->__construct($id, $secret);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,303 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use ArrayIterator;
|
|
||||||
use IteratorAggregate;
|
|
||||||
use ArrayAccess;
|
|
||||||
use Facebook\Authentication\AccessToken;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class BatchRequest
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookBatchRequest extends FacebookRequest implements IteratorAggregate, ArrayAccess
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array An array of FacebookRequest entities to send.
|
|
||||||
*/
|
|
||||||
protected $requests;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array An array of files to upload.
|
|
||||||
*/
|
|
||||||
protected $attachedFiles;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new Request entity.
|
|
||||||
*
|
|
||||||
* @param FacebookApp|null $app
|
|
||||||
* @param array $requests
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookApp $app = null, array $requests = [], $accessToken = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
parent::__construct($app, $accessToken, 'POST', '', [], null, $graphVersion);
|
|
||||||
|
|
||||||
$this->add($requests);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A a new request to the array.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest|array $request
|
|
||||||
* @param string|null $name
|
|
||||||
*
|
|
||||||
* @return FacebookBatchRequest
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException
|
|
||||||
*/
|
|
||||||
public function add($request, $name = null)
|
|
||||||
{
|
|
||||||
if (is_array($request)) {
|
|
||||||
foreach ($request as $key => $req) {
|
|
||||||
$this->add($req, $key);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$request instanceof FacebookRequest) {
|
|
||||||
throw new \InvalidArgumentException('Argument for add() must be of type array or FacebookRequest.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->addFallbackDefaults($request);
|
|
||||||
$requestToAdd = [
|
|
||||||
'name' => $name,
|
|
||||||
'request' => $request,
|
|
||||||
];
|
|
||||||
|
|
||||||
// File uploads
|
|
||||||
$attachedFiles = $this->extractFileAttachments($request);
|
|
||||||
if ($attachedFiles) {
|
|
||||||
$requestToAdd['attached_files'] = $attachedFiles;
|
|
||||||
}
|
|
||||||
$this->requests[] = $requestToAdd;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures that the FacebookApp and access token fall back when missing.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function addFallbackDefaults(FacebookRequest $request)
|
|
||||||
{
|
|
||||||
if (!$request->getApp()) {
|
|
||||||
$app = $this->getApp();
|
|
||||||
if (!$app) {
|
|
||||||
throw new FacebookSDKException('Missing FacebookApp on FacebookRequest and no fallback detected on FacebookBatchRequest.');
|
|
||||||
}
|
|
||||||
$request->setApp($app);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$request->getAccessToken()) {
|
|
||||||
$accessToken = $this->getAccessToken();
|
|
||||||
if (!$accessToken) {
|
|
||||||
throw new FacebookSDKException('Missing access token on FacebookRequest and no fallback detected on FacebookBatchRequest.');
|
|
||||||
}
|
|
||||||
$request->setAccessToken($accessToken);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Extracts the files from a request.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function extractFileAttachments(FacebookRequest $request)
|
|
||||||
{
|
|
||||||
if (!$request->containsFileUploads()) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$files = $request->getFiles();
|
|
||||||
$fileNames = [];
|
|
||||||
foreach ($files as $file) {
|
|
||||||
$fileName = uniqid();
|
|
||||||
$this->addFile($fileName, $file);
|
|
||||||
$fileNames[] = $fileName;
|
|
||||||
}
|
|
||||||
|
|
||||||
$request->resetFiles();
|
|
||||||
|
|
||||||
// @TODO Does Graph support multiple uploads on one endpoint?
|
|
||||||
return implode(',', $fileNames);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the FacebookRequest entities.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getRequests()
|
|
||||||
{
|
|
||||||
return $this->requests;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prepares the requests to be sent as a batch request.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function prepareRequestsForBatch()
|
|
||||||
{
|
|
||||||
$this->validateBatchRequestCount();
|
|
||||||
|
|
||||||
$params = [
|
|
||||||
'batch' => $this->convertRequestsToJson(),
|
|
||||||
'include_headers' => true,
|
|
||||||
];
|
|
||||||
$this->setParams($params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts the requests into a JSON(P) string.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function convertRequestsToJson()
|
|
||||||
{
|
|
||||||
$requests = [];
|
|
||||||
foreach ($this->requests as $request) {
|
|
||||||
$attachedFiles = isset($request['attached_files']) ? $request['attached_files'] : null;
|
|
||||||
$requests[] = $this->requestEntityToBatchArray($request['request'], $request['name'], $attachedFiles);
|
|
||||||
}
|
|
||||||
|
|
||||||
return json_encode($requests);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate the request count before sending them as a batch.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateBatchRequestCount()
|
|
||||||
{
|
|
||||||
$batchCount = count($this->requests);
|
|
||||||
if ($batchCount === 0) {
|
|
||||||
throw new FacebookSDKException('There are no batch requests to send.');
|
|
||||||
} elseif ($batchCount > 50) {
|
|
||||||
// Per: https://developers.facebook.com/docs/graph-api/making-multiple-requests#limits
|
|
||||||
throw new FacebookSDKException('You cannot send more than 50 batch requests at a time.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Converts a Request entity into an array that is batch-friendly.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request The request entity to convert.
|
|
||||||
* @param string|null $requestName The name of the request.
|
|
||||||
* @param string|null $attachedFiles Names of files associated with the request.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function requestEntityToBatchArray(FacebookRequest $request, $requestName = null, $attachedFiles = null)
|
|
||||||
{
|
|
||||||
$compiledHeaders = [];
|
|
||||||
$headers = $request->getHeaders();
|
|
||||||
foreach ($headers as $name => $value) {
|
|
||||||
$compiledHeaders[] = $name . ': ' . $value;
|
|
||||||
}
|
|
||||||
|
|
||||||
$batch = [
|
|
||||||
'headers' => $compiledHeaders,
|
|
||||||
'method' => $request->getMethod(),
|
|
||||||
'relative_url' => $request->getUrl(),
|
|
||||||
];
|
|
||||||
|
|
||||||
// Since file uploads are moved to the root request of a batch request,
|
|
||||||
// the child requests will always be URL-encoded.
|
|
||||||
$body = $request->getUrlEncodedBody()->getBody();
|
|
||||||
if ($body) {
|
|
||||||
$batch['body'] = $body;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($requestName)) {
|
|
||||||
$batch['name'] = $requestName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($attachedFiles)) {
|
|
||||||
$batch['attached_files'] = $attachedFiles;
|
|
||||||
}
|
|
||||||
|
|
||||||
// @TODO Add support for "omit_response_on_success"
|
|
||||||
// @TODO Add support for "depends_on"
|
|
||||||
// @TODO Add support for JSONP with "callback"
|
|
||||||
|
|
||||||
return $batch;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an iterator for the items.
|
|
||||||
*
|
|
||||||
* @return ArrayIterator
|
|
||||||
*/
|
|
||||||
public function getIterator()
|
|
||||||
{
|
|
||||||
return new ArrayIterator($this->requests);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetSet($offset, $value)
|
|
||||||
{
|
|
||||||
$this->add($value, $offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetExists($offset)
|
|
||||||
{
|
|
||||||
return isset($this->requests[$offset]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetUnset($offset)
|
|
||||||
{
|
|
||||||
unset($this->requests[$offset]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetGet($offset)
|
|
||||||
{
|
|
||||||
return isset($this->requests[$offset]) ? $this->requests[$offset] : null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,154 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use ArrayIterator;
|
|
||||||
use IteratorAggregate;
|
|
||||||
use ArrayAccess;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookBatchResponse
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookBatchResponse extends FacebookResponse implements IteratorAggregate, ArrayAccess
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var FacebookBatchRequest The original entity that made the batch request.
|
|
||||||
*/
|
|
||||||
protected $batchRequest;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array An array of FacebookResponse entities.
|
|
||||||
*/
|
|
||||||
protected $responses = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new Response entity.
|
|
||||||
*
|
|
||||||
* @param FacebookBatchRequest $batchRequest
|
|
||||||
* @param FacebookResponse $response
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookBatchRequest $batchRequest, FacebookResponse $response)
|
|
||||||
{
|
|
||||||
$this->batchRequest = $batchRequest;
|
|
||||||
|
|
||||||
$request = $response->getRequest();
|
|
||||||
$body = $response->getBody();
|
|
||||||
$httpStatusCode = $response->getHttpStatusCode();
|
|
||||||
$headers = $response->getHeaders();
|
|
||||||
parent::__construct($request, $body, $httpStatusCode, $headers);
|
|
||||||
|
|
||||||
$responses = $response->getDecodedBody();
|
|
||||||
$this->setResponses($responses);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an array of FacebookResponse entities.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getResponses()
|
|
||||||
{
|
|
||||||
return $this->responses;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The main batch response will be an array of requests so
|
|
||||||
* we need to iterate over all the responses.
|
|
||||||
*
|
|
||||||
* @param array $responses
|
|
||||||
*/
|
|
||||||
public function setResponses(array $responses)
|
|
||||||
{
|
|
||||||
$this->responses = [];
|
|
||||||
|
|
||||||
foreach ($responses as $key => $graphResponse) {
|
|
||||||
$this->addResponse($key, $graphResponse);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a response to the list.
|
|
||||||
*
|
|
||||||
* @param int $key
|
|
||||||
* @param array|null $response
|
|
||||||
*/
|
|
||||||
public function addResponse($key, $response)
|
|
||||||
{
|
|
||||||
$originalRequestName = isset($this->batchRequest[$key]['name']) ? $this->batchRequest[$key]['name'] : $key;
|
|
||||||
$originalRequest = isset($this->batchRequest[$key]['request']) ? $this->batchRequest[$key]['request'] : null;
|
|
||||||
|
|
||||||
$httpResponseBody = isset($response['body']) ? $response['body'] : null;
|
|
||||||
$httpResponseCode = isset($response['code']) ? $response['code'] : null;
|
|
||||||
$httpResponseHeaders = isset($response['headers']) ? $response['headers'] : [];
|
|
||||||
|
|
||||||
$this->responses[$originalRequestName] = new FacebookResponse(
|
|
||||||
$originalRequest,
|
|
||||||
$httpResponseBody,
|
|
||||||
$httpResponseCode,
|
|
||||||
$httpResponseHeaders
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function getIterator()
|
|
||||||
{
|
|
||||||
return new ArrayIterator($this->responses);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetSet($offset, $value)
|
|
||||||
{
|
|
||||||
$this->addResponse($offset, $value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetExists($offset)
|
|
||||||
{
|
|
||||||
return isset($this->responses[$offset]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetUnset($offset)
|
|
||||||
{
|
|
||||||
unset($this->responses[$offset]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function offsetGet($offset)
|
|
||||||
{
|
|
||||||
return isset($this->responses[$offset]) ? $this->responses[$offset] : null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,250 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use Facebook\HttpClients\FacebookHttpClientInterface;
|
|
||||||
use Facebook\HttpClients\FacebookCurlHttpClient;
|
|
||||||
use Facebook\HttpClients\FacebookStreamHttpClient;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookClient
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookClient
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @const string Production Graph API URL.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_URL = 'https://graph.facebook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string Graph API URL for video uploads.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_VIDEO_URL = 'https://graph-video.facebook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string Beta Graph API URL.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_URL_BETA = 'https://graph.beta.facebook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string Beta Graph API URL for video uploads.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_VIDEO_URL_BETA = 'https://graph-video.beta.facebook.com';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const int The timeout in seconds for a normal request.
|
|
||||||
*/
|
|
||||||
const DEFAULT_REQUEST_TIMEOUT = 60;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const int The timeout in seconds for a request that contains file uploads.
|
|
||||||
*/
|
|
||||||
const DEFAULT_FILE_UPLOAD_REQUEST_TIMEOUT = 3600;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const int The timeout in seconds for a request that contains video uploads.
|
|
||||||
*/
|
|
||||||
const DEFAULT_VIDEO_UPLOAD_REQUEST_TIMEOUT = 7200;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var bool Toggle to use Graph beta url.
|
|
||||||
*/
|
|
||||||
protected $enableBetaMode = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookHttpClientInterface HTTP client handler.
|
|
||||||
*/
|
|
||||||
protected $httpClientHandler;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var int The number of calls that have been made to Graph.
|
|
||||||
*/
|
|
||||||
public static $requestCount = 0;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiates a new FacebookClient object.
|
|
||||||
*
|
|
||||||
* @param FacebookHttpClientInterface|null $httpClientHandler
|
|
||||||
* @param boolean $enableBeta
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookHttpClientInterface $httpClientHandler = null, $enableBeta = false)
|
|
||||||
{
|
|
||||||
$this->httpClientHandler = $httpClientHandler ?: $this->detectHttpClientHandler();
|
|
||||||
$this->enableBetaMode = $enableBeta;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the HTTP client handler.
|
|
||||||
*
|
|
||||||
* @param FacebookHttpClientInterface $httpClientHandler
|
|
||||||
*/
|
|
||||||
public function setHttpClientHandler(FacebookHttpClientInterface $httpClientHandler)
|
|
||||||
{
|
|
||||||
$this->httpClientHandler = $httpClientHandler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the HTTP client handler.
|
|
||||||
*
|
|
||||||
* @return FacebookHttpClientInterface
|
|
||||||
*/
|
|
||||||
public function getHttpClientHandler()
|
|
||||||
{
|
|
||||||
return $this->httpClientHandler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Detects which HTTP client handler to use.
|
|
||||||
*
|
|
||||||
* @return FacebookHttpClientInterface
|
|
||||||
*/
|
|
||||||
public function detectHttpClientHandler()
|
|
||||||
{
|
|
||||||
return function_exists('curl_init') ? new FacebookCurlHttpClient() : new FacebookStreamHttpClient();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Toggle beta mode.
|
|
||||||
*
|
|
||||||
* @param boolean $betaMode
|
|
||||||
*/
|
|
||||||
public function enableBetaMode($betaMode = true)
|
|
||||||
{
|
|
||||||
$this->enableBetaMode = $betaMode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the base Graph URL.
|
|
||||||
*
|
|
||||||
* @param boolean $postToVideoUrl Post to the video API if videos are being uploaded.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getBaseGraphUrl($postToVideoUrl = false)
|
|
||||||
{
|
|
||||||
if ($postToVideoUrl) {
|
|
||||||
return $this->enableBetaMode ? static::BASE_GRAPH_VIDEO_URL_BETA : static::BASE_GRAPH_VIDEO_URL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->enableBetaMode ? static::BASE_GRAPH_URL_BETA : static::BASE_GRAPH_URL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prepares the request for sending to the client handler.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function prepareRequestMessage(FacebookRequest $request)
|
|
||||||
{
|
|
||||||
$postToVideoUrl = $request->containsVideoUploads();
|
|
||||||
$url = $this->getBaseGraphUrl($postToVideoUrl) . $request->getUrl();
|
|
||||||
|
|
||||||
// If we're sending files they should be sent as multipart/form-data
|
|
||||||
if ($request->containsFileUploads()) {
|
|
||||||
$requestBody = $request->getMultipartBody();
|
|
||||||
$request->setHeaders([
|
|
||||||
'Content-Type' => 'multipart/form-data; boundary=' . $requestBody->getBoundary(),
|
|
||||||
]);
|
|
||||||
} else {
|
|
||||||
$requestBody = $request->getUrlEncodedBody();
|
|
||||||
$request->setHeaders([
|
|
||||||
'Content-Type' => 'application/x-www-form-urlencoded',
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
|
||||||
$url,
|
|
||||||
$request->getMethod(),
|
|
||||||
$request->getHeaders(),
|
|
||||||
$requestBody->getBody(),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Makes the request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request
|
|
||||||
*
|
|
||||||
* @return FacebookResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function sendRequest(FacebookRequest $request)
|
|
||||||
{
|
|
||||||
if (get_class($request) === 'FacebookRequest') {
|
|
||||||
$request->validateAccessToken();
|
|
||||||
}
|
|
||||||
|
|
||||||
list($url, $method, $headers, $body) = $this->prepareRequestMessage($request);
|
|
||||||
|
|
||||||
// Since file uploads can take a while, we need to give more time for uploads
|
|
||||||
$timeOut = static::DEFAULT_REQUEST_TIMEOUT;
|
|
||||||
if ($request->containsFileUploads()) {
|
|
||||||
$timeOut = static::DEFAULT_FILE_UPLOAD_REQUEST_TIMEOUT;
|
|
||||||
} elseif ($request->containsVideoUploads()) {
|
|
||||||
$timeOut = static::DEFAULT_VIDEO_UPLOAD_REQUEST_TIMEOUT;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Should throw `FacebookSDKException` exception on HTTP client error.
|
|
||||||
// Don't catch to allow it to bubble up.
|
|
||||||
$rawResponse = $this->httpClientHandler->send($url, $method, $body, $headers, $timeOut);
|
|
||||||
|
|
||||||
static::$requestCount++;
|
|
||||||
|
|
||||||
$returnResponse = new FacebookResponse(
|
|
||||||
$request,
|
|
||||||
$rawResponse->getBody(),
|
|
||||||
$rawResponse->getHttpResponseCode(),
|
|
||||||
$rawResponse->getHeaders()
|
|
||||||
);
|
|
||||||
|
|
||||||
if ($returnResponse->isError()) {
|
|
||||||
throw $returnResponse->getThrownException();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $returnResponse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Makes a batched request to Graph and returns the result.
|
|
||||||
*
|
|
||||||
* @param FacebookBatchRequest $request
|
|
||||||
*
|
|
||||||
* @return FacebookBatchResponse
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function sendBatchRequest(FacebookBatchRequest $request)
|
|
||||||
{
|
|
||||||
$request->prepareRequestsForBatch();
|
|
||||||
$facebookResponse = $this->sendRequest($request);
|
|
||||||
|
|
||||||
return new FacebookBatchResponse($request, $facebookResponse);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,536 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use Facebook\Authentication\AccessToken;
|
|
||||||
use Facebook\Url\FacebookUrlManipulator;
|
|
||||||
use Facebook\FileUpload\FacebookFile;
|
|
||||||
use Facebook\FileUpload\FacebookVideo;
|
|
||||||
use Facebook\Http\RequestBodyMultipart;
|
|
||||||
use Facebook\Http\RequestBodyUrlEncoded;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Request
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookRequest
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var FacebookApp The Facebook app entity.
|
|
||||||
*/
|
|
||||||
protected $app;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string|null The access token to use for this request.
|
|
||||||
*/
|
|
||||||
protected $accessToken;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string The HTTP method for this request.
|
|
||||||
*/
|
|
||||||
protected $method;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string The Graph endpoint for this request.
|
|
||||||
*/
|
|
||||||
protected $endpoint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array The headers to send with this request.
|
|
||||||
*/
|
|
||||||
protected $headers = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array The parameters to send with this request.
|
|
||||||
*/
|
|
||||||
protected $params = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array The files to send with this request.
|
|
||||||
*/
|
|
||||||
protected $files = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string ETag to send with this request.
|
|
||||||
*/
|
|
||||||
protected $eTag;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string Graph version to use for this request.
|
|
||||||
*/
|
|
||||||
protected $graphVersion;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new Request entity.
|
|
||||||
*
|
|
||||||
* @param FacebookApp|null $app
|
|
||||||
* @param AccessToken|string|null $accessToken
|
|
||||||
* @param string|null $method
|
|
||||||
* @param string|null $endpoint
|
|
||||||
* @param array|null $params
|
|
||||||
* @param string|null $eTag
|
|
||||||
* @param string|null $graphVersion
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookApp $app = null, $accessToken = null, $method = null, $endpoint = null, array $params = [], $eTag = null, $graphVersion = null)
|
|
||||||
{
|
|
||||||
$this->setApp($app);
|
|
||||||
$this->setAccessToken($accessToken);
|
|
||||||
$this->setMethod($method);
|
|
||||||
$this->setEndpoint($endpoint);
|
|
||||||
$this->setParams($params);
|
|
||||||
$this->setETag($eTag);
|
|
||||||
$this->graphVersion = $graphVersion ?: Facebook::DEFAULT_GRAPH_VERSION;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the access token for this request.
|
|
||||||
*
|
|
||||||
* @param AccessToken|string
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*/
|
|
||||||
public function setAccessToken($accessToken)
|
|
||||||
{
|
|
||||||
$this->accessToken = $accessToken;
|
|
||||||
if ($accessToken instanceof AccessToken) {
|
|
||||||
$this->accessToken = $accessToken->getValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the access token with one harvested from a URL or POST params.
|
|
||||||
*
|
|
||||||
* @param string $accessToken The access token.
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function setAccessTokenFromParams($accessToken)
|
|
||||||
{
|
|
||||||
$existingAccessToken = $this->getAccessToken();
|
|
||||||
if (!$existingAccessToken) {
|
|
||||||
$this->setAccessToken($accessToken);
|
|
||||||
} elseif ($accessToken !== $existingAccessToken) {
|
|
||||||
throw new FacebookSDKException('Access token mismatch. The access token provided in the FacebookRequest and the one provided in the URL or POST params do not match.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the access token for this request.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAccessToken()
|
|
||||||
{
|
|
||||||
return $this->accessToken;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the access token for this request an an AccessToken entity.
|
|
||||||
*
|
|
||||||
* @return AccessToken|null
|
|
||||||
*/
|
|
||||||
public function getAccessTokenEntity()
|
|
||||||
{
|
|
||||||
return $this->accessToken ? new AccessToken($this->accessToken) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the FacebookApp entity used for this request.
|
|
||||||
*
|
|
||||||
* @param FacebookApp|null $app
|
|
||||||
*/
|
|
||||||
public function setApp(FacebookApp $app = null)
|
|
||||||
{
|
|
||||||
$this->app = $app;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the FacebookApp entity used for this request.
|
|
||||||
*
|
|
||||||
* @return FacebookApp
|
|
||||||
*/
|
|
||||||
public function getApp()
|
|
||||||
{
|
|
||||||
return $this->app;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate an app secret proof to sign this request.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAppSecretProof()
|
|
||||||
{
|
|
||||||
if (!$accessTokenEntity = $this->getAccessTokenEntity()) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $accessTokenEntity->getAppSecretProof($this->app->getSecret());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate that an access token exists for this request.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateAccessToken()
|
|
||||||
{
|
|
||||||
$accessToken = $this->getAccessToken();
|
|
||||||
if (!$accessToken) {
|
|
||||||
throw new FacebookSDKException('You must provide an access token.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the HTTP method for this request.
|
|
||||||
*
|
|
||||||
* @param string
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*/
|
|
||||||
public function setMethod($method)
|
|
||||||
{
|
|
||||||
$this->method = strtoupper($method);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the HTTP method for this request.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getMethod()
|
|
||||||
{
|
|
||||||
return $this->method;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate that the HTTP method is set.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateMethod()
|
|
||||||
{
|
|
||||||
if (!$this->method) {
|
|
||||||
throw new FacebookSDKException('HTTP method not specified.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!in_array($this->method, ['GET', 'POST', 'DELETE'])) {
|
|
||||||
throw new FacebookSDKException('Invalid HTTP method specified.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the endpoint for this request.
|
|
||||||
*
|
|
||||||
* @param string
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function setEndpoint($endpoint)
|
|
||||||
{
|
|
||||||
// Harvest the access token from the endpoint to keep things in sync
|
|
||||||
$params = FacebookUrlManipulator::getParamsAsArray($endpoint);
|
|
||||||
if (isset($params['access_token'])) {
|
|
||||||
$this->setAccessTokenFromParams($params['access_token']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean the token & app secret proof from the endpoint.
|
|
||||||
$filterParams = ['access_token', 'appsecret_proof'];
|
|
||||||
$this->endpoint = FacebookUrlManipulator::removeParamsFromUrl($endpoint, $filterParams);
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the HTTP method for this request.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getEndpoint()
|
|
||||||
{
|
|
||||||
// For batch requests, this will be empty
|
|
||||||
return $this->endpoint;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate and return the headers for this request.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getHeaders()
|
|
||||||
{
|
|
||||||
$headers = static::getDefaultHeaders();
|
|
||||||
|
|
||||||
if ($this->eTag) {
|
|
||||||
$headers['If-None-Match'] = $this->eTag;
|
|
||||||
}
|
|
||||||
|
|
||||||
return array_merge($this->headers, $headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the headers for this request.
|
|
||||||
*
|
|
||||||
* @param array $headers
|
|
||||||
*/
|
|
||||||
public function setHeaders(array $headers)
|
|
||||||
{
|
|
||||||
$this->headers = array_merge($this->headers, $headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the eTag value.
|
|
||||||
*
|
|
||||||
* @param string $eTag
|
|
||||||
*/
|
|
||||||
public function setETag($eTag)
|
|
||||||
{
|
|
||||||
$this->eTag = $eTag;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the params for this request.
|
|
||||||
*
|
|
||||||
* @param array $params
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function setParams(array $params = [])
|
|
||||||
{
|
|
||||||
if (isset($params['access_token'])) {
|
|
||||||
$this->setAccessTokenFromParams($params['access_token']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Don't let these buggers slip in.
|
|
||||||
unset($params['access_token'], $params['appsecret_proof']);
|
|
||||||
|
|
||||||
// @TODO Refactor code above with this
|
|
||||||
//$params = $this->sanitizeAuthenticationParams($params);
|
|
||||||
$params = $this->sanitizeFileParams($params);
|
|
||||||
$this->dangerouslySetParams($params);
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the params for this request without filtering them first.
|
|
||||||
*
|
|
||||||
* @param array $params
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*/
|
|
||||||
public function dangerouslySetParams(array $params = [])
|
|
||||||
{
|
|
||||||
$this->params = array_merge($this->params, $params);
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Iterate over the params and pull out the file uploads.
|
|
||||||
*
|
|
||||||
* @param array $params
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function sanitizeFileParams(array $params)
|
|
||||||
{
|
|
||||||
foreach ($params as $key => $value) {
|
|
||||||
if ($value instanceof FacebookFile) {
|
|
||||||
$this->addFile($key, $value);
|
|
||||||
unset($params[$key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $params;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a file to be uploaded.
|
|
||||||
*
|
|
||||||
* @param string $key
|
|
||||||
* @param FacebookFile $file
|
|
||||||
*/
|
|
||||||
public function addFile($key, FacebookFile $file)
|
|
||||||
{
|
|
||||||
$this->files[$key] = $file;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes all the files from the upload queue.
|
|
||||||
*/
|
|
||||||
public function resetFiles()
|
|
||||||
{
|
|
||||||
$this->files = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the list of files to be uploaded.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getFiles()
|
|
||||||
{
|
|
||||||
return $this->files;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Let's us know if there is a file upload with this request.
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function containsFileUploads()
|
|
||||||
{
|
|
||||||
return !empty($this->files);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Let's us know if there is a video upload with this request.
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function containsVideoUploads()
|
|
||||||
{
|
|
||||||
foreach ($this->files as $file) {
|
|
||||||
if ($file instanceof FacebookVideo) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the body of the request as multipart/form-data.
|
|
||||||
*
|
|
||||||
* @return RequestBodyMultipart
|
|
||||||
*/
|
|
||||||
public function getMultipartBody()
|
|
||||||
{
|
|
||||||
$params = $this->getPostParams();
|
|
||||||
|
|
||||||
return new RequestBodyMultipart($params, $this->files);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the body of the request as URL-encoded.
|
|
||||||
*
|
|
||||||
* @return RequestBodyUrlEncoded
|
|
||||||
*/
|
|
||||||
public function getUrlEncodedBody()
|
|
||||||
{
|
|
||||||
$params = $this->getPostParams();
|
|
||||||
|
|
||||||
return new RequestBodyUrlEncoded($params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate and return the params for this request.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getParams()
|
|
||||||
{
|
|
||||||
$params = $this->params;
|
|
||||||
|
|
||||||
$accessToken = $this->getAccessToken();
|
|
||||||
if ($accessToken) {
|
|
||||||
$params['access_token'] = $accessToken;
|
|
||||||
$params['appsecret_proof'] = $this->getAppSecretProof();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $params;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Only return params on POST requests.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getPostParams()
|
|
||||||
{
|
|
||||||
if ($this->getMethod() === 'POST') {
|
|
||||||
return $this->getParams();
|
|
||||||
}
|
|
||||||
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The graph version used for this request.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getGraphVersion()
|
|
||||||
{
|
|
||||||
return $this->graphVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate and return the URL for this request.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getUrl()
|
|
||||||
{
|
|
||||||
$this->validateMethod();
|
|
||||||
|
|
||||||
$graphVersion = FacebookUrlManipulator::forceSlashPrefix($this->graphVersion);
|
|
||||||
$endpoint = FacebookUrlManipulator::forceSlashPrefix($this->getEndpoint());
|
|
||||||
|
|
||||||
$url = $graphVersion . $endpoint;
|
|
||||||
|
|
||||||
if ($this->getMethod() !== 'POST') {
|
|
||||||
$params = $this->getParams();
|
|
||||||
$url = FacebookUrlManipulator::appendParamsToUrl($url, $params);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $url;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the default headers that every request should use.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static function getDefaultHeaders()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'User-Agent' => 'fb-php-' . Facebook::VERSION,
|
|
||||||
'Accept-Encoding' => '*',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,410 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook;
|
|
||||||
|
|
||||||
use Facebook\GraphNodes\GraphNodeFactory;
|
|
||||||
use Facebook\Exceptions\FacebookResponseException;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookResponse
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookResponse
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var int The HTTP status code response from Graph.
|
|
||||||
*/
|
|
||||||
protected $httpStatusCode;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array The headers returned from Graph.
|
|
||||||
*/
|
|
||||||
protected $headers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string The raw body of the response from Graph.
|
|
||||||
*/
|
|
||||||
protected $body;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array The decoded body of the Graph response.
|
|
||||||
*/
|
|
||||||
protected $decodedBody = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookRequest The original request that returned this response.
|
|
||||||
*/
|
|
||||||
protected $request;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookSDKException The exception thrown by this request.
|
|
||||||
*/
|
|
||||||
protected $thrownException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new Response entity.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request
|
|
||||||
* @param string|null $body
|
|
||||||
* @param int|null $httpStatusCode
|
|
||||||
* @param array|null $headers
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookRequest $request, $body = null, $httpStatusCode = null, array $headers = [])
|
|
||||||
{
|
|
||||||
$this->request = $request;
|
|
||||||
$this->body = $body;
|
|
||||||
$this->httpStatusCode = $httpStatusCode;
|
|
||||||
$this->headers = $headers;
|
|
||||||
|
|
||||||
$this->decodeBody();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the original request that returned this response.
|
|
||||||
*
|
|
||||||
* @return FacebookRequest
|
|
||||||
*/
|
|
||||||
public function getRequest()
|
|
||||||
{
|
|
||||||
return $this->request;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the FacebookApp entity used for this response.
|
|
||||||
*
|
|
||||||
* @return FacebookApp
|
|
||||||
*/
|
|
||||||
public function getApp()
|
|
||||||
{
|
|
||||||
return $this->request->getApp();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the access token that was used for this response.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAccessToken()
|
|
||||||
{
|
|
||||||
return $this->request->getAccessToken();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the HTTP status code for this response.
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function getHttpStatusCode()
|
|
||||||
{
|
|
||||||
return $this->httpStatusCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the HTTP headers for this response.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getHeaders()
|
|
||||||
{
|
|
||||||
return $this->headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the raw body response.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getBody()
|
|
||||||
{
|
|
||||||
return $this->body;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the decoded body response.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getDecodedBody()
|
|
||||||
{
|
|
||||||
return $this->decodedBody;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the app secret proof that was used for this response.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAppSecretProof()
|
|
||||||
{
|
|
||||||
return $this->request->getAppSecretProof();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the ETag associated with the response.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getETag()
|
|
||||||
{
|
|
||||||
return isset($this->headers['ETag']) ? $this->headers['ETag'] : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the version of Graph that returned this response.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getGraphVersion()
|
|
||||||
{
|
|
||||||
return isset($this->headers['Facebook-API-Version']) ? $this->headers['Facebook-API-Version'] : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if Graph returned an error message.
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function isError()
|
|
||||||
{
|
|
||||||
return isset($this->decodedBody['error']);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Throws the exception.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function throwException()
|
|
||||||
{
|
|
||||||
throw $this->thrownException;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiates an exception to be thrown later.
|
|
||||||
*/
|
|
||||||
public function makeException()
|
|
||||||
{
|
|
||||||
$this->thrownException = FacebookResponseException::create($this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the exception that was thrown for this request.
|
|
||||||
*
|
|
||||||
* @return FacebookSDKException|null
|
|
||||||
*/
|
|
||||||
public function getThrownException()
|
|
||||||
{
|
|
||||||
return $this->thrownException;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert the raw response into an array if possible.
|
|
||||||
*
|
|
||||||
* Graph will return 2 types of responses:
|
|
||||||
* - JSON(P)
|
|
||||||
* Most responses from Grpah are JSON(P)
|
|
||||||
* - application/x-www-form-urlencoded key/value pairs
|
|
||||||
* Happens on the `/oauth/access_token` endpoint when exchanging
|
|
||||||
* a short-lived access token for a long-lived access token
|
|
||||||
* - And sometimes nothing :/ but that'd be a bug.
|
|
||||||
*/
|
|
||||||
public function decodeBody()
|
|
||||||
{
|
|
||||||
$this->decodedBody = json_decode($this->body, true);
|
|
||||||
|
|
||||||
if ($this->decodedBody === null) {
|
|
||||||
$this->decodedBody = [];
|
|
||||||
parse_str($this->body, $this->decodedBody);
|
|
||||||
} elseif (is_bool($this->decodedBody)) {
|
|
||||||
// Backwards compatibility for Graph < 2.1.
|
|
||||||
// Mimics 2.1 responses.
|
|
||||||
// @TODO Remove this after Graph 2.0 is no longer supported
|
|
||||||
$this->decodedBody = ['success' => $this->decodedBody];
|
|
||||||
} elseif (is_numeric($this->decodedBody)) {
|
|
||||||
$this->decodedBody = ['id' => $this->decodedBody];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_array($this->decodedBody)) {
|
|
||||||
$this->decodedBody = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isError()) {
|
|
||||||
$this->makeException();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiate a new GraphObject from response.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast to.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphObject
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 getGraphObject() has been renamed to getGraphNode()
|
|
||||||
* @todo v6: Remove this method
|
|
||||||
*/
|
|
||||||
public function getGraphObject($subclassName = null)
|
|
||||||
{
|
|
||||||
return $this->getGraphNode($subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiate a new GraphNode from response.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast to.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphNode
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphNode($subclassName = null)
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphNode($subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphAlbum collection.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphAlbum
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphAlbum()
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphAlbum();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphPage collection.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphPage
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphPage()
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphPage();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphSessionInfo collection.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphSessionInfo
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphSessionInfo()
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphSessionInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphUser collection.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphUser
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphUser()
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphUser();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphEvent collection.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphEvent
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphEvent()
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphEvent();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphGroup collection.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphGroup
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphGroup()
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphGroup();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiate a new GraphList from response.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast list items to.
|
|
||||||
* @param boolean $auto_prefix Toggle to auto-prefix the subclass name.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphList
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 getGraphList() has been renamed to getGraphEdge()
|
|
||||||
* @todo v6: Remove this method
|
|
||||||
*/
|
|
||||||
public function getGraphList($subclassName = null, $auto_prefix = true)
|
|
||||||
{
|
|
||||||
return $this->getGraphEdge($subclassName, $auto_prefix);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiate a new GraphEdge from response.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast list items to.
|
|
||||||
* @param boolean $auto_prefix Toggle to auto-prefix the subclass name.
|
|
||||||
*
|
|
||||||
* @return \Facebook\GraphNodes\GraphEdge
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getGraphEdge($subclassName = null, $auto_prefix = true)
|
|
||||||
{
|
|
||||||
$factory = new GraphNodeFactory($this);
|
|
||||||
|
|
||||||
return $factory->makeGraphEdge($subclassName, $auto_prefix);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,135 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\FileUpload;
|
|
||||||
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookFile
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookFile
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var string The path to the file on the system.
|
|
||||||
*/
|
|
||||||
protected $path;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var resource The stream pointing to the file.
|
|
||||||
*/
|
|
||||||
protected $stream;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new FacebookFile entity.
|
|
||||||
*
|
|
||||||
* @param string $filePath
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function __construct($filePath)
|
|
||||||
{
|
|
||||||
$this->path = $filePath;
|
|
||||||
$this->open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Closes the stream when destructed.
|
|
||||||
*/
|
|
||||||
public function __destruct()
|
|
||||||
{
|
|
||||||
$this->close();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Opens a stream for the file.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function open()
|
|
||||||
{
|
|
||||||
if (!$this->isRemoteFile($this->path) && !is_readable($this->path)) {
|
|
||||||
throw new FacebookSDKException('Failed to create FacebookFile entity. Unable to read resource: ' . $this->path . '.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->stream = fopen($this->path, 'r');
|
|
||||||
|
|
||||||
if (!$this->stream) {
|
|
||||||
throw new FacebookSDKException('Failed to create FacebookFile entity. Unable to open resource: ' . $this->path . '.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Stops the file stream.
|
|
||||||
*/
|
|
||||||
public function close()
|
|
||||||
{
|
|
||||||
if (is_resource($this->stream)) {
|
|
||||||
fclose($this->stream);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the contents of the file.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getContents()
|
|
||||||
{
|
|
||||||
return stream_get_contents($this->stream);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the name of the file.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getFileName()
|
|
||||||
{
|
|
||||||
return basename($this->path);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the mimetype of the file.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getMimetype()
|
|
||||||
{
|
|
||||||
return Mimetypes::getInstance()->fromFilename($this->path) ?: 'text/plain';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if the path to the file is remote.
|
|
||||||
*
|
|
||||||
* @param string $pathToFile
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
protected function isRemoteFile($pathToFile)
|
|
||||||
{
|
|
||||||
return preg_match('/^(https?|ftp):\/\/.*/', $pathToFile) === 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\FileUpload;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookVideo
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookVideo extends FacebookFile
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,987 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\FileUpload;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides mappings of file extensions to mimetypes
|
|
||||||
*
|
|
||||||
* Taken from Guzzle
|
|
||||||
*
|
|
||||||
* @see https://github.com/guzzle/guzzle/blob/master/src/Mimetypes.php
|
|
||||||
*
|
|
||||||
* @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types
|
|
||||||
*/
|
|
||||||
class Mimetypes
|
|
||||||
{
|
|
||||||
/** @var self */
|
|
||||||
protected static $instance;
|
|
||||||
|
|
||||||
/** @var array Mapping of extension to mimetype */
|
|
||||||
protected $mimetypes = [
|
|
||||||
'3dml' => 'text/vnd.in3d.3dml',
|
|
||||||
'3g2' => 'video/3gpp2',
|
|
||||||
'3gp' => 'video/3gpp',
|
|
||||||
'7z' => 'application/x-7z-compressed',
|
|
||||||
'aab' => 'application/x-authorware-bin',
|
|
||||||
'aac' => 'audio/x-aac',
|
|
||||||
'aam' => 'application/x-authorware-map',
|
|
||||||
'aas' => 'application/x-authorware-seg',
|
|
||||||
'abw' => 'application/x-abiword',
|
|
||||||
'ac' => 'application/pkix-attr-cert',
|
|
||||||
'acc' => 'application/vnd.americandynamics.acc',
|
|
||||||
'ace' => 'application/x-ace-compressed',
|
|
||||||
'acu' => 'application/vnd.acucobol',
|
|
||||||
'acutc' => 'application/vnd.acucorp',
|
|
||||||
'adp' => 'audio/adpcm',
|
|
||||||
'aep' => 'application/vnd.audiograph',
|
|
||||||
'afm' => 'application/x-font-type1',
|
|
||||||
'afp' => 'application/vnd.ibm.modcap',
|
|
||||||
'ahead' => 'application/vnd.ahead.space',
|
|
||||||
'ai' => 'application/postscript',
|
|
||||||
'aif' => 'audio/x-aiff',
|
|
||||||
'aifc' => 'audio/x-aiff',
|
|
||||||
'aiff' => 'audio/x-aiff',
|
|
||||||
'air' => 'application/vnd.adobe.air-application-installer-package+zip',
|
|
||||||
'ait' => 'application/vnd.dvb.ait',
|
|
||||||
'ami' => 'application/vnd.amiga.ami',
|
|
||||||
'apk' => 'application/vnd.android.package-archive',
|
|
||||||
'application' => 'application/x-ms-application',
|
|
||||||
'apr' => 'application/vnd.lotus-approach',
|
|
||||||
'asa' => 'text/plain',
|
|
||||||
'asax' => 'application/octet-stream',
|
|
||||||
'asc' => 'application/pgp-signature',
|
|
||||||
'ascx' => 'text/plain',
|
|
||||||
'asf' => 'video/x-ms-asf',
|
|
||||||
'ashx' => 'text/plain',
|
|
||||||
'asm' => 'text/x-asm',
|
|
||||||
'asmx' => 'text/plain',
|
|
||||||
'aso' => 'application/vnd.accpac.simply.aso',
|
|
||||||
'asp' => 'text/plain',
|
|
||||||
'aspx' => 'text/plain',
|
|
||||||
'asx' => 'video/x-ms-asf',
|
|
||||||
'atc' => 'application/vnd.acucorp',
|
|
||||||
'atom' => 'application/atom+xml',
|
|
||||||
'atomcat' => 'application/atomcat+xml',
|
|
||||||
'atomsvc' => 'application/atomsvc+xml',
|
|
||||||
'atx' => 'application/vnd.antix.game-component',
|
|
||||||
'au' => 'audio/basic',
|
|
||||||
'avi' => 'video/x-msvideo',
|
|
||||||
'aw' => 'application/applixware',
|
|
||||||
'axd' => 'text/plain',
|
|
||||||
'azf' => 'application/vnd.airzip.filesecure.azf',
|
|
||||||
'azs' => 'application/vnd.airzip.filesecure.azs',
|
|
||||||
'azw' => 'application/vnd.amazon.ebook',
|
|
||||||
'bat' => 'application/x-msdownload',
|
|
||||||
'bcpio' => 'application/x-bcpio',
|
|
||||||
'bdf' => 'application/x-font-bdf',
|
|
||||||
'bdm' => 'application/vnd.syncml.dm+wbxml',
|
|
||||||
'bed' => 'application/vnd.realvnc.bed',
|
|
||||||
'bh2' => 'application/vnd.fujitsu.oasysprs',
|
|
||||||
'bin' => 'application/octet-stream',
|
|
||||||
'bmi' => 'application/vnd.bmi',
|
|
||||||
'bmp' => 'image/bmp',
|
|
||||||
'book' => 'application/vnd.framemaker',
|
|
||||||
'box' => 'application/vnd.previewsystems.box',
|
|
||||||
'boz' => 'application/x-bzip2',
|
|
||||||
'bpk' => 'application/octet-stream',
|
|
||||||
'btif' => 'image/prs.btif',
|
|
||||||
'bz' => 'application/x-bzip',
|
|
||||||
'bz2' => 'application/x-bzip2',
|
|
||||||
'c' => 'text/x-c',
|
|
||||||
'c11amc' => 'application/vnd.cluetrust.cartomobile-config',
|
|
||||||
'c11amz' => 'application/vnd.cluetrust.cartomobile-config-pkg',
|
|
||||||
'c4d' => 'application/vnd.clonk.c4group',
|
|
||||||
'c4f' => 'application/vnd.clonk.c4group',
|
|
||||||
'c4g' => 'application/vnd.clonk.c4group',
|
|
||||||
'c4p' => 'application/vnd.clonk.c4group',
|
|
||||||
'c4u' => 'application/vnd.clonk.c4group',
|
|
||||||
'cab' => 'application/vnd.ms-cab-compressed',
|
|
||||||
'car' => 'application/vnd.curl.car',
|
|
||||||
'cat' => 'application/vnd.ms-pki.seccat',
|
|
||||||
'cc' => 'text/x-c',
|
|
||||||
'cct' => 'application/x-director',
|
|
||||||
'ccxml' => 'application/ccxml+xml',
|
|
||||||
'cdbcmsg' => 'application/vnd.contact.cmsg',
|
|
||||||
'cdf' => 'application/x-netcdf',
|
|
||||||
'cdkey' => 'application/vnd.mediastation.cdkey',
|
|
||||||
'cdmia' => 'application/cdmi-capability',
|
|
||||||
'cdmic' => 'application/cdmi-container',
|
|
||||||
'cdmid' => 'application/cdmi-domain',
|
|
||||||
'cdmio' => 'application/cdmi-object',
|
|
||||||
'cdmiq' => 'application/cdmi-queue',
|
|
||||||
'cdx' => 'chemical/x-cdx',
|
|
||||||
'cdxml' => 'application/vnd.chemdraw+xml',
|
|
||||||
'cdy' => 'application/vnd.cinderella',
|
|
||||||
'cer' => 'application/pkix-cert',
|
|
||||||
'cfc' => 'application/x-coldfusion',
|
|
||||||
'cfm' => 'application/x-coldfusion',
|
|
||||||
'cgm' => 'image/cgm',
|
|
||||||
'chat' => 'application/x-chat',
|
|
||||||
'chm' => 'application/vnd.ms-htmlhelp',
|
|
||||||
'chrt' => 'application/vnd.kde.kchart',
|
|
||||||
'cif' => 'chemical/x-cif',
|
|
||||||
'cii' => 'application/vnd.anser-web-certificate-issue-initiation',
|
|
||||||
'cil' => 'application/vnd.ms-artgalry',
|
|
||||||
'cla' => 'application/vnd.claymore',
|
|
||||||
'class' => 'application/java-vm',
|
|
||||||
'clkk' => 'application/vnd.crick.clicker.keyboard',
|
|
||||||
'clkp' => 'application/vnd.crick.clicker.palette',
|
|
||||||
'clkt' => 'application/vnd.crick.clicker.template',
|
|
||||||
'clkw' => 'application/vnd.crick.clicker.wordbank',
|
|
||||||
'clkx' => 'application/vnd.crick.clicker',
|
|
||||||
'clp' => 'application/x-msclip',
|
|
||||||
'cmc' => 'application/vnd.cosmocaller',
|
|
||||||
'cmdf' => 'chemical/x-cmdf',
|
|
||||||
'cml' => 'chemical/x-cml',
|
|
||||||
'cmp' => 'application/vnd.yellowriver-custom-menu',
|
|
||||||
'cmx' => 'image/x-cmx',
|
|
||||||
'cod' => 'application/vnd.rim.cod',
|
|
||||||
'com' => 'application/x-msdownload',
|
|
||||||
'conf' => 'text/plain',
|
|
||||||
'cpio' => 'application/x-cpio',
|
|
||||||
'cpp' => 'text/x-c',
|
|
||||||
'cpt' => 'application/mac-compactpro',
|
|
||||||
'crd' => 'application/x-mscardfile',
|
|
||||||
'crl' => 'application/pkix-crl',
|
|
||||||
'crt' => 'application/x-x509-ca-cert',
|
|
||||||
'cryptonote' => 'application/vnd.rig.cryptonote',
|
|
||||||
'cs' => 'text/plain',
|
|
||||||
'csh' => 'application/x-csh',
|
|
||||||
'csml' => 'chemical/x-csml',
|
|
||||||
'csp' => 'application/vnd.commonspace',
|
|
||||||
'css' => 'text/css',
|
|
||||||
'cst' => 'application/x-director',
|
|
||||||
'csv' => 'text/csv',
|
|
||||||
'cu' => 'application/cu-seeme',
|
|
||||||
'curl' => 'text/vnd.curl',
|
|
||||||
'cww' => 'application/prs.cww',
|
|
||||||
'cxt' => 'application/x-director',
|
|
||||||
'cxx' => 'text/x-c',
|
|
||||||
'dae' => 'model/vnd.collada+xml',
|
|
||||||
'daf' => 'application/vnd.mobius.daf',
|
|
||||||
'dataless' => 'application/vnd.fdsn.seed',
|
|
||||||
'davmount' => 'application/davmount+xml',
|
|
||||||
'dcr' => 'application/x-director',
|
|
||||||
'dcurl' => 'text/vnd.curl.dcurl',
|
|
||||||
'dd2' => 'application/vnd.oma.dd2+xml',
|
|
||||||
'ddd' => 'application/vnd.fujixerox.ddd',
|
|
||||||
'deb' => 'application/x-debian-package',
|
|
||||||
'def' => 'text/plain',
|
|
||||||
'deploy' => 'application/octet-stream',
|
|
||||||
'der' => 'application/x-x509-ca-cert',
|
|
||||||
'dfac' => 'application/vnd.dreamfactory',
|
|
||||||
'dic' => 'text/x-c',
|
|
||||||
'dir' => 'application/x-director',
|
|
||||||
'dis' => 'application/vnd.mobius.dis',
|
|
||||||
'dist' => 'application/octet-stream',
|
|
||||||
'distz' => 'application/octet-stream',
|
|
||||||
'djv' => 'image/vnd.djvu',
|
|
||||||
'djvu' => 'image/vnd.djvu',
|
|
||||||
'dll' => 'application/x-msdownload',
|
|
||||||
'dmg' => 'application/octet-stream',
|
|
||||||
'dms' => 'application/octet-stream',
|
|
||||||
'dna' => 'application/vnd.dna',
|
|
||||||
'doc' => 'application/msword',
|
|
||||||
'docm' => 'application/vnd.ms-word.document.macroenabled.12',
|
|
||||||
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
||||||
'dot' => 'application/msword',
|
|
||||||
'dotm' => 'application/vnd.ms-word.template.macroenabled.12',
|
|
||||||
'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
|
|
||||||
'dp' => 'application/vnd.osgi.dp',
|
|
||||||
'dpg' => 'application/vnd.dpgraph',
|
|
||||||
'dra' => 'audio/vnd.dra',
|
|
||||||
'dsc' => 'text/prs.lines.tag',
|
|
||||||
'dssc' => 'application/dssc+der',
|
|
||||||
'dtb' => 'application/x-dtbook+xml',
|
|
||||||
'dtd' => 'application/xml-dtd',
|
|
||||||
'dts' => 'audio/vnd.dts',
|
|
||||||
'dtshd' => 'audio/vnd.dts.hd',
|
|
||||||
'dump' => 'application/octet-stream',
|
|
||||||
'dvi' => 'application/x-dvi',
|
|
||||||
'dwf' => 'model/vnd.dwf',
|
|
||||||
'dwg' => 'image/vnd.dwg',
|
|
||||||
'dxf' => 'image/vnd.dxf',
|
|
||||||
'dxp' => 'application/vnd.spotfire.dxp',
|
|
||||||
'dxr' => 'application/x-director',
|
|
||||||
'ecelp4800' => 'audio/vnd.nuera.ecelp4800',
|
|
||||||
'ecelp7470' => 'audio/vnd.nuera.ecelp7470',
|
|
||||||
'ecelp9600' => 'audio/vnd.nuera.ecelp9600',
|
|
||||||
'ecma' => 'application/ecmascript',
|
|
||||||
'edm' => 'application/vnd.novadigm.edm',
|
|
||||||
'edx' => 'application/vnd.novadigm.edx',
|
|
||||||
'efif' => 'application/vnd.picsel',
|
|
||||||
'ei6' => 'application/vnd.pg.osasli',
|
|
||||||
'elc' => 'application/octet-stream',
|
|
||||||
'eml' => 'message/rfc822',
|
|
||||||
'emma' => 'application/emma+xml',
|
|
||||||
'eol' => 'audio/vnd.digital-winds',
|
|
||||||
'eot' => 'application/vnd.ms-fontobject',
|
|
||||||
'eps' => 'application/postscript',
|
|
||||||
'epub' => 'application/epub+zip',
|
|
||||||
'es3' => 'application/vnd.eszigno3+xml',
|
|
||||||
'esf' => 'application/vnd.epson.esf',
|
|
||||||
'et3' => 'application/vnd.eszigno3+xml',
|
|
||||||
'etx' => 'text/x-setext',
|
|
||||||
'exe' => 'application/x-msdownload',
|
|
||||||
'exi' => 'application/exi',
|
|
||||||
'ext' => 'application/vnd.novadigm.ext',
|
|
||||||
'ez' => 'application/andrew-inset',
|
|
||||||
'ez2' => 'application/vnd.ezpix-album',
|
|
||||||
'ez3' => 'application/vnd.ezpix-package',
|
|
||||||
'f' => 'text/x-fortran',
|
|
||||||
'f4v' => 'video/x-f4v',
|
|
||||||
'f77' => 'text/x-fortran',
|
|
||||||
'f90' => 'text/x-fortran',
|
|
||||||
'fbs' => 'image/vnd.fastbidsheet',
|
|
||||||
'fcs' => 'application/vnd.isac.fcs',
|
|
||||||
'fdf' => 'application/vnd.fdf',
|
|
||||||
'fe_launch' => 'application/vnd.denovo.fcselayout-link',
|
|
||||||
'fg5' => 'application/vnd.fujitsu.oasysgp',
|
|
||||||
'fgd' => 'application/x-director',
|
|
||||||
'fh' => 'image/x-freehand',
|
|
||||||
'fh4' => 'image/x-freehand',
|
|
||||||
'fh5' => 'image/x-freehand',
|
|
||||||
'fh7' => 'image/x-freehand',
|
|
||||||
'fhc' => 'image/x-freehand',
|
|
||||||
'fig' => 'application/x-xfig',
|
|
||||||
'fli' => 'video/x-fli',
|
|
||||||
'flo' => 'application/vnd.micrografx.flo',
|
|
||||||
'flv' => 'video/x-flv',
|
|
||||||
'flw' => 'application/vnd.kde.kivio',
|
|
||||||
'flx' => 'text/vnd.fmi.flexstor',
|
|
||||||
'fly' => 'text/vnd.fly',
|
|
||||||
'fm' => 'application/vnd.framemaker',
|
|
||||||
'fnc' => 'application/vnd.frogans.fnc',
|
|
||||||
'for' => 'text/x-fortran',
|
|
||||||
'fpx' => 'image/vnd.fpx',
|
|
||||||
'frame' => 'application/vnd.framemaker',
|
|
||||||
'fsc' => 'application/vnd.fsc.weblaunch',
|
|
||||||
'fst' => 'image/vnd.fst',
|
|
||||||
'ftc' => 'application/vnd.fluxtime.clip',
|
|
||||||
'fti' => 'application/vnd.anser-web-funds-transfer-initiation',
|
|
||||||
'fvt' => 'video/vnd.fvt',
|
|
||||||
'fxp' => 'application/vnd.adobe.fxp',
|
|
||||||
'fxpl' => 'application/vnd.adobe.fxp',
|
|
||||||
'fzs' => 'application/vnd.fuzzysheet',
|
|
||||||
'g2w' => 'application/vnd.geoplan',
|
|
||||||
'g3' => 'image/g3fax',
|
|
||||||
'g3w' => 'application/vnd.geospace',
|
|
||||||
'gac' => 'application/vnd.groove-account',
|
|
||||||
'gdl' => 'model/vnd.gdl',
|
|
||||||
'geo' => 'application/vnd.dynageo',
|
|
||||||
'gex' => 'application/vnd.geometry-explorer',
|
|
||||||
'ggb' => 'application/vnd.geogebra.file',
|
|
||||||
'ggt' => 'application/vnd.geogebra.tool',
|
|
||||||
'ghf' => 'application/vnd.groove-help',
|
|
||||||
'gif' => 'image/gif',
|
|
||||||
'gim' => 'application/vnd.groove-identity-message',
|
|
||||||
'gmx' => 'application/vnd.gmx',
|
|
||||||
'gnumeric' => 'application/x-gnumeric',
|
|
||||||
'gph' => 'application/vnd.flographit',
|
|
||||||
'gqf' => 'application/vnd.grafeq',
|
|
||||||
'gqs' => 'application/vnd.grafeq',
|
|
||||||
'gram' => 'application/srgs',
|
|
||||||
'gre' => 'application/vnd.geometry-explorer',
|
|
||||||
'grv' => 'application/vnd.groove-injector',
|
|
||||||
'grxml' => 'application/srgs+xml',
|
|
||||||
'gsf' => 'application/x-font-ghostscript',
|
|
||||||
'gtar' => 'application/x-gtar',
|
|
||||||
'gtm' => 'application/vnd.groove-tool-message',
|
|
||||||
'gtw' => 'model/vnd.gtw',
|
|
||||||
'gv' => 'text/vnd.graphviz',
|
|
||||||
'gxt' => 'application/vnd.geonext',
|
|
||||||
'h' => 'text/x-c',
|
|
||||||
'h261' => 'video/h261',
|
|
||||||
'h263' => 'video/h263',
|
|
||||||
'h264' => 'video/h264',
|
|
||||||
'hal' => 'application/vnd.hal+xml',
|
|
||||||
'hbci' => 'application/vnd.hbci',
|
|
||||||
'hdf' => 'application/x-hdf',
|
|
||||||
'hh' => 'text/x-c',
|
|
||||||
'hlp' => 'application/winhlp',
|
|
||||||
'hpgl' => 'application/vnd.hp-hpgl',
|
|
||||||
'hpid' => 'application/vnd.hp-hpid',
|
|
||||||
'hps' => 'application/vnd.hp-hps',
|
|
||||||
'hqx' => 'application/mac-binhex40',
|
|
||||||
'hta' => 'application/octet-stream',
|
|
||||||
'htc' => 'text/html',
|
|
||||||
'htke' => 'application/vnd.kenameaapp',
|
|
||||||
'htm' => 'text/html',
|
|
||||||
'html' => 'text/html',
|
|
||||||
'hvd' => 'application/vnd.yamaha.hv-dic',
|
|
||||||
'hvp' => 'application/vnd.yamaha.hv-voice',
|
|
||||||
'hvs' => 'application/vnd.yamaha.hv-script',
|
|
||||||
'i2g' => 'application/vnd.intergeo',
|
|
||||||
'icc' => 'application/vnd.iccprofile',
|
|
||||||
'ice' => 'x-conference/x-cooltalk',
|
|
||||||
'icm' => 'application/vnd.iccprofile',
|
|
||||||
'ico' => 'image/x-icon',
|
|
||||||
'ics' => 'text/calendar',
|
|
||||||
'ief' => 'image/ief',
|
|
||||||
'ifb' => 'text/calendar',
|
|
||||||
'ifm' => 'application/vnd.shana.informed.formdata',
|
|
||||||
'iges' => 'model/iges',
|
|
||||||
'igl' => 'application/vnd.igloader',
|
|
||||||
'igm' => 'application/vnd.insors.igm',
|
|
||||||
'igs' => 'model/iges',
|
|
||||||
'igx' => 'application/vnd.micrografx.igx',
|
|
||||||
'iif' => 'application/vnd.shana.informed.interchange',
|
|
||||||
'imp' => 'application/vnd.accpac.simply.imp',
|
|
||||||
'ims' => 'application/vnd.ms-ims',
|
|
||||||
'in' => 'text/plain',
|
|
||||||
'ini' => 'text/plain',
|
|
||||||
'ipfix' => 'application/ipfix',
|
|
||||||
'ipk' => 'application/vnd.shana.informed.package',
|
|
||||||
'irm' => 'application/vnd.ibm.rights-management',
|
|
||||||
'irp' => 'application/vnd.irepository.package+xml',
|
|
||||||
'iso' => 'application/octet-stream',
|
|
||||||
'itp' => 'application/vnd.shana.informed.formtemplate',
|
|
||||||
'ivp' => 'application/vnd.immervision-ivp',
|
|
||||||
'ivu' => 'application/vnd.immervision-ivu',
|
|
||||||
'jad' => 'text/vnd.sun.j2me.app-descriptor',
|
|
||||||
'jam' => 'application/vnd.jam',
|
|
||||||
'jar' => 'application/java-archive',
|
|
||||||
'java' => 'text/x-java-source',
|
|
||||||
'jisp' => 'application/vnd.jisp',
|
|
||||||
'jlt' => 'application/vnd.hp-jlyt',
|
|
||||||
'jnlp' => 'application/x-java-jnlp-file',
|
|
||||||
'joda' => 'application/vnd.joost.joda-archive',
|
|
||||||
'jpe' => 'image/jpeg',
|
|
||||||
'jpeg' => 'image/jpeg',
|
|
||||||
'jpg' => 'image/jpeg',
|
|
||||||
'jpgm' => 'video/jpm',
|
|
||||||
'jpgv' => 'video/jpeg',
|
|
||||||
'jpm' => 'video/jpm',
|
|
||||||
'js' => 'text/javascript',
|
|
||||||
'json' => 'application/json',
|
|
||||||
'kar' => 'audio/midi',
|
|
||||||
'karbon' => 'application/vnd.kde.karbon',
|
|
||||||
'kfo' => 'application/vnd.kde.kformula',
|
|
||||||
'kia' => 'application/vnd.kidspiration',
|
|
||||||
'kml' => 'application/vnd.google-earth.kml+xml',
|
|
||||||
'kmz' => 'application/vnd.google-earth.kmz',
|
|
||||||
'kne' => 'application/vnd.kinar',
|
|
||||||
'knp' => 'application/vnd.kinar',
|
|
||||||
'kon' => 'application/vnd.kde.kontour',
|
|
||||||
'kpr' => 'application/vnd.kde.kpresenter',
|
|
||||||
'kpt' => 'application/vnd.kde.kpresenter',
|
|
||||||
'ksp' => 'application/vnd.kde.kspread',
|
|
||||||
'ktr' => 'application/vnd.kahootz',
|
|
||||||
'ktx' => 'image/ktx',
|
|
||||||
'ktz' => 'application/vnd.kahootz',
|
|
||||||
'kwd' => 'application/vnd.kde.kword',
|
|
||||||
'kwt' => 'application/vnd.kde.kword',
|
|
||||||
'lasxml' => 'application/vnd.las.las+xml',
|
|
||||||
'latex' => 'application/x-latex',
|
|
||||||
'lbd' => 'application/vnd.llamagraphics.life-balance.desktop',
|
|
||||||
'lbe' => 'application/vnd.llamagraphics.life-balance.exchange+xml',
|
|
||||||
'les' => 'application/vnd.hhe.lesson-player',
|
|
||||||
'lha' => 'application/octet-stream',
|
|
||||||
'link66' => 'application/vnd.route66.link66+xml',
|
|
||||||
'list' => 'text/plain',
|
|
||||||
'list3820' => 'application/vnd.ibm.modcap',
|
|
||||||
'listafp' => 'application/vnd.ibm.modcap',
|
|
||||||
'log' => 'text/plain',
|
|
||||||
'lostxml' => 'application/lost+xml',
|
|
||||||
'lrf' => 'application/octet-stream',
|
|
||||||
'lrm' => 'application/vnd.ms-lrm',
|
|
||||||
'ltf' => 'application/vnd.frogans.ltf',
|
|
||||||
'lvp' => 'audio/vnd.lucent.voice',
|
|
||||||
'lwp' => 'application/vnd.lotus-wordpro',
|
|
||||||
'lzh' => 'application/octet-stream',
|
|
||||||
'm13' => 'application/x-msmediaview',
|
|
||||||
'm14' => 'application/x-msmediaview',
|
|
||||||
'm1v' => 'video/mpeg',
|
|
||||||
'm21' => 'application/mp21',
|
|
||||||
'm2a' => 'audio/mpeg',
|
|
||||||
'm2v' => 'video/mpeg',
|
|
||||||
'm3a' => 'audio/mpeg',
|
|
||||||
'm3u' => 'audio/x-mpegurl',
|
|
||||||
'm3u8' => 'application/vnd.apple.mpegurl',
|
|
||||||
'm4a' => 'audio/mp4',
|
|
||||||
'm4u' => 'video/vnd.mpegurl',
|
|
||||||
'm4v' => 'video/mp4',
|
|
||||||
'ma' => 'application/mathematica',
|
|
||||||
'mads' => 'application/mads+xml',
|
|
||||||
'mag' => 'application/vnd.ecowin.chart',
|
|
||||||
'maker' => 'application/vnd.framemaker',
|
|
||||||
'man' => 'text/troff',
|
|
||||||
'mathml' => 'application/mathml+xml',
|
|
||||||
'mb' => 'application/mathematica',
|
|
||||||
'mbk' => 'application/vnd.mobius.mbk',
|
|
||||||
'mbox' => 'application/mbox',
|
|
||||||
'mc1' => 'application/vnd.medcalcdata',
|
|
||||||
'mcd' => 'application/vnd.mcd',
|
|
||||||
'mcurl' => 'text/vnd.curl.mcurl',
|
|
||||||
'mdb' => 'application/x-msaccess',
|
|
||||||
'mdi' => 'image/vnd.ms-modi',
|
|
||||||
'me' => 'text/troff',
|
|
||||||
'mesh' => 'model/mesh',
|
|
||||||
'meta4' => 'application/metalink4+xml',
|
|
||||||
'mets' => 'application/mets+xml',
|
|
||||||
'mfm' => 'application/vnd.mfmp',
|
|
||||||
'mgp' => 'application/vnd.osgeo.mapguide.package',
|
|
||||||
'mgz' => 'application/vnd.proteus.magazine',
|
|
||||||
'mid' => 'audio/midi',
|
|
||||||
'midi' => 'audio/midi',
|
|
||||||
'mif' => 'application/vnd.mif',
|
|
||||||
'mime' => 'message/rfc822',
|
|
||||||
'mj2' => 'video/mj2',
|
|
||||||
'mjp2' => 'video/mj2',
|
|
||||||
'mlp' => 'application/vnd.dolby.mlp',
|
|
||||||
'mmd' => 'application/vnd.chipnuts.karaoke-mmd',
|
|
||||||
'mmf' => 'application/vnd.smaf',
|
|
||||||
'mmr' => 'image/vnd.fujixerox.edmics-mmr',
|
|
||||||
'mny' => 'application/x-msmoney',
|
|
||||||
'mobi' => 'application/x-mobipocket-ebook',
|
|
||||||
'mods' => 'application/mods+xml',
|
|
||||||
'mov' => 'video/quicktime',
|
|
||||||
'movie' => 'video/x-sgi-movie',
|
|
||||||
'mp2' => 'audio/mpeg',
|
|
||||||
'mp21' => 'application/mp21',
|
|
||||||
'mp2a' => 'audio/mpeg',
|
|
||||||
'mp3' => 'audio/mpeg',
|
|
||||||
'mp4' => 'video/mp4',
|
|
||||||
'mp4a' => 'audio/mp4',
|
|
||||||
'mp4s' => 'application/mp4',
|
|
||||||
'mp4v' => 'video/mp4',
|
|
||||||
'mpc' => 'application/vnd.mophun.certificate',
|
|
||||||
'mpe' => 'video/mpeg',
|
|
||||||
'mpeg' => 'video/mpeg',
|
|
||||||
'mpg' => 'video/mpeg',
|
|
||||||
'mpg4' => 'video/mp4',
|
|
||||||
'mpga' => 'audio/mpeg',
|
|
||||||
'mpkg' => 'application/vnd.apple.installer+xml',
|
|
||||||
'mpm' => 'application/vnd.blueice.multipass',
|
|
||||||
'mpn' => 'application/vnd.mophun.application',
|
|
||||||
'mpp' => 'application/vnd.ms-project',
|
|
||||||
'mpt' => 'application/vnd.ms-project',
|
|
||||||
'mpy' => 'application/vnd.ibm.minipay',
|
|
||||||
'mqy' => 'application/vnd.mobius.mqy',
|
|
||||||
'mrc' => 'application/marc',
|
|
||||||
'mrcx' => 'application/marcxml+xml',
|
|
||||||
'ms' => 'text/troff',
|
|
||||||
'mscml' => 'application/mediaservercontrol+xml',
|
|
||||||
'mseed' => 'application/vnd.fdsn.mseed',
|
|
||||||
'mseq' => 'application/vnd.mseq',
|
|
||||||
'msf' => 'application/vnd.epson.msf',
|
|
||||||
'msh' => 'model/mesh',
|
|
||||||
'msi' => 'application/x-msdownload',
|
|
||||||
'msl' => 'application/vnd.mobius.msl',
|
|
||||||
'msty' => 'application/vnd.muvee.style',
|
|
||||||
'mts' => 'model/vnd.mts',
|
|
||||||
'mus' => 'application/vnd.musician',
|
|
||||||
'musicxml' => 'application/vnd.recordare.musicxml+xml',
|
|
||||||
'mvb' => 'application/x-msmediaview',
|
|
||||||
'mwf' => 'application/vnd.mfer',
|
|
||||||
'mxf' => 'application/mxf',
|
|
||||||
'mxl' => 'application/vnd.recordare.musicxml',
|
|
||||||
'mxml' => 'application/xv+xml',
|
|
||||||
'mxs' => 'application/vnd.triscape.mxs',
|
|
||||||
'mxu' => 'video/vnd.mpegurl',
|
|
||||||
'n-gage' => 'application/vnd.nokia.n-gage.symbian.install',
|
|
||||||
'n3' => 'text/n3',
|
|
||||||
'nb' => 'application/mathematica',
|
|
||||||
'nbp' => 'application/vnd.wolfram.player',
|
|
||||||
'nc' => 'application/x-netcdf',
|
|
||||||
'ncx' => 'application/x-dtbncx+xml',
|
|
||||||
'ngdat' => 'application/vnd.nokia.n-gage.data',
|
|
||||||
'nlu' => 'application/vnd.neurolanguage.nlu',
|
|
||||||
'nml' => 'application/vnd.enliven',
|
|
||||||
'nnd' => 'application/vnd.noblenet-directory',
|
|
||||||
'nns' => 'application/vnd.noblenet-sealer',
|
|
||||||
'nnw' => 'application/vnd.noblenet-web',
|
|
||||||
'npx' => 'image/vnd.net-fpx',
|
|
||||||
'nsf' => 'application/vnd.lotus-notes',
|
|
||||||
'oa2' => 'application/vnd.fujitsu.oasys2',
|
|
||||||
'oa3' => 'application/vnd.fujitsu.oasys3',
|
|
||||||
'oas' => 'application/vnd.fujitsu.oasys',
|
|
||||||
'obd' => 'application/x-msbinder',
|
|
||||||
'oda' => 'application/oda',
|
|
||||||
'odb' => 'application/vnd.oasis.opendocument.database',
|
|
||||||
'odc' => 'application/vnd.oasis.opendocument.chart',
|
|
||||||
'odf' => 'application/vnd.oasis.opendocument.formula',
|
|
||||||
'odft' => 'application/vnd.oasis.opendocument.formula-template',
|
|
||||||
'odg' => 'application/vnd.oasis.opendocument.graphics',
|
|
||||||
'odi' => 'application/vnd.oasis.opendocument.image',
|
|
||||||
'odm' => 'application/vnd.oasis.opendocument.text-master',
|
|
||||||
'odp' => 'application/vnd.oasis.opendocument.presentation',
|
|
||||||
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
|
|
||||||
'odt' => 'application/vnd.oasis.opendocument.text',
|
|
||||||
'oga' => 'audio/ogg',
|
|
||||||
'ogg' => 'audio/ogg',
|
|
||||||
'ogv' => 'video/ogg',
|
|
||||||
'ogx' => 'application/ogg',
|
|
||||||
'onepkg' => 'application/onenote',
|
|
||||||
'onetmp' => 'application/onenote',
|
|
||||||
'onetoc' => 'application/onenote',
|
|
||||||
'onetoc2' => 'application/onenote',
|
|
||||||
'opf' => 'application/oebps-package+xml',
|
|
||||||
'oprc' => 'application/vnd.palm',
|
|
||||||
'org' => 'application/vnd.lotus-organizer',
|
|
||||||
'osf' => 'application/vnd.yamaha.openscoreformat',
|
|
||||||
'osfpvg' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml',
|
|
||||||
'otc' => 'application/vnd.oasis.opendocument.chart-template',
|
|
||||||
'otf' => 'application/x-font-otf',
|
|
||||||
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
|
|
||||||
'oth' => 'application/vnd.oasis.opendocument.text-web',
|
|
||||||
'oti' => 'application/vnd.oasis.opendocument.image-template',
|
|
||||||
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
|
|
||||||
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
|
|
||||||
'ott' => 'application/vnd.oasis.opendocument.text-template',
|
|
||||||
'oxt' => 'application/vnd.openofficeorg.extension',
|
|
||||||
'p' => 'text/x-pascal',
|
|
||||||
'p10' => 'application/pkcs10',
|
|
||||||
'p12' => 'application/x-pkcs12',
|
|
||||||
'p7b' => 'application/x-pkcs7-certificates',
|
|
||||||
'p7c' => 'application/pkcs7-mime',
|
|
||||||
'p7m' => 'application/pkcs7-mime',
|
|
||||||
'p7r' => 'application/x-pkcs7-certreqresp',
|
|
||||||
'p7s' => 'application/pkcs7-signature',
|
|
||||||
'p8' => 'application/pkcs8',
|
|
||||||
'pas' => 'text/x-pascal',
|
|
||||||
'paw' => 'application/vnd.pawaafile',
|
|
||||||
'pbd' => 'application/vnd.powerbuilder6',
|
|
||||||
'pbm' => 'image/x-portable-bitmap',
|
|
||||||
'pcf' => 'application/x-font-pcf',
|
|
||||||
'pcl' => 'application/vnd.hp-pcl',
|
|
||||||
'pclxl' => 'application/vnd.hp-pclxl',
|
|
||||||
'pct' => 'image/x-pict',
|
|
||||||
'pcurl' => 'application/vnd.curl.pcurl',
|
|
||||||
'pcx' => 'image/x-pcx',
|
|
||||||
'pdb' => 'application/vnd.palm',
|
|
||||||
'pdf' => 'application/pdf',
|
|
||||||
'pfa' => 'application/x-font-type1',
|
|
||||||
'pfb' => 'application/x-font-type1',
|
|
||||||
'pfm' => 'application/x-font-type1',
|
|
||||||
'pfr' => 'application/font-tdpfr',
|
|
||||||
'pfx' => 'application/x-pkcs12',
|
|
||||||
'pgm' => 'image/x-portable-graymap',
|
|
||||||
'pgn' => 'application/x-chess-pgn',
|
|
||||||
'pgp' => 'application/pgp-encrypted',
|
|
||||||
'php' => 'text/x-php',
|
|
||||||
'phps' => 'application/x-httpd-phps',
|
|
||||||
'pic' => 'image/x-pict',
|
|
||||||
'pkg' => 'application/octet-stream',
|
|
||||||
'pki' => 'application/pkixcmp',
|
|
||||||
'pkipath' => 'application/pkix-pkipath',
|
|
||||||
'plb' => 'application/vnd.3gpp.pic-bw-large',
|
|
||||||
'plc' => 'application/vnd.mobius.plc',
|
|
||||||
'plf' => 'application/vnd.pocketlearn',
|
|
||||||
'pls' => 'application/pls+xml',
|
|
||||||
'pml' => 'application/vnd.ctc-posml',
|
|
||||||
'png' => 'image/png',
|
|
||||||
'pnm' => 'image/x-portable-anymap',
|
|
||||||
'portpkg' => 'application/vnd.macports.portpkg',
|
|
||||||
'pot' => 'application/vnd.ms-powerpoint',
|
|
||||||
'potm' => 'application/vnd.ms-powerpoint.template.macroenabled.12',
|
|
||||||
'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
|
|
||||||
'ppam' => 'application/vnd.ms-powerpoint.addin.macroenabled.12',
|
|
||||||
'ppd' => 'application/vnd.cups-ppd',
|
|
||||||
'ppm' => 'image/x-portable-pixmap',
|
|
||||||
'pps' => 'application/vnd.ms-powerpoint',
|
|
||||||
'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
|
|
||||||
'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
|
|
||||||
'ppt' => 'application/vnd.ms-powerpoint',
|
|
||||||
'pptm' => 'application/vnd.ms-powerpoint.presentation.macroenabled.12',
|
|
||||||
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
||||||
'pqa' => 'application/vnd.palm',
|
|
||||||
'prc' => 'application/x-mobipocket-ebook',
|
|
||||||
'pre' => 'application/vnd.lotus-freelance',
|
|
||||||
'prf' => 'application/pics-rules',
|
|
||||||
'ps' => 'application/postscript',
|
|
||||||
'psb' => 'application/vnd.3gpp.pic-bw-small',
|
|
||||||
'psd' => 'image/vnd.adobe.photoshop',
|
|
||||||
'psf' => 'application/x-font-linux-psf',
|
|
||||||
'pskcxml' => 'application/pskc+xml',
|
|
||||||
'ptid' => 'application/vnd.pvi.ptid1',
|
|
||||||
'pub' => 'application/x-mspublisher',
|
|
||||||
'pvb' => 'application/vnd.3gpp.pic-bw-var',
|
|
||||||
'pwn' => 'application/vnd.3m.post-it-notes',
|
|
||||||
'pya' => 'audio/vnd.ms-playready.media.pya',
|
|
||||||
'pyv' => 'video/vnd.ms-playready.media.pyv',
|
|
||||||
'qam' => 'application/vnd.epson.quickanime',
|
|
||||||
'qbo' => 'application/vnd.intu.qbo',
|
|
||||||
'qfx' => 'application/vnd.intu.qfx',
|
|
||||||
'qps' => 'application/vnd.publishare-delta-tree',
|
|
||||||
'qt' => 'video/quicktime',
|
|
||||||
'qwd' => 'application/vnd.quark.quarkxpress',
|
|
||||||
'qwt' => 'application/vnd.quark.quarkxpress',
|
|
||||||
'qxb' => 'application/vnd.quark.quarkxpress',
|
|
||||||
'qxd' => 'application/vnd.quark.quarkxpress',
|
|
||||||
'qxl' => 'application/vnd.quark.quarkxpress',
|
|
||||||
'qxt' => 'application/vnd.quark.quarkxpress',
|
|
||||||
'ra' => 'audio/x-pn-realaudio',
|
|
||||||
'ram' => 'audio/x-pn-realaudio',
|
|
||||||
'rar' => 'application/x-rar-compressed',
|
|
||||||
'ras' => 'image/x-cmu-raster',
|
|
||||||
'rb' => 'text/plain',
|
|
||||||
'rcprofile' => 'application/vnd.ipunplugged.rcprofile',
|
|
||||||
'rdf' => 'application/rdf+xml',
|
|
||||||
'rdz' => 'application/vnd.data-vision.rdz',
|
|
||||||
'rep' => 'application/vnd.businessobjects',
|
|
||||||
'res' => 'application/x-dtbresource+xml',
|
|
||||||
'resx' => 'text/xml',
|
|
||||||
'rgb' => 'image/x-rgb',
|
|
||||||
'rif' => 'application/reginfo+xml',
|
|
||||||
'rip' => 'audio/vnd.rip',
|
|
||||||
'rl' => 'application/resource-lists+xml',
|
|
||||||
'rlc' => 'image/vnd.fujixerox.edmics-rlc',
|
|
||||||
'rld' => 'application/resource-lists-diff+xml',
|
|
||||||
'rm' => 'application/vnd.rn-realmedia',
|
|
||||||
'rmi' => 'audio/midi',
|
|
||||||
'rmp' => 'audio/x-pn-realaudio-plugin',
|
|
||||||
'rms' => 'application/vnd.jcp.javame.midlet-rms',
|
|
||||||
'rnc' => 'application/relax-ng-compact-syntax',
|
|
||||||
'roff' => 'text/troff',
|
|
||||||
'rp9' => 'application/vnd.cloanto.rp9',
|
|
||||||
'rpss' => 'application/vnd.nokia.radio-presets',
|
|
||||||
'rpst' => 'application/vnd.nokia.radio-preset',
|
|
||||||
'rq' => 'application/sparql-query',
|
|
||||||
'rs' => 'application/rls-services+xml',
|
|
||||||
'rsd' => 'application/rsd+xml',
|
|
||||||
'rss' => 'application/rss+xml',
|
|
||||||
'rtf' => 'application/rtf',
|
|
||||||
'rtx' => 'text/richtext',
|
|
||||||
's' => 'text/x-asm',
|
|
||||||
'saf' => 'application/vnd.yamaha.smaf-audio',
|
|
||||||
'sbml' => 'application/sbml+xml',
|
|
||||||
'sc' => 'application/vnd.ibm.secure-container',
|
|
||||||
'scd' => 'application/x-msschedule',
|
|
||||||
'scm' => 'application/vnd.lotus-screencam',
|
|
||||||
'scq' => 'application/scvp-cv-request',
|
|
||||||
'scs' => 'application/scvp-cv-response',
|
|
||||||
'scurl' => 'text/vnd.curl.scurl',
|
|
||||||
'sda' => 'application/vnd.stardivision.draw',
|
|
||||||
'sdc' => 'application/vnd.stardivision.calc',
|
|
||||||
'sdd' => 'application/vnd.stardivision.impress',
|
|
||||||
'sdkd' => 'application/vnd.solent.sdkm+xml',
|
|
||||||
'sdkm' => 'application/vnd.solent.sdkm+xml',
|
|
||||||
'sdp' => 'application/sdp',
|
|
||||||
'sdw' => 'application/vnd.stardivision.writer',
|
|
||||||
'see' => 'application/vnd.seemail',
|
|
||||||
'seed' => 'application/vnd.fdsn.seed',
|
|
||||||
'sema' => 'application/vnd.sema',
|
|
||||||
'semd' => 'application/vnd.semd',
|
|
||||||
'semf' => 'application/vnd.semf',
|
|
||||||
'ser' => 'application/java-serialized-object',
|
|
||||||
'setpay' => 'application/set-payment-initiation',
|
|
||||||
'setreg' => 'application/set-registration-initiation',
|
|
||||||
'sfd-hdstx' => 'application/vnd.hydrostatix.sof-data',
|
|
||||||
'sfs' => 'application/vnd.spotfire.sfs',
|
|
||||||
'sgl' => 'application/vnd.stardivision.writer-global',
|
|
||||||
'sgm' => 'text/sgml',
|
|
||||||
'sgml' => 'text/sgml',
|
|
||||||
'sh' => 'application/x-sh',
|
|
||||||
'shar' => 'application/x-shar',
|
|
||||||
'shf' => 'application/shf+xml',
|
|
||||||
'sig' => 'application/pgp-signature',
|
|
||||||
'silo' => 'model/mesh',
|
|
||||||
'sis' => 'application/vnd.symbian.install',
|
|
||||||
'sisx' => 'application/vnd.symbian.install',
|
|
||||||
'sit' => 'application/x-stuffit',
|
|
||||||
'sitx' => 'application/x-stuffitx',
|
|
||||||
'skd' => 'application/vnd.koan',
|
|
||||||
'skm' => 'application/vnd.koan',
|
|
||||||
'skp' => 'application/vnd.koan',
|
|
||||||
'skt' => 'application/vnd.koan',
|
|
||||||
'sldm' => 'application/vnd.ms-powerpoint.slide.macroenabled.12',
|
|
||||||
'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
|
|
||||||
'slt' => 'application/vnd.epson.salt',
|
|
||||||
'sm' => 'application/vnd.stepmania.stepchart',
|
|
||||||
'smf' => 'application/vnd.stardivision.math',
|
|
||||||
'smi' => 'application/smil+xml',
|
|
||||||
'smil' => 'application/smil+xml',
|
|
||||||
'snd' => 'audio/basic',
|
|
||||||
'snf' => 'application/x-font-snf',
|
|
||||||
'so' => 'application/octet-stream',
|
|
||||||
'spc' => 'application/x-pkcs7-certificates',
|
|
||||||
'spf' => 'application/vnd.yamaha.smaf-phrase',
|
|
||||||
'spl' => 'application/x-futuresplash',
|
|
||||||
'spot' => 'text/vnd.in3d.spot',
|
|
||||||
'spp' => 'application/scvp-vp-response',
|
|
||||||
'spq' => 'application/scvp-vp-request',
|
|
||||||
'spx' => 'audio/ogg',
|
|
||||||
'src' => 'application/x-wais-source',
|
|
||||||
'sru' => 'application/sru+xml',
|
|
||||||
'srx' => 'application/sparql-results+xml',
|
|
||||||
'sse' => 'application/vnd.kodak-descriptor',
|
|
||||||
'ssf' => 'application/vnd.epson.ssf',
|
|
||||||
'ssml' => 'application/ssml+xml',
|
|
||||||
'st' => 'application/vnd.sailingtracker.track',
|
|
||||||
'stc' => 'application/vnd.sun.xml.calc.template',
|
|
||||||
'std' => 'application/vnd.sun.xml.draw.template',
|
|
||||||
'stf' => 'application/vnd.wt.stf',
|
|
||||||
'sti' => 'application/vnd.sun.xml.impress.template',
|
|
||||||
'stk' => 'application/hyperstudio',
|
|
||||||
'stl' => 'application/vnd.ms-pki.stl',
|
|
||||||
'str' => 'application/vnd.pg.format',
|
|
||||||
'stw' => 'application/vnd.sun.xml.writer.template',
|
|
||||||
'sub' => 'image/vnd.dvb.subtitle',
|
|
||||||
'sus' => 'application/vnd.sus-calendar',
|
|
||||||
'susp' => 'application/vnd.sus-calendar',
|
|
||||||
'sv4cpio' => 'application/x-sv4cpio',
|
|
||||||
'sv4crc' => 'application/x-sv4crc',
|
|
||||||
'svc' => 'application/vnd.dvb.service',
|
|
||||||
'svd' => 'application/vnd.svd',
|
|
||||||
'svg' => 'image/svg+xml',
|
|
||||||
'svgz' => 'image/svg+xml',
|
|
||||||
'swa' => 'application/x-director',
|
|
||||||
'swf' => 'application/x-shockwave-flash',
|
|
||||||
'swi' => 'application/vnd.aristanetworks.swi',
|
|
||||||
'sxc' => 'application/vnd.sun.xml.calc',
|
|
||||||
'sxd' => 'application/vnd.sun.xml.draw',
|
|
||||||
'sxg' => 'application/vnd.sun.xml.writer.global',
|
|
||||||
'sxi' => 'application/vnd.sun.xml.impress',
|
|
||||||
'sxm' => 'application/vnd.sun.xml.math',
|
|
||||||
'sxw' => 'application/vnd.sun.xml.writer',
|
|
||||||
't' => 'text/troff',
|
|
||||||
'tao' => 'application/vnd.tao.intent-module-archive',
|
|
||||||
'tar' => 'application/x-tar',
|
|
||||||
'tcap' => 'application/vnd.3gpp2.tcap',
|
|
||||||
'tcl' => 'application/x-tcl',
|
|
||||||
'teacher' => 'application/vnd.smart.teacher',
|
|
||||||
'tei' => 'application/tei+xml',
|
|
||||||
'teicorpus' => 'application/tei+xml',
|
|
||||||
'tex' => 'application/x-tex',
|
|
||||||
'texi' => 'application/x-texinfo',
|
|
||||||
'texinfo' => 'application/x-texinfo',
|
|
||||||
'text' => 'text/plain',
|
|
||||||
'tfi' => 'application/thraud+xml',
|
|
||||||
'tfm' => 'application/x-tex-tfm',
|
|
||||||
'thmx' => 'application/vnd.ms-officetheme',
|
|
||||||
'tif' => 'image/tiff',
|
|
||||||
'tiff' => 'image/tiff',
|
|
||||||
'tmo' => 'application/vnd.tmobile-livetv',
|
|
||||||
'torrent' => 'application/x-bittorrent',
|
|
||||||
'tpl' => 'application/vnd.groove-tool-template',
|
|
||||||
'tpt' => 'application/vnd.trid.tpt',
|
|
||||||
'tr' => 'text/troff',
|
|
||||||
'tra' => 'application/vnd.trueapp',
|
|
||||||
'trm' => 'application/x-msterminal',
|
|
||||||
'tsd' => 'application/timestamped-data',
|
|
||||||
'tsv' => 'text/tab-separated-values',
|
|
||||||
'ttc' => 'application/x-font-ttf',
|
|
||||||
'ttf' => 'application/x-font-ttf',
|
|
||||||
'ttl' => 'text/turtle',
|
|
||||||
'twd' => 'application/vnd.simtech-mindmapper',
|
|
||||||
'twds' => 'application/vnd.simtech-mindmapper',
|
|
||||||
'txd' => 'application/vnd.genomatix.tuxedo',
|
|
||||||
'txf' => 'application/vnd.mobius.txf',
|
|
||||||
'txt' => 'text/plain',
|
|
||||||
'u32' => 'application/x-authorware-bin',
|
|
||||||
'udeb' => 'application/x-debian-package',
|
|
||||||
'ufd' => 'application/vnd.ufdl',
|
|
||||||
'ufdl' => 'application/vnd.ufdl',
|
|
||||||
'umj' => 'application/vnd.umajin',
|
|
||||||
'unityweb' => 'application/vnd.unity',
|
|
||||||
'uoml' => 'application/vnd.uoml+xml',
|
|
||||||
'uri' => 'text/uri-list',
|
|
||||||
'uris' => 'text/uri-list',
|
|
||||||
'urls' => 'text/uri-list',
|
|
||||||
'ustar' => 'application/x-ustar',
|
|
||||||
'utz' => 'application/vnd.uiq.theme',
|
|
||||||
'uu' => 'text/x-uuencode',
|
|
||||||
'uva' => 'audio/vnd.dece.audio',
|
|
||||||
'uvd' => 'application/vnd.dece.data',
|
|
||||||
'uvf' => 'application/vnd.dece.data',
|
|
||||||
'uvg' => 'image/vnd.dece.graphic',
|
|
||||||
'uvh' => 'video/vnd.dece.hd',
|
|
||||||
'uvi' => 'image/vnd.dece.graphic',
|
|
||||||
'uvm' => 'video/vnd.dece.mobile',
|
|
||||||
'uvp' => 'video/vnd.dece.pd',
|
|
||||||
'uvs' => 'video/vnd.dece.sd',
|
|
||||||
'uvt' => 'application/vnd.dece.ttml+xml',
|
|
||||||
'uvu' => 'video/vnd.uvvu.mp4',
|
|
||||||
'uvv' => 'video/vnd.dece.video',
|
|
||||||
'uvva' => 'audio/vnd.dece.audio',
|
|
||||||
'uvvd' => 'application/vnd.dece.data',
|
|
||||||
'uvvf' => 'application/vnd.dece.data',
|
|
||||||
'uvvg' => 'image/vnd.dece.graphic',
|
|
||||||
'uvvh' => 'video/vnd.dece.hd',
|
|
||||||
'uvvi' => 'image/vnd.dece.graphic',
|
|
||||||
'uvvm' => 'video/vnd.dece.mobile',
|
|
||||||
'uvvp' => 'video/vnd.dece.pd',
|
|
||||||
'uvvs' => 'video/vnd.dece.sd',
|
|
||||||
'uvvt' => 'application/vnd.dece.ttml+xml',
|
|
||||||
'uvvu' => 'video/vnd.uvvu.mp4',
|
|
||||||
'uvvv' => 'video/vnd.dece.video',
|
|
||||||
'uvvx' => 'application/vnd.dece.unspecified',
|
|
||||||
'uvx' => 'application/vnd.dece.unspecified',
|
|
||||||
'vcd' => 'application/x-cdlink',
|
|
||||||
'vcf' => 'text/x-vcard',
|
|
||||||
'vcg' => 'application/vnd.groove-vcard',
|
|
||||||
'vcs' => 'text/x-vcalendar',
|
|
||||||
'vcx' => 'application/vnd.vcx',
|
|
||||||
'vis' => 'application/vnd.visionary',
|
|
||||||
'viv' => 'video/vnd.vivo',
|
|
||||||
'vor' => 'application/vnd.stardivision.writer',
|
|
||||||
'vox' => 'application/x-authorware-bin',
|
|
||||||
'vrml' => 'model/vrml',
|
|
||||||
'vsd' => 'application/vnd.visio',
|
|
||||||
'vsf' => 'application/vnd.vsf',
|
|
||||||
'vss' => 'application/vnd.visio',
|
|
||||||
'vst' => 'application/vnd.visio',
|
|
||||||
'vsw' => 'application/vnd.visio',
|
|
||||||
'vtu' => 'model/vnd.vtu',
|
|
||||||
'vxml' => 'application/voicexml+xml',
|
|
||||||
'w3d' => 'application/x-director',
|
|
||||||
'wad' => 'application/x-doom',
|
|
||||||
'wav' => 'audio/x-wav',
|
|
||||||
'wax' => 'audio/x-ms-wax',
|
|
||||||
'wbmp' => 'image/vnd.wap.wbmp',
|
|
||||||
'wbs' => 'application/vnd.criticaltools.wbs+xml',
|
|
||||||
'wbxml' => 'application/vnd.wap.wbxml',
|
|
||||||
'wcm' => 'application/vnd.ms-works',
|
|
||||||
'wdb' => 'application/vnd.ms-works',
|
|
||||||
'weba' => 'audio/webm',
|
|
||||||
'webm' => 'video/webm',
|
|
||||||
'webp' => 'image/webp',
|
|
||||||
'wg' => 'application/vnd.pmi.widget',
|
|
||||||
'wgt' => 'application/widget',
|
|
||||||
'wks' => 'application/vnd.ms-works',
|
|
||||||
'wm' => 'video/x-ms-wm',
|
|
||||||
'wma' => 'audio/x-ms-wma',
|
|
||||||
'wmd' => 'application/x-ms-wmd',
|
|
||||||
'wmf' => 'application/x-msmetafile',
|
|
||||||
'wml' => 'text/vnd.wap.wml',
|
|
||||||
'wmlc' => 'application/vnd.wap.wmlc',
|
|
||||||
'wmls' => 'text/vnd.wap.wmlscript',
|
|
||||||
'wmlsc' => 'application/vnd.wap.wmlscriptc',
|
|
||||||
'wmv' => 'video/x-ms-wmv',
|
|
||||||
'wmx' => 'video/x-ms-wmx',
|
|
||||||
'wmz' => 'application/x-ms-wmz',
|
|
||||||
'woff' => 'application/x-font-woff',
|
|
||||||
'wpd' => 'application/vnd.wordperfect',
|
|
||||||
'wpl' => 'application/vnd.ms-wpl',
|
|
||||||
'wps' => 'application/vnd.ms-works',
|
|
||||||
'wqd' => 'application/vnd.wqd',
|
|
||||||
'wri' => 'application/x-mswrite',
|
|
||||||
'wrl' => 'model/vrml',
|
|
||||||
'wsdl' => 'application/wsdl+xml',
|
|
||||||
'wspolicy' => 'application/wspolicy+xml',
|
|
||||||
'wtb' => 'application/vnd.webturbo',
|
|
||||||
'wvx' => 'video/x-ms-wvx',
|
|
||||||
'x32' => 'application/x-authorware-bin',
|
|
||||||
'x3d' => 'application/vnd.hzn-3d-crossword',
|
|
||||||
'xap' => 'application/x-silverlight-app',
|
|
||||||
'xar' => 'application/vnd.xara',
|
|
||||||
'xbap' => 'application/x-ms-xbap',
|
|
||||||
'xbd' => 'application/vnd.fujixerox.docuworks.binder',
|
|
||||||
'xbm' => 'image/x-xbitmap',
|
|
||||||
'xdf' => 'application/xcap-diff+xml',
|
|
||||||
'xdm' => 'application/vnd.syncml.dm+xml',
|
|
||||||
'xdp' => 'application/vnd.adobe.xdp+xml',
|
|
||||||
'xdssc' => 'application/dssc+xml',
|
|
||||||
'xdw' => 'application/vnd.fujixerox.docuworks',
|
|
||||||
'xenc' => 'application/xenc+xml',
|
|
||||||
'xer' => 'application/patch-ops-error+xml',
|
|
||||||
'xfdf' => 'application/vnd.adobe.xfdf',
|
|
||||||
'xfdl' => 'application/vnd.xfdl',
|
|
||||||
'xht' => 'application/xhtml+xml',
|
|
||||||
'xhtml' => 'application/xhtml+xml',
|
|
||||||
'xhvml' => 'application/xv+xml',
|
|
||||||
'xif' => 'image/vnd.xiff',
|
|
||||||
'xla' => 'application/vnd.ms-excel',
|
|
||||||
'xlam' => 'application/vnd.ms-excel.addin.macroenabled.12',
|
|
||||||
'xlc' => 'application/vnd.ms-excel',
|
|
||||||
'xlm' => 'application/vnd.ms-excel',
|
|
||||||
'xls' => 'application/vnd.ms-excel',
|
|
||||||
'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroenabled.12',
|
|
||||||
'xlsm' => 'application/vnd.ms-excel.sheet.macroenabled.12',
|
|
||||||
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
||||||
'xlt' => 'application/vnd.ms-excel',
|
|
||||||
'xltm' => 'application/vnd.ms-excel.template.macroenabled.12',
|
|
||||||
'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
|
|
||||||
'xlw' => 'application/vnd.ms-excel',
|
|
||||||
'xml' => 'application/xml',
|
|
||||||
'xo' => 'application/vnd.olpc-sugar',
|
|
||||||
'xop' => 'application/xop+xml',
|
|
||||||
'xpi' => 'application/x-xpinstall',
|
|
||||||
'xpm' => 'image/x-xpixmap',
|
|
||||||
'xpr' => 'application/vnd.is-xpr',
|
|
||||||
'xps' => 'application/vnd.ms-xpsdocument',
|
|
||||||
'xpw' => 'application/vnd.intercon.formnet',
|
|
||||||
'xpx' => 'application/vnd.intercon.formnet',
|
|
||||||
'xsl' => 'application/xml',
|
|
||||||
'xslt' => 'application/xslt+xml',
|
|
||||||
'xsm' => 'application/vnd.syncml+xml',
|
|
||||||
'xspf' => 'application/xspf+xml',
|
|
||||||
'xul' => 'application/vnd.mozilla.xul+xml',
|
|
||||||
'xvm' => 'application/xv+xml',
|
|
||||||
'xvml' => 'application/xv+xml',
|
|
||||||
'xwd' => 'image/x-xwindowdump',
|
|
||||||
'xyz' => 'chemical/x-xyz',
|
|
||||||
'yaml' => 'text/yaml',
|
|
||||||
'yang' => 'application/yang',
|
|
||||||
'yin' => 'application/yin+xml',
|
|
||||||
'yml' => 'text/yaml',
|
|
||||||
'zaz' => 'application/vnd.zzazz.deck+xml',
|
|
||||||
'zip' => 'application/zip',
|
|
||||||
'zir' => 'application/vnd.zul',
|
|
||||||
'zirz' => 'application/vnd.zul',
|
|
||||||
'zmm' => 'application/vnd.handheld-entertainment+xml'
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a singleton instance of the class
|
|
||||||
*
|
|
||||||
* @return self
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
|
||||||
public static function getInstance()
|
|
||||||
{
|
|
||||||
if (!self::$instance) {
|
|
||||||
self::$instance = new self();
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::$instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a mimetype value from a file extension
|
|
||||||
*
|
|
||||||
* @param string $extension File extension
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function fromExtension($extension)
|
|
||||||
{
|
|
||||||
$extension = strtolower($extension);
|
|
||||||
|
|
||||||
return isset($this->mimetypes[$extension]) ? $this->mimetypes[$extension] : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a mimetype from a filename
|
|
||||||
*
|
|
||||||
* @param string $filename Filename to generate a mimetype from
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function fromFilename($filename)
|
|
||||||
{
|
|
||||||
return $this->fromExtension(pathinfo($filename, PATHINFO_EXTENSION));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,242 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Collection
|
|
||||||
*
|
|
||||||
* Modified version of Collection in "illuminate/support" by Taylor Otwell
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
|
|
||||||
use ArrayAccess;
|
|
||||||
use ArrayIterator;
|
|
||||||
use Countable;
|
|
||||||
use IteratorAggregate;
|
|
||||||
|
|
||||||
class Collection implements ArrayAccess, Countable, IteratorAggregate
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The items contained in the collection.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $items = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new collection.
|
|
||||||
*
|
|
||||||
* @param array $items
|
|
||||||
*/
|
|
||||||
public function __construct(array $items = [])
|
|
||||||
{
|
|
||||||
$this->items = $items;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of a field from the Graph node.
|
|
||||||
*
|
|
||||||
* @param string $name The field to retrieve.
|
|
||||||
* @param mixed $default The default to return if the field doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function getField($name, $default = null)
|
|
||||||
{
|
|
||||||
if (isset($this->items[$name])) {
|
|
||||||
return $this->items[$name];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $default ?: null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the named property for this graph object.
|
|
||||||
*
|
|
||||||
* @param string $name The property to retrieve.
|
|
||||||
* @param mixed $default The default to return if the property doesn't exist.
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 getProperty() has been renamed to getField()
|
|
||||||
* @todo v6: Remove this method
|
|
||||||
*/
|
|
||||||
public function getProperty($name, $default = null)
|
|
||||||
{
|
|
||||||
return $this->getField($name, $default);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a list of all fields set on the object.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getFieldNames()
|
|
||||||
{
|
|
||||||
return array_keys($this->items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a list of all properties set on the object.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 getPropertyNames() has been renamed to getFieldNames()
|
|
||||||
* @todo v6: Remove this method
|
|
||||||
*/
|
|
||||||
public function getPropertyNames()
|
|
||||||
{
|
|
||||||
return $this->getFieldNames();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get all of the items in the collection.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function all()
|
|
||||||
{
|
|
||||||
return $this->items;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the collection of items as a plain array.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function asArray()
|
|
||||||
{
|
|
||||||
return array_map(function ($value) {
|
|
||||||
return $value instanceof Collection ? $value->asArray() : $value;
|
|
||||||
}, $this->items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Run a map over each of the items.
|
|
||||||
*
|
|
||||||
* @param \Closure $callback
|
|
||||||
*
|
|
||||||
* @return static
|
|
||||||
*/
|
|
||||||
public function map(\Closure $callback)
|
|
||||||
{
|
|
||||||
return new static(array_map($callback, $this->items, array_keys($this->items)));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the collection of items as JSON.
|
|
||||||
*
|
|
||||||
* @param int $options
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function asJson($options = 0)
|
|
||||||
{
|
|
||||||
return json_encode($this->asArray(), $options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Count the number of items in the collection.
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function count()
|
|
||||||
{
|
|
||||||
return count($this->items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an iterator for the items.
|
|
||||||
*
|
|
||||||
* @return ArrayIterator
|
|
||||||
*/
|
|
||||||
public function getIterator()
|
|
||||||
{
|
|
||||||
return new ArrayIterator($this->items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determine if an item exists at an offset.
|
|
||||||
*
|
|
||||||
* @param mixed $key
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function offsetExists($key)
|
|
||||||
{
|
|
||||||
return array_key_exists($key, $this->items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get an item at a given offset.
|
|
||||||
*
|
|
||||||
* @param mixed $key
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function offsetGet($key)
|
|
||||||
{
|
|
||||||
return $this->items[$key];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the item at a given offset.
|
|
||||||
*
|
|
||||||
* @param mixed $key
|
|
||||||
* @param mixed $value
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function offsetSet($key, $value)
|
|
||||||
{
|
|
||||||
if (is_null($key)) {
|
|
||||||
$this->items[] = $value;
|
|
||||||
} else {
|
|
||||||
$this->items[$key] = $value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Unset the item at a given offset.
|
|
||||||
*
|
|
||||||
* @param string $key
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function offsetUnset($key)
|
|
||||||
{
|
|
||||||
unset($this->items[$key]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert the collection to its string representation.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function __toString()
|
|
||||||
{
|
|
||||||
return $this->asJson();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphAchievement
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
|
|
||||||
class GraphAchievement extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to Graph object types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [
|
|
||||||
'from' => '\Facebook\GraphNodes\GraphUser',
|
|
||||||
'application' => '\Facebook\GraphNodes\GraphApplication',
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID for the achievement.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the user who achieved this.
|
|
||||||
*
|
|
||||||
* @return GraphUser|null
|
|
||||||
*/
|
|
||||||
public function getFrom()
|
|
||||||
{
|
|
||||||
return $this->getField('from');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the time at which this was achieved.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getPublishTime()
|
|
||||||
{
|
|
||||||
return $this->getField('publish_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the app in which the user achieved this.
|
|
||||||
*
|
|
||||||
* @return GraphApplication|null
|
|
||||||
*/
|
|
||||||
public function getApplication()
|
|
||||||
{
|
|
||||||
return $this->getField('application');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns information about the achievement type this instance is connected with.
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
public function getData()
|
|
||||||
{
|
|
||||||
return $this->getField('data');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the type of achievement.
|
|
||||||
*
|
|
||||||
* @see https://developers.facebook.com/docs/graph-api/reference/v2.2/achievement
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getType()
|
|
||||||
{
|
|
||||||
return 'game.achievement';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Indicates whether gaining the achievement published a feed story for the user.
|
|
||||||
*
|
|
||||||
* @return boolean|null
|
|
||||||
*/
|
|
||||||
public function isNoFeedStory()
|
|
||||||
{
|
|
||||||
return $this->getField('no_feed_story');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,183 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphAlbum
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
|
|
||||||
class GraphAlbum extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to Graph object types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [
|
|
||||||
'from' => '\Facebook\GraphNodes\GraphUser',
|
|
||||||
'place' => '\Facebook\GraphNodes\GraphPage',
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID for the album.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns whether the viewer can upload photos to this album.
|
|
||||||
*
|
|
||||||
* @return boolean|null
|
|
||||||
*/
|
|
||||||
public function getCanUpload()
|
|
||||||
{
|
|
||||||
return $this->getField('can_upload');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the number of photos in this album.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getCount()
|
|
||||||
{
|
|
||||||
return $this->getField('count');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID of the album's cover photo.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getCoverPhoto()
|
|
||||||
{
|
|
||||||
return $this->getField('cover_photo');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the time the album was initially created.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getCreatedTime()
|
|
||||||
{
|
|
||||||
return $this->getField('created_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the time the album was updated.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getUpdatedTime()
|
|
||||||
{
|
|
||||||
return $this->getField('updated_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the description of the album.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getDescription()
|
|
||||||
{
|
|
||||||
return $this->getField('description');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns profile that created the album.
|
|
||||||
*
|
|
||||||
* @return GraphUser|null
|
|
||||||
*/
|
|
||||||
public function getFrom()
|
|
||||||
{
|
|
||||||
return $this->getField('from');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns profile that created the album.
|
|
||||||
*
|
|
||||||
* @return GraphPage|null
|
|
||||||
*/
|
|
||||||
public function getPlace()
|
|
||||||
{
|
|
||||||
return $this->getField('place');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a link to this album on Facebook.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getLink()
|
|
||||||
{
|
|
||||||
return $this->getField('link');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the textual location of the album.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getLocation()
|
|
||||||
{
|
|
||||||
return $this->getField('location');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the title of the album.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return $this->getField('name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the privacy settings for the album.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getPrivacy()
|
|
||||||
{
|
|
||||||
return $this->getField('privacy');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the type of the album.
|
|
||||||
*
|
|
||||||
* enum{ profile, mobile, wall, normal, album }
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getType()
|
|
||||||
{
|
|
||||||
return $this->getField('type');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphApplication
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
|
|
||||||
class GraphApplication extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns the ID for the application.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphCoverPhoto
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphCoverPhoto extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns the id of cover if it exists
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the source of cover if it exists
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getSource()
|
|
||||||
{
|
|
||||||
return $this->getField('source');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the offset_x of cover if it exists
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getOffsetX()
|
|
||||||
{
|
|
||||||
return $this->getField('offset_x');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the offset_y of cover if it exists
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getOffsetY()
|
|
||||||
{
|
|
||||||
return $this->getField('offset_y');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,260 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
use Facebook\FacebookRequest;
|
|
||||||
use Facebook\Url\FacebookUrlManipulator;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphEdge
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphEdge extends Collection
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var FacebookRequest The original request that generated this data.
|
|
||||||
*/
|
|
||||||
protected $request;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array An array of Graph meta data like pagination, etc.
|
|
||||||
*/
|
|
||||||
protected $metaData = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string|null The parent Graph edge endpoint that generated the list.
|
|
||||||
*/
|
|
||||||
protected $parentEdgeEndpoint;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string|null The subclass of the child GraphNode's.
|
|
||||||
*/
|
|
||||||
protected $subclassName;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Init this collection of GraphNode's.
|
|
||||||
*
|
|
||||||
* @param FacebookRequest $request The original request that generated this data.
|
|
||||||
* @param array $data An array of GraphNode's.
|
|
||||||
* @param array $metaData An array of Graph meta data like pagination, etc.
|
|
||||||
* @param string|null $parentEdgeEndpoint The parent Graph edge endpoint that generated the list.
|
|
||||||
* @param string|null $subclassName The subclass of the child GraphNode's.
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookRequest $request, array $data = [], array $metaData = [], $parentEdgeEndpoint = null, $subclassName = null)
|
|
||||||
{
|
|
||||||
$this->request = $request;
|
|
||||||
$this->metaData = $metaData;
|
|
||||||
$this->parentEdgeEndpoint = $parentEdgeEndpoint;
|
|
||||||
$this->subclassName = $subclassName;
|
|
||||||
|
|
||||||
parent::__construct($data);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the parent Graph edge endpoint that generated the list.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getParentGraphEdge()
|
|
||||||
{
|
|
||||||
return $this->parentEdgeEndpoint;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the subclass name that the child GraphNode's are cast as.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getSubClassName()
|
|
||||||
{
|
|
||||||
return $this->subclassName;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the raw meta data associated with this GraphEdge.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getMetaData()
|
|
||||||
{
|
|
||||||
return $this->metaData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the next cursor if it exists.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getNextCursor()
|
|
||||||
{
|
|
||||||
return $this->getCursor('after');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the previous cursor if it exists.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getPreviousCursor()
|
|
||||||
{
|
|
||||||
return $this->getCursor('before');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the cursor for a specific direction if it exists.
|
|
||||||
*
|
|
||||||
* @param string $direction The direction of the page: after|before
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getCursor($direction)
|
|
||||||
{
|
|
||||||
if (isset($this->metaData['paging']['cursors'][$direction])) {
|
|
||||||
return $this->metaData['paging']['cursors'][$direction];
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generates a pagination URL based on a cursor.
|
|
||||||
*
|
|
||||||
* @param string $direction The direction of the page: next|previous
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getPaginationUrl($direction)
|
|
||||||
{
|
|
||||||
$this->validateForPagination();
|
|
||||||
|
|
||||||
// Do we have a paging URL?
|
|
||||||
if (isset($this->metaData['paging'][$direction])) {
|
|
||||||
// Graph returns the full URL with all the original params.
|
|
||||||
// We just want the endpoint though.
|
|
||||||
$pageUrl = $this->metaData['paging'][$direction];
|
|
||||||
|
|
||||||
return FacebookUrlManipulator::baseGraphUrlEndpoint($pageUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Do we have a cursor to work with?
|
|
||||||
$cursorDirection = $direction === 'next' ? 'after' : 'before';
|
|
||||||
$cursor = $this->getCursor($cursorDirection);
|
|
||||||
if (!$cursor) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If we don't know the ID of the parent node, this ain't gonna work.
|
|
||||||
if (!$this->parentEdgeEndpoint) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// We have the parent node ID, paging cursor & original request.
|
|
||||||
// These were the ingredients chosen to create the perfect little URL.
|
|
||||||
$pageUrl = $this->parentEdgeEndpoint . '?' . $cursorDirection . '=' . urlencode($cursor);
|
|
||||||
|
|
||||||
// Pull in the original params
|
|
||||||
$originalUrl = $this->request->getUrl();
|
|
||||||
$pageUrl = FacebookUrlManipulator::mergeUrlParams($originalUrl, $pageUrl);
|
|
||||||
|
|
||||||
return FacebookUrlManipulator::forceSlashPrefix($pageUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validates whether or not we can paginate on this request.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateForPagination()
|
|
||||||
{
|
|
||||||
if ($this->request->getMethod() !== 'GET') {
|
|
||||||
throw new FacebookSDKException('You can only paginate on a GET request.', 720);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the request object needed to make a next|previous page request.
|
|
||||||
*
|
|
||||||
* @param string $direction The direction of the page: next|previous
|
|
||||||
*
|
|
||||||
* @return FacebookRequest|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getPaginationRequest($direction)
|
|
||||||
{
|
|
||||||
$pageUrl = $this->getPaginationUrl($direction);
|
|
||||||
if (!$pageUrl) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$newRequest = clone $this->request;
|
|
||||||
$newRequest->setEndpoint($pageUrl);
|
|
||||||
|
|
||||||
return $newRequest;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the request object needed to make a "next" page request.
|
|
||||||
*
|
|
||||||
* @return FacebookRequest|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getNextPageRequest()
|
|
||||||
{
|
|
||||||
return $this->getPaginationRequest('next');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the request object needed to make a "previous" page request.
|
|
||||||
*
|
|
||||||
* @return FacebookRequest|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getPreviousPageRequest()
|
|
||||||
{
|
|
||||||
return $this->getPaginationRequest('previous');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The total number of results according to Graph if it exists.
|
|
||||||
*
|
|
||||||
* This will be returned if the summary=true modifier is present in the request.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getTotalCount()
|
|
||||||
{
|
|
||||||
if (isset($this->metaData['summary']['total_count'])) {
|
|
||||||
return $this->metaData['summary']['total_count'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,242 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphEvent
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphEvent extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to GraphNode types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [
|
|
||||||
'cover' => '\Facebook\GraphNodes\GraphCoverPhoto',
|
|
||||||
'place' => '\Facebook\GraphNodes\GraphPage',
|
|
||||||
'picture' => '\Facebook\GraphNodes\GraphPicture',
|
|
||||||
'parent_group' => '\Facebook\GraphNodes\GraphGroup',
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `id` (The event ID) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `cover` (Cover picture) as GraphCoverPhoto if present.
|
|
||||||
*
|
|
||||||
* @return GraphCoverPhoto|null
|
|
||||||
*/
|
|
||||||
public function getCover()
|
|
||||||
{
|
|
||||||
return $this->getField('cover');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `description` (Long-form description) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getDescription()
|
|
||||||
{
|
|
||||||
return $this->getField('description');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `end_time` (End time, if one has been set) as DateTime if present.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getEndTime()
|
|
||||||
{
|
|
||||||
return $this->getField('end_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `is_date_only` (Whether the event only has a date specified, but no time) as bool if present.
|
|
||||||
*
|
|
||||||
* @return bool|null
|
|
||||||
*/
|
|
||||||
public function getIsDateOnly()
|
|
||||||
{
|
|
||||||
return $this->getField('is_date_only');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `name` (Event name) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return $this->getField('name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `owner` (The profile that created the event) as GraphNode if present.
|
|
||||||
*
|
|
||||||
* @return GraphNode|null
|
|
||||||
*/
|
|
||||||
public function getOwner()
|
|
||||||
{
|
|
||||||
return $this->getField('owner');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `parent_group` (The group the event belongs to) as GraphGroup if present.
|
|
||||||
*
|
|
||||||
* @return GraphGroup|null
|
|
||||||
*/
|
|
||||||
public function getParentGroup()
|
|
||||||
{
|
|
||||||
return $this->getField('parent_group');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `place` (Event Place information) as GraphPage if present.
|
|
||||||
*
|
|
||||||
* @return GraphPage|null
|
|
||||||
*/
|
|
||||||
public function getPlace()
|
|
||||||
{
|
|
||||||
return $this->getField('place');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `privacy` (Who can see the event) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getPrivacy()
|
|
||||||
{
|
|
||||||
return $this->getField('privacy');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `start_time` (Start time) as DateTime if present.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getStartTime()
|
|
||||||
{
|
|
||||||
return $this->getField('start_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `ticket_uri` (The link users can visit to buy a ticket to this event) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getTicketUri()
|
|
||||||
{
|
|
||||||
return $this->getField('ticket_uri');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `timezone` (Timezone) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getTimezone()
|
|
||||||
{
|
|
||||||
return $this->getField('timezone');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `updated_time` (Last update time) as DateTime if present.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getUpdatedTime()
|
|
||||||
{
|
|
||||||
return $this->getField('updated_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `picture` (Event picture) as GraphPicture if present.
|
|
||||||
*
|
|
||||||
* @return GraphPicture|null
|
|
||||||
*/
|
|
||||||
public function getPicture()
|
|
||||||
{
|
|
||||||
return $this->getField('picture');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `attending_count` (Number of people attending the event) as int if present.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getAttendingCount()
|
|
||||||
{
|
|
||||||
return $this->getField('attending_count');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `declined_count` (Number of people who declined the event) as int if present.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getDeclinedCount()
|
|
||||||
{
|
|
||||||
return $this->getField('declined_count');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `maybe_count` (Number of people who maybe going to the event) as int if present.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getMaybeCount()
|
|
||||||
{
|
|
||||||
return $this->getField('maybe_count');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `noreply_count` (Number of people who did not reply to the event) as int if present.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getNoreplyCount()
|
|
||||||
{
|
|
||||||
return $this->getField('noreply_count');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `invited_count` (Number of people invited to the event) as int if present.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getInvitedCount()
|
|
||||||
{
|
|
||||||
return $this->getField('invited_count');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,171 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphGroup
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphGroup extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to GraphNode types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [
|
|
||||||
'cover' => '\Facebook\GraphNodes\GraphCoverPhoto',
|
|
||||||
'venue' => '\Facebook\GraphNodes\GraphLocation',
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `id` (The Group ID) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `cover` (The cover photo of the Group) as GraphCoverPhoto if present.
|
|
||||||
*
|
|
||||||
* @return GraphCoverPhoto|null
|
|
||||||
*/
|
|
||||||
public function getCover()
|
|
||||||
{
|
|
||||||
return $this->getField('cover');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `description` (A brief description of the Group) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getDescription()
|
|
||||||
{
|
|
||||||
return $this->getField('description');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `email` (The email address to upload content to the Group. Only current members of the Group can use this) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getEmail()
|
|
||||||
{
|
|
||||||
return $this->getField('email');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `icon` (The URL for the Group's icon) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getIcon()
|
|
||||||
{
|
|
||||||
return $this->getField('icon');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `link` (The Group's website) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getLink()
|
|
||||||
{
|
|
||||||
return $this->getField('link');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `name` (The name of the Group) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return $this->getField('name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `member_request_count` (Number of people asking to join the group.) as int if present.
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getMemberRequestCount()
|
|
||||||
{
|
|
||||||
return $this->getField('member_request_count');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `owner` (The profile that created this Group) as GraphNode if present.
|
|
||||||
*
|
|
||||||
* @return GraphNode|null
|
|
||||||
*/
|
|
||||||
public function getOwner()
|
|
||||||
{
|
|
||||||
return $this->getField('owner');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `parent` (The parent Group of this Group, if it exists) as GraphNode if present.
|
|
||||||
*
|
|
||||||
* @return GraphNode|null
|
|
||||||
*/
|
|
||||||
public function getParent()
|
|
||||||
{
|
|
||||||
return $this->getField('parent');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `privacy` (The privacy setting of the Group) as string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getPrivacy()
|
|
||||||
{
|
|
||||||
return $this->getField('privacy');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `updated_time` (The last time the Group was updated (this includes changes in the Group's properties and changes in posts and comments if user can see them)) as \DateTime if present.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getUpdatedTime()
|
|
||||||
{
|
|
||||||
return $this->getField('updated_time');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the `venue` (The location for the Group) as GraphLocation if present.
|
|
||||||
*
|
|
||||||
* @return GraphLocation|null
|
|
||||||
*/
|
|
||||||
public function getVenue()
|
|
||||||
{
|
|
||||||
return $this->getField('venue');
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphList
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 GraphList has been renamed to GraphEdge
|
|
||||||
* @todo v6: Remove this class
|
|
||||||
*/
|
|
||||||
class GraphList extends GraphEdge
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphLocation
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphLocation extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns the street component of the location
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getStreet()
|
|
||||||
{
|
|
||||||
return $this->getField('street');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the city component of the location
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getCity()
|
|
||||||
{
|
|
||||||
return $this->getField('city');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the state component of the location
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getState()
|
|
||||||
{
|
|
||||||
return $this->getField('state');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the country component of the location
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getCountry()
|
|
||||||
{
|
|
||||||
return $this->getField('country');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the zipcode component of the location
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getZip()
|
|
||||||
{
|
|
||||||
return $this->getField('zip');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the latitude component of the location
|
|
||||||
*
|
|
||||||
* @return float|null
|
|
||||||
*/
|
|
||||||
public function getLatitude()
|
|
||||||
{
|
|
||||||
return $this->getField('latitude');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the street component of the location
|
|
||||||
*
|
|
||||||
* @return float|null
|
|
||||||
*/
|
|
||||||
public function getLongitude()
|
|
||||||
{
|
|
||||||
return $this->getField('longitude');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphNode
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphNode extends Collection
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to Graph object types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Init this Graph object.
|
|
||||||
*
|
|
||||||
* @param array $data
|
|
||||||
*/
|
|
||||||
public function __construct(array $data = [])
|
|
||||||
{
|
|
||||||
parent::__construct($this->castItems($data));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Iterates over an array and detects the types each node
|
|
||||||
* should be cast to and returns all the items as an array.
|
|
||||||
*
|
|
||||||
* @TODO Add auto-casting to AccessToken entities.
|
|
||||||
*
|
|
||||||
* @param array $data The array to iterate over.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function castItems(array $data)
|
|
||||||
{
|
|
||||||
$items = [];
|
|
||||||
|
|
||||||
foreach ($data as $k => $v) {
|
|
||||||
if ($this->shouldCastAsDateTime($k)
|
|
||||||
&& (is_numeric($v)
|
|
||||||
|| $k === 'birthday'
|
|
||||||
|| $this->isIso8601DateString($v))
|
|
||||||
) {
|
|
||||||
$items[$k] = $this->castToDateTime($v);
|
|
||||||
} else {
|
|
||||||
$items[$k] = $v;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $items;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Uncasts any auto-casted datatypes.
|
|
||||||
* Basically the reverse of castItems().
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function uncastItems()
|
|
||||||
{
|
|
||||||
$items = $this->asArray();
|
|
||||||
|
|
||||||
return array_map(function ($v) {
|
|
||||||
if ($v instanceof \DateTime) {
|
|
||||||
return $v->format(\DateTime::ISO8601);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $v;
|
|
||||||
}, $items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the collection of items as JSON.
|
|
||||||
*
|
|
||||||
* @param int $options
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function asJson($options = 0)
|
|
||||||
{
|
|
||||||
return json_encode($this->uncastItems(), $options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Detects an ISO 8601 formatted string.
|
|
||||||
*
|
|
||||||
* @param string $string
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*
|
|
||||||
* @see https://developers.facebook.com/docs/graph-api/using-graph-api/#readmodifiers
|
|
||||||
* @see http://www.cl.cam.ac.uk/~mgk25/iso-time.html
|
|
||||||
* @see http://en.wikipedia.org/wiki/ISO_8601
|
|
||||||
*/
|
|
||||||
public function isIso8601DateString($string)
|
|
||||||
{
|
|
||||||
// This insane regex was yoinked from here:
|
|
||||||
// http://www.pelagodesign.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
|
|
||||||
// ...and I'm all like:
|
|
||||||
// http://thecodinglove.com/post/95378251969/when-code-works-and-i-dont-know-why
|
|
||||||
$crazyInsaneRegexThatSomehowDetectsIso8601 = '/^([\+-]?\d{4}(?!\d{2}\b))'
|
|
||||||
. '((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?'
|
|
||||||
. '|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d'
|
|
||||||
. '|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])'
|
|
||||||
. '((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d'
|
|
||||||
. '([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$/';
|
|
||||||
|
|
||||||
return preg_match($crazyInsaneRegexThatSomehowDetectsIso8601, $string) === 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines if a value from Graph should be cast to DateTime.
|
|
||||||
*
|
|
||||||
* @param string $key
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function shouldCastAsDateTime($key)
|
|
||||||
{
|
|
||||||
return in_array($key, [
|
|
||||||
'created_time',
|
|
||||||
'updated_time',
|
|
||||||
'start_time',
|
|
||||||
'end_time',
|
|
||||||
'backdated_time',
|
|
||||||
'issued_at',
|
|
||||||
'expires_at',
|
|
||||||
'birthday',
|
|
||||||
'publish_time'
|
|
||||||
], true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Casts a date value from Graph to DateTime.
|
|
||||||
*
|
|
||||||
* @param int|string $value
|
|
||||||
*
|
|
||||||
* @return \DateTime
|
|
||||||
*/
|
|
||||||
public function castToDateTime($value)
|
|
||||||
{
|
|
||||||
if (is_int($value)) {
|
|
||||||
$dt = new \DateTime();
|
|
||||||
$dt->setTimestamp($value);
|
|
||||||
} else {
|
|
||||||
$dt = new \DateTime($value);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Getter for $graphObjectMap.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static function getObjectMap()
|
|
||||||
{
|
|
||||||
return static::$graphObjectMap;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,392 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
use Facebook\FacebookResponse;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphNodeFactory
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*
|
|
||||||
* ## Assumptions ##
|
|
||||||
* GraphEdge - is ALWAYS a numeric array
|
|
||||||
* GraphEdge - is ALWAYS an array of GraphNode types
|
|
||||||
* GraphNode - is ALWAYS an associative array
|
|
||||||
* GraphNode - MAY contain GraphNode's "recurrable"
|
|
||||||
* GraphNode - MAY contain GraphEdge's "recurrable"
|
|
||||||
* GraphNode - MAY contain DateTime's "primitives"
|
|
||||||
* GraphNode - MAY contain string's "primitives"
|
|
||||||
*/
|
|
||||||
class GraphNodeFactory
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @const string The base graph object class.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_NODE_CLASS = '\Facebook\GraphNodes\GraphNode';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string The base graph edge class.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_EDGE_CLASS = '\Facebook\GraphNodes\GraphEdge';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string The graph object prefix.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_OBJECT_PREFIX = '\Facebook\GraphNodes\\';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var FacebookResponse The response entity from Graph.
|
|
||||||
*/
|
|
||||||
protected $response;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array The decoded body of the FacebookResponse entity from Graph.
|
|
||||||
*/
|
|
||||||
protected $decodedBody;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Init this Graph object.
|
|
||||||
*
|
|
||||||
* @param FacebookResponse $response The response entity from Graph.
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookResponse $response)
|
|
||||||
{
|
|
||||||
$this->response = $response;
|
|
||||||
$this->decodedBody = $response->getDecodedBody();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to convert a FacebookResponse entity into a GraphNode.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast to.
|
|
||||||
*
|
|
||||||
* @return GraphNode
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphNode($subclassName = null)
|
|
||||||
{
|
|
||||||
$this->validateResponseAsArray();
|
|
||||||
$this->validateResponseCastableAsGraphNode();
|
|
||||||
|
|
||||||
return $this->castAsGraphNodeOrGraphEdge($this->decodedBody, $subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphAchievement collection.
|
|
||||||
*
|
|
||||||
* @return GraphAchievement
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphAchievement()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphAchievement');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphAlbum collection.
|
|
||||||
*
|
|
||||||
* @return GraphAlbum
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphAlbum()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphAlbum');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphPage collection.
|
|
||||||
*
|
|
||||||
* @return GraphPage
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphPage()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphPage');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphSessionInfo collection.
|
|
||||||
*
|
|
||||||
* @return GraphSessionInfo
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphSessionInfo()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphSessionInfo');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphUser collection.
|
|
||||||
*
|
|
||||||
* @return GraphUser
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphUser()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphUser');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphEvent collection.
|
|
||||||
*
|
|
||||||
* @return GraphEvent
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphEvent()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphEvent');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphGroup collection.
|
|
||||||
*
|
|
||||||
* @return GraphGroup
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphGroup()
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphGroup');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to convert a FacebookResponse entity into a GraphEdge.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast the list items to.
|
|
||||||
* @param boolean $auto_prefix Toggle to auto-prefix the subclass name.
|
|
||||||
*
|
|
||||||
* @return GraphEdge
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphEdge($subclassName = null, $auto_prefix = true)
|
|
||||||
{
|
|
||||||
$this->validateResponseAsArray();
|
|
||||||
$this->validateResponseCastableAsGraphEdge();
|
|
||||||
|
|
||||||
if ($subclassName && $auto_prefix) {
|
|
||||||
$subclassName = static::BASE_GRAPH_OBJECT_PREFIX . $subclassName;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->castAsGraphNodeOrGraphEdge($this->decodedBody, $subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validates the decoded body.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateResponseAsArray()
|
|
||||||
{
|
|
||||||
if (!is_array($this->decodedBody)) {
|
|
||||||
throw new FacebookSDKException('Unable to get response from Graph as array.', 620);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validates that the return data can be cast as a GraphNode.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateResponseCastableAsGraphNode()
|
|
||||||
{
|
|
||||||
if (isset($this->decodedBody['data']) && static::isCastableAsGraphEdge($this->decodedBody['data'])) {
|
|
||||||
throw new FacebookSDKException(
|
|
||||||
'Unable to convert response from Graph to a GraphNode because the response looks like a GraphEdge. Try using GraphNodeFactory::makeGraphEdge() instead.',
|
|
||||||
620
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validates that the return data can be cast as a GraphEdge.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function validateResponseCastableAsGraphEdge()
|
|
||||||
{
|
|
||||||
if (!(isset($this->decodedBody['data']) && static::isCastableAsGraphEdge($this->decodedBody['data']))) {
|
|
||||||
throw new FacebookSDKException(
|
|
||||||
'Unable to convert response from Graph to a GraphEdge because the response does not look like a GraphEdge. Try using GraphNodeFactory::makeGraphNode() instead.',
|
|
||||||
620
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Safely instantiates a GraphNode of $subclassName.
|
|
||||||
*
|
|
||||||
* @param array $data The array of data to iterate over.
|
|
||||||
* @param string|null $subclassName The subclass to cast this collection to.
|
|
||||||
*
|
|
||||||
* @return GraphNode
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function safelyMakeGraphNode(array $data, $subclassName = null)
|
|
||||||
{
|
|
||||||
$subclassName = $subclassName ?: static::BASE_GRAPH_NODE_CLASS;
|
|
||||||
static::validateSubclass($subclassName);
|
|
||||||
|
|
||||||
// Remember the parent node ID
|
|
||||||
$parentNodeId = isset($data['id']) ? $data['id'] : null;
|
|
||||||
|
|
||||||
$items = [];
|
|
||||||
|
|
||||||
foreach ($data as $k => $v) {
|
|
||||||
// Array means could be recurable
|
|
||||||
if (is_array($v)) {
|
|
||||||
// Detect any smart-casting from the $graphObjectMap array.
|
|
||||||
// This is always empty on the GraphNode collection, but subclasses can define
|
|
||||||
// their own array of smart-casting types.
|
|
||||||
$graphObjectMap = $subclassName::getObjectMap();
|
|
||||||
$objectSubClass = isset($graphObjectMap[$k])
|
|
||||||
? $graphObjectMap[$k]
|
|
||||||
: null;
|
|
||||||
|
|
||||||
// Could be a GraphEdge or GraphNode
|
|
||||||
$items[$k] = $this->castAsGraphNodeOrGraphEdge($v, $objectSubClass, $k, $parentNodeId);
|
|
||||||
} else {
|
|
||||||
$items[$k] = $v;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return new $subclassName($items);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Takes an array of values and determines how to cast each node.
|
|
||||||
*
|
|
||||||
* @param array $data The array of data to iterate over.
|
|
||||||
* @param string|null $subclassName The subclass to cast this collection to.
|
|
||||||
* @param string|null $parentKey The key of this data (Graph edge).
|
|
||||||
* @param string|null $parentNodeId The parent Graph node ID.
|
|
||||||
*
|
|
||||||
* @return GraphNode|GraphEdge
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function castAsGraphNodeOrGraphEdge(array $data, $subclassName = null, $parentKey = null, $parentNodeId = null)
|
|
||||||
{
|
|
||||||
if (isset($data['data'])) {
|
|
||||||
// Create GraphEdge
|
|
||||||
if (static::isCastableAsGraphEdge($data['data'])) {
|
|
||||||
return $this->safelyMakeGraphEdge($data, $subclassName, $parentKey, $parentNodeId);
|
|
||||||
}
|
|
||||||
// Sometimes Graph is a weirdo and returns a GraphNode under the "data" key
|
|
||||||
$data = $data['data'];
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create GraphNode
|
|
||||||
return $this->safelyMakeGraphNode($data, $subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return an array of GraphNode's.
|
|
||||||
*
|
|
||||||
* @param array $data The array of data to iterate over.
|
|
||||||
* @param string|null $subclassName The GraphNode subclass to cast each item in the list to.
|
|
||||||
* @param string|null $parentKey The key of this data (Graph edge).
|
|
||||||
* @param string|null $parentNodeId The parent Graph node ID.
|
|
||||||
*
|
|
||||||
* @return GraphEdge
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function safelyMakeGraphEdge(array $data, $subclassName = null, $parentKey = null, $parentNodeId = null)
|
|
||||||
{
|
|
||||||
if (!isset($data['data'])) {
|
|
||||||
throw new FacebookSDKException('Cannot cast data to GraphEdge. Expected a "data" key.', 620);
|
|
||||||
}
|
|
||||||
|
|
||||||
$dataList = [];
|
|
||||||
foreach ($data['data'] as $graphNode) {
|
|
||||||
$dataList[] = $this->safelyMakeGraphNode($graphNode, $subclassName, $parentKey, $parentNodeId);
|
|
||||||
}
|
|
||||||
|
|
||||||
$metaData = $this->getMetaData($data);
|
|
||||||
|
|
||||||
// We'll need to make an edge endpoint for this in case it's a GraphEdge (for cursor pagination)
|
|
||||||
$parentGraphEdgeEndpoint = $parentNodeId && $parentKey ? '/' . $parentNodeId . '/' . $parentKey : null;
|
|
||||||
$className = static::BASE_GRAPH_EDGE_CLASS;
|
|
||||||
|
|
||||||
return new $className($this->response->getRequest(), $dataList, $metaData, $parentGraphEdgeEndpoint, $subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the meta data from a list in a Graph response.
|
|
||||||
*
|
|
||||||
* @param array $data The Graph response.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getMetaData(array $data)
|
|
||||||
{
|
|
||||||
unset($data['data']);
|
|
||||||
|
|
||||||
return $data;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines whether or not the data should be cast as a GraphEdge.
|
|
||||||
*
|
|
||||||
* @param array $data
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public static function isCastableAsGraphEdge(array $data)
|
|
||||||
{
|
|
||||||
if ($data === []) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Checks for a sequential numeric array which would be a GraphEdge
|
|
||||||
return array_keys($data) === range(0, count($data) - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ensures that the subclass in question is valid.
|
|
||||||
*
|
|
||||||
* @param string $subclassName The GraphNode subclass to validate.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public static function validateSubclass($subclassName)
|
|
||||||
{
|
|
||||||
if ($subclassName == static::BASE_GRAPH_NODE_CLASS || is_subclass_of($subclassName, static::BASE_GRAPH_NODE_CLASS)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new FacebookSDKException('The given subclass "' . $subclassName . '" is not valid. Cannot cast to an object that is not a GraphNode subclass.', 620);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphObject
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 GraphObject has been renamed to GraphNode
|
|
||||||
* @todo v6: Remove this class
|
|
||||||
*/
|
|
||||||
class GraphObject extends GraphNode
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphObjectFactory
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 GraphObjectFactory has been renamed to GraphNodeFactory
|
|
||||||
* @todo v6: Remove this class
|
|
||||||
*/
|
|
||||||
class GraphObjectFactory extends GraphNodeFactory
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @const string The base graph object class.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_NODE_CLASS = '\Facebook\GraphNodes\GraphObject';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @const string The base graph edge class.
|
|
||||||
*/
|
|
||||||
const BASE_GRAPH_EDGE_CLASS = '\Facebook\GraphNodes\GraphList';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to convert a FacebookResponse entity into a GraphNode.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast to.
|
|
||||||
*
|
|
||||||
* @return GraphNode
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 GraphObjectFactory has been renamed to GraphNodeFactory
|
|
||||||
*/
|
|
||||||
public function makeGraphObject($subclassName = null)
|
|
||||||
{
|
|
||||||
return $this->makeGraphNode($subclassName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience method for creating a GraphEvent collection.
|
|
||||||
*
|
|
||||||
* @return GraphEvent
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function makeGraphEvent()
|
|
||||||
{
|
|
||||||
return $this->makeGraphObject(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphEvent');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to convert a FacebookResponse entity into a GraphEdge.
|
|
||||||
*
|
|
||||||
* @param string|null $subclassName The GraphNode sub class to cast the list items to.
|
|
||||||
* @param boolean $auto_prefix Toggle to auto-prefix the subclass name.
|
|
||||||
*
|
|
||||||
* @return GraphEdge
|
|
||||||
*
|
|
||||||
* @deprecated 5.0.0 GraphObjectFactory has been renamed to GraphNodeFactory
|
|
||||||
*/
|
|
||||||
public function makeGraphList($subclassName = null, $auto_prefix = true)
|
|
||||||
{
|
|
||||||
return $this->makeGraphEdge($subclassName, $auto_prefix);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,125 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphPage
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphPage extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to Graph object types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [
|
|
||||||
'best_page' => '\Facebook\GraphNodes\GraphPage',
|
|
||||||
'global_brand_parent_page' => '\Facebook\GraphNodes\GraphPage',
|
|
||||||
'location' => '\Facebook\GraphNodes\GraphLocation',
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID for the user's page as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the Category for the user's page as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getCategory()
|
|
||||||
{
|
|
||||||
return $this->getField('category');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the Name of the user's page as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return $this->getField('name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the best available Page on Facebook.
|
|
||||||
*
|
|
||||||
* @return GraphPage|null
|
|
||||||
*/
|
|
||||||
public function getBestPage()
|
|
||||||
{
|
|
||||||
return $this->getField('best_page');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the brand's global (parent) Page.
|
|
||||||
*
|
|
||||||
* @return GraphPage|null
|
|
||||||
*/
|
|
||||||
public function getGlobalBrandParentPage()
|
|
||||||
{
|
|
||||||
return $this->getField('global_brand_parent_page');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the location of this place.
|
|
||||||
*
|
|
||||||
* @return GraphLocation|null
|
|
||||||
*/
|
|
||||||
public function getLocation()
|
|
||||||
{
|
|
||||||
return $this->getField('location');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the page access token for the admin user.
|
|
||||||
*
|
|
||||||
* Only available in the `/me/accounts` context.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAccessToken()
|
|
||||||
{
|
|
||||||
return $this->getField('access_token');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the roles of the page admin user.
|
|
||||||
*
|
|
||||||
* Only available in the `/me/accounts` context.
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
public function getPerms()
|
|
||||||
{
|
|
||||||
return $this->getField('perms');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphPicture
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphPicture extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns true if user picture is silhouette.
|
|
||||||
*
|
|
||||||
* @return bool|null
|
|
||||||
*/
|
|
||||||
public function isSilhouette()
|
|
||||||
{
|
|
||||||
return $this->getField('is_silhouette');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the url of user picture if it exists
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getUrl()
|
|
||||||
{
|
|
||||||
return $this->getField('url');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the width of user picture if it exists
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getWidth()
|
|
||||||
{
|
|
||||||
return $this->getField('width');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the height of user picture if it exists
|
|
||||||
*
|
|
||||||
* @return int|null
|
|
||||||
*/
|
|
||||||
public function getHeight()
|
|
||||||
{
|
|
||||||
return $this->getField('height');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphSessionInfo
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphSessionInfo extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns the application id the token was issued for.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getAppId()
|
|
||||||
{
|
|
||||||
return $this->getField('app_id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the application name the token was issued for.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getApplication()
|
|
||||||
{
|
|
||||||
return $this->getField('application');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the date & time that the token expires.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getExpiresAt()
|
|
||||||
{
|
|
||||||
return $this->getField('expires_at');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns whether the token is valid.
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function getIsValid()
|
|
||||||
{
|
|
||||||
return $this->getField('is_valid');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the date & time the token was issued at.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getIssuedAt()
|
|
||||||
{
|
|
||||||
return $this->getField('issued_at');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the scope permissions associated with the token.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getScopes()
|
|
||||||
{
|
|
||||||
return $this->getField('scopes');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the login id of the user associated with the token.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getUserId()
|
|
||||||
{
|
|
||||||
return $this->getField('user_id');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,162 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\GraphNodes;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class GraphUser
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class GraphUser extends GraphNode
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array Maps object key names to Graph object types.
|
|
||||||
*/
|
|
||||||
protected static $graphObjectMap = [
|
|
||||||
'hometown' => '\Facebook\GraphNodes\GraphPage',
|
|
||||||
'location' => '\Facebook\GraphNodes\GraphPage',
|
|
||||||
'significant_other' => '\Facebook\GraphNodes\GraphUser',
|
|
||||||
'picture' => '\Facebook\GraphNodes\GraphPicture',
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the ID for the user as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getId()
|
|
||||||
{
|
|
||||||
return $this->getField('id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the name for the user as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return $this->getField('name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the first name for the user as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getFirstName()
|
|
||||||
{
|
|
||||||
return $this->getField('first_name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the middle name for the user as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getMiddleName()
|
|
||||||
{
|
|
||||||
return $this->getField('middle_name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the last name for the user as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getLastName()
|
|
||||||
{
|
|
||||||
return $this->getField('last_name');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the gender for the user as a string if present.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getGender()
|
|
||||||
{
|
|
||||||
return $this->getField('gender');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the Facebook URL for the user as a string if available.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getLink()
|
|
||||||
{
|
|
||||||
return $this->getField('link');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the users birthday, if available.
|
|
||||||
*
|
|
||||||
* @return \DateTime|null
|
|
||||||
*/
|
|
||||||
public function getBirthday()
|
|
||||||
{
|
|
||||||
return $this->getField('birthday');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the current location of the user as a GraphPage.
|
|
||||||
*
|
|
||||||
* @return GraphPage|null
|
|
||||||
*/
|
|
||||||
public function getLocation()
|
|
||||||
{
|
|
||||||
return $this->getField('location');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the current location of the user as a GraphPage.
|
|
||||||
*
|
|
||||||
* @return GraphPage|null
|
|
||||||
*/
|
|
||||||
public function getHometown()
|
|
||||||
{
|
|
||||||
return $this->getField('hometown');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the current location of the user as a GraphUser.
|
|
||||||
*
|
|
||||||
* @return GraphUser|null
|
|
||||||
*/
|
|
||||||
public function getSignificantOther()
|
|
||||||
{
|
|
||||||
return $this->getField('significant_other');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the picture of the user as a GraphPicture
|
|
||||||
*
|
|
||||||
* @return GraphPicture|null
|
|
||||||
*/
|
|
||||||
public function getPicture()
|
|
||||||
{
|
|
||||||
return $this->getField('picture');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Helpers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookCanvasLoginHelper
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookCanvasHelper extends FacebookSignedRequestFromInputHelper
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Returns the app data value.
|
|
||||||
*
|
|
||||||
* @return mixed|null
|
|
||||||
*/
|
|
||||||
public function getAppData()
|
|
||||||
{
|
|
||||||
return $this->signedRequest ? $this->signedRequest->get('app_data') : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get raw signed request from POST.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getRawSignedRequest()
|
|
||||||
{
|
|
||||||
return $this->getRawSignedRequestFromPost() ?: null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Helpers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookJavaScriptLoginHelper
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookJavaScriptHelper extends FacebookSignedRequestFromInputHelper
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Get raw signed request from the cookie.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getRawSignedRequest()
|
|
||||||
{
|
|
||||||
return $this->getRawSignedRequestFromCookie();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Helpers;
|
|
||||||
|
|
||||||
use Facebook\FacebookApp;
|
|
||||||
use Facebook\FacebookClient;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookPageTabHelper
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookPageTabHelper extends FacebookCanvasHelper
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @var array|null
|
|
||||||
*/
|
|
||||||
protected $pageData;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialize the helper and process available signed request data.
|
|
||||||
*
|
|
||||||
* @param FacebookApp $app The FacebookApp entity.
|
|
||||||
* @param FacebookClient $client The client to make HTTP requests.
|
|
||||||
* @param string|null $graphVersion The version of Graph to use.
|
|
||||||
*/
|
|
||||||
public function __construct(FacebookApp $app, FacebookClient $client, $graphVersion = null)
|
|
||||||
{
|
|
||||||
parent::__construct($app, $client, $graphVersion);
|
|
||||||
|
|
||||||
if (!$this->signedRequest) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->pageData = $this->signedRequest->get('page');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from the page data.
|
|
||||||
*
|
|
||||||
* @param string $key
|
|
||||||
* @param mixed|null $default
|
|
||||||
*
|
|
||||||
* @return mixed|null
|
|
||||||
*/
|
|
||||||
public function getPageData($key, $default = null)
|
|
||||||
{
|
|
||||||
if (isset($this->pageData[$key])) {
|
|
||||||
return $this->pageData[$key];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if the user is an admin.
|
|
||||||
*
|
|
||||||
* @return boolean
|
|
||||||
*/
|
|
||||||
public function isAdmin()
|
|
||||||
{
|
|
||||||
return $this->getPageData('admin') === true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the page id if available.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getPageId()
|
|
||||||
{
|
|
||||||
return $this->getPageData('id');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,360 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Copyright 2014 Facebook, Inc.
|
|
||||||
*
|
|
||||||
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
|
|
||||||
* use, copy, modify, and distribute this software in source code or binary
|
|
||||||
* form for use in connection with the web services and APIs provided by
|
|
||||||
* Facebook.
|
|
||||||
*
|
|
||||||
* As with any software that integrates with the Facebook platform, your use
|
|
||||||
* of this software is subject to the Facebook Developer Principles and
|
|
||||||
* Policies [http://developers.facebook.com/policy/]. This copyright notice
|
|
||||||
* shall be included in all copies or substantial portions of the software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
||||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
* DEALINGS IN THE SOFTWARE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
namespace Facebook\Helpers;
|
|
||||||
|
|
||||||
use Facebook\Authentication\AccessToken;
|
|
||||||
use Facebook\Authentication\OAuth2Client;
|
|
||||||
use Facebook\Url\UrlDetectionInterface;
|
|
||||||
use Facebook\Url\FacebookUrlDetectionHandler;
|
|
||||||
use Facebook\Url\FacebookUrlManipulator;
|
|
||||||
use Facebook\PersistentData\PersistentDataInterface;
|
|
||||||
use Facebook\PersistentData\FacebookSessionPersistentDataHandler;
|
|
||||||
use Facebook\PseudoRandomString\PseudoRandomStringGeneratorInterface;
|
|
||||||
use Facebook\PseudoRandomString\McryptPseudoRandomStringGenerator;
|
|
||||||
use Facebook\PseudoRandomString\OpenSslPseudoRandomStringGenerator;
|
|
||||||
use Facebook\PseudoRandomString\UrandomPseudoRandomStringGenerator;
|
|
||||||
use Facebook\Exceptions\FacebookSDKException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class FacebookRedirectLoginHelper
|
|
||||||
*
|
|
||||||
* @package Facebook
|
|
||||||
*/
|
|
||||||
class FacebookRedirectLoginHelper
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @const int The length of CSRF string to validate the login link.
|
|
||||||
*/
|
|
||||||
const CSRF_LENGTH = 32;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var OAuth2Client The OAuth 2.0 client service.
|
|
||||||
*/
|
|
||||||
protected $oAuth2Client;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var UrlDetectionInterface The URL detection handler.
|
|
||||||
*/
|
|
||||||
protected $urlDetectionHandler;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var PersistentDataInterface The persistent data handler.
|
|
||||||
*/
|
|
||||||
protected $persistentDataHandler;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var PseudoRandomStringGeneratorInterface The cryptographically secure pseudo-random string generator.
|
|
||||||
*/
|
|
||||||
protected $pseudoRandomStringGenerator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param OAuth2Client $oAuth2Client The OAuth 2.0 client service.
|
|
||||||
* @param PersistentDataInterface|null $persistentDataHandler The persistent data handler.
|
|
||||||
* @param UrlDetectionInterface|null $urlHandler The URL detection handler.
|
|
||||||
* @param PseudoRandomStringGeneratorInterface|null $prsg The cryptographically secure pseudo-random string generator.
|
|
||||||
*/
|
|
||||||
public function __construct(OAuth2Client $oAuth2Client, PersistentDataInterface $persistentDataHandler = null, UrlDetectionInterface $urlHandler = null, PseudoRandomStringGeneratorInterface $prsg = null)
|
|
||||||
{
|
|
||||||
$this->oAuth2Client = $oAuth2Client;
|
|
||||||
$this->persistentDataHandler = $persistentDataHandler ?: new FacebookSessionPersistentDataHandler();
|
|
||||||
$this->urlDetectionHandler = $urlHandler ?: new FacebookUrlDetectionHandler();
|
|
||||||
$this->pseudoRandomStringGenerator = $prsg ?: $this->detectPseudoRandomStringGenerator();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the persistent data handler.
|
|
||||||
*
|
|
||||||
* @return PersistentDataInterface
|
|
||||||
*/
|
|
||||||
public function getPersistentDataHandler()
|
|
||||||
{
|
|
||||||
return $this->persistentDataHandler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the URL detection handler.
|
|
||||||
*
|
|
||||||
* @return UrlDetectionInterface
|
|
||||||
*/
|
|
||||||
public function getUrlDetectionHandler()
|
|
||||||
{
|
|
||||||
return $this->urlDetectionHandler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the cryptographically secure pseudo-random string generator.
|
|
||||||
*
|
|
||||||
* @return PseudoRandomStringGeneratorInterface
|
|
||||||
*/
|
|
||||||
public function getPseudoRandomStringGenerator()
|
|
||||||
{
|
|
||||||
return $this->pseudoRandomStringGenerator;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Detects which pseudo-random string generator to use.
|
|
||||||
*
|
|
||||||
* @return PseudoRandomStringGeneratorInterface
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function detectPseudoRandomStringGenerator()
|
|
||||||
{
|
|
||||||
// Since openssl_random_pseudo_bytes() can sometimes return non-cryptographically
|
|
||||||
// secure pseudo-random strings (in rare cases), we check for mcrypt_create_iv() first.
|
|
||||||
if (function_exists('mcrypt_create_iv')) {
|
|
||||||
return new McryptPseudoRandomStringGenerator();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (function_exists('openssl_random_pseudo_bytes')) {
|
|
||||||
return new OpenSslPseudoRandomStringGenerator();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ini_get('open_basedir') && is_readable('/dev/urandom')) {
|
|
||||||
return new UrandomPseudoRandomStringGenerator();
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new FacebookSDKException('Unable to detect a cryptographically secure pseudo-random string generator.');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Stores CSRF state and returns a URL to which the user should be sent to in order to continue the login process with Facebook.
|
|
||||||
*
|
|
||||||
* @param string $redirectUrl The URL Facebook should redirect users to after login.
|
|
||||||
* @param array $scope List of permissions to request during login.
|
|
||||||
* @param array $params An array of parameters to generate URL.
|
|
||||||
* @param string $separator The separator to use in http_build_query().
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
private function makeUrl($redirectUrl, array $scope, array $params = [], $separator = '&')
|
|
||||||
{
|
|
||||||
$state = $this->pseudoRandomStringGenerator->getPseudoRandomString(static::CSRF_LENGTH);
|
|
||||||
$this->persistentDataHandler->set('state', $state);
|
|
||||||
|
|
||||||
return $this->oAuth2Client->getAuthorizationUrl($redirectUrl, $state, $scope, $params, $separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the URL to send the user in order to login to Facebook.
|
|
||||||
*
|
|
||||||
* @param string $redirectUrl The URL Facebook should redirect users to after login.
|
|
||||||
* @param array $scope List of permissions to request during login.
|
|
||||||
* @param string $separator The separator to use in http_build_query().
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getLoginUrl($redirectUrl, array $scope = [], $separator = '&')
|
|
||||||
{
|
|
||||||
return $this->makeUrl($redirectUrl, $scope, [], $separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the URL to send the user in order to log out of Facebook.
|
|
||||||
*
|
|
||||||
* @param AccessToken|string $accessToken The access token that will be logged out.
|
|
||||||
* @param string $next The url Facebook should redirect the user to after a successful logout.
|
|
||||||
* @param string $separator The separator to use in http_build_query().
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getLogoutUrl($accessToken, $next, $separator = '&')
|
|
||||||
{
|
|
||||||
if (!$accessToken instanceof AccessToken) {
|
|
||||||
$accessToken = new AccessToken($accessToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($accessToken->isAppAccessToken()) {
|
|
||||||
throw new FacebookSDKException('Cannot generate a logout URL with an app access token.', 722);
|
|
||||||
}
|
|
||||||
|
|
||||||
$params = [
|
|
||||||
'next' => $next,
|
|
||||||
'access_token' => $accessToken->getValue(),
|
|
||||||
];
|
|
||||||
|
|
||||||
return 'https://www.facebook.com/logout.php?' . http_build_query($params, null, $separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the URL to send the user in order to login to Facebook with permission(s) to be re-asked.
|
|
||||||
*
|
|
||||||
* @param string $redirectUrl The URL Facebook should redirect users to after login.
|
|
||||||
* @param array $scope List of permissions to request during login.
|
|
||||||
* @param string $separator The separator to use in http_build_query().
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getReRequestUrl($redirectUrl, array $scope = [], $separator = '&')
|
|
||||||
{
|
|
||||||
$params = ['auth_type' => 'rerequest'];
|
|
||||||
|
|
||||||
return $this->makeUrl($redirectUrl, $scope, $params, $separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the URL to send the user in order to login to Facebook with user to be re-authenticated.
|
|
||||||
*
|
|
||||||
* @param string $redirectUrl The URL Facebook should redirect users to after login.
|
|
||||||
* @param array $scope List of permissions to request during login.
|
|
||||||
* @param string $separator The separator to use in http_build_query().
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getReAuthenticationUrl($redirectUrl, array $scope = [], $separator = '&')
|
|
||||||
{
|
|
||||||
$params = ['auth_type' => 'reauthenticate'];
|
|
||||||
|
|
||||||
return $this->makeUrl($redirectUrl, $scope, $params, $separator);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Takes a valid code from a login redirect, and returns an AccessToken entity.
|
|
||||||
*
|
|
||||||
* @param string|null $redirectUrl The redirect URL.
|
|
||||||
*
|
|
||||||
* @return AccessToken|null
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
public function getAccessToken($redirectUrl = null)
|
|
||||||
{
|
|
||||||
if (!$code = $this->getCode()) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->validateCsrf();
|
|
||||||
|
|
||||||
$redirectUrl = $redirectUrl ?: $this->urlDetectionHandler->getCurrentUrl();
|
|
||||||
// At minimum we need to remove the state param
|
|
||||||
$redirectUrl = FacebookUrlManipulator::removeParamsFromUrl($redirectUrl, ['state']);
|
|
||||||
|
|
||||||
return $this->oAuth2Client->getAccessTokenFromCode($code, $redirectUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate the request against a cross-site request forgery.
|
|
||||||
*
|
|
||||||
* @throws FacebookSDKException
|
|
||||||
*/
|
|
||||||
protected function validateCsrf()
|
|
||||||
{
|
|
||||||
$state = $this->getState();
|
|
||||||
$savedState = $this->persistentDataHandler->get('state');
|
|
||||||
|
|
||||||
if (!$state || !$savedState) {
|
|
||||||
throw new FacebookSDKException('Cross-site request forgery validation failed. Required param "state" missing.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$savedLen = strlen($savedState);
|
|
||||||
$givenLen = strlen($state);
|
|
||||||
|
|
||||||
if ($savedLen !== $givenLen) {
|
|
||||||
throw new FacebookSDKException('Cross-site request forgery validation failed. The "state" param from the URL and session do not match.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = 0;
|
|
||||||
for ($i = 0; $i < $savedLen; $i++) {
|
|
||||||
$result |= ord($state[$i]) ^ ord($savedState[$i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($result !== 0) {
|
|
||||||
throw new FacebookSDKException('Cross-site request forgery validation failed. The "state" param from the URL and session do not match.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the code.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
protected function getCode()
|
|
||||||
{
|
|
||||||
return $this->getInput('code');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the state.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
protected function getState()
|
|
||||||
{
|
|
||||||
return $this->getInput('state');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Return the error code.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getErrorCode()
|
|
||||||
{
|
|
||||||
return $this->getInput('error_code');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the error.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getError()
|
|
||||||
{
|
|
||||||
return $this->getInput('error');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the error reason.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getErrorReason()
|
|
||||||
{
|
|
||||||
return $this->getInput('error_reason');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the error description.
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
public function getErrorDescription()
|
|
||||||
{
|
|
||||||
return $this->getInput('error_description');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a value from a GET param.
|
|
||||||
*
|
|
||||||
* @param string $key
|
|
||||||
*
|
|
||||||
* @return string|null
|
|
||||||
*/
|
|
||||||
private function getInput($key)
|
|
||||||
{
|
|
||||||
return isset($_GET[$key]) ? $_GET[$key] : null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user