-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstackexchange-snippet.php
77 lines (58 loc) · 2.46 KB
/
stackexchange-snippet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?
if($page->stackexchangesite() != null && $page->stackexchangemethod() != null){
//Create new stackexchangeAPI Object (insert your API Key here as parameter, e.g.new stackexchange('XXXXXXX'))
$stackExchangeAPI = new stackexchange();
//Fetch values from current page object
$siteList = (string)(str_replace(' ','',$page->stackexchangesite()));
$siteArray = explode(',',$siteList);
$methodList = (string)(str_replace(' ','',$page->stackexchangemethod()));
$methodArray = explode(',',$methodList);
$methodFilterList = (string)(str_replace(' ','',$page->stackexchangefilter()));
$methodFilterArray = explode(',',$methodFilterList);
$methodFilteredIDList = (string)(str_replace(' ','',$page->stackexchangemethodids()));
$methodFilteredIDArray = explode(',',$methodFilteredIDList);
$methodOutputKeyList = (string)(str_replace(' ','',$page->stackexchangeoutput()));
$methodOutputKeyListArray = explode(';',$methodOutputKeyList);
//Start output
$stackAPIOutput = '';
$stackAPIOutput .= '<div class="stackexchange-wrapper">';
foreach($methodArray as $index => $method){
//For each method...
//Init parameters
$params = array();
//Check whether a site ID is specified to search at --> add it as 'site' URL-parameter
if(isset($siteArray[$index])){
$site = $siteArray[$index];
$params['site'] = $site;
}
//Initiate requestData & requestDataType variable
$requestData = null;
$requestDataType = null;
//Add method specific filters if given by the user
if(isset($methodFilterArray[$index])){
$requestFilter = $methodFilterArray[$index];
$params['filter'] = $requestFilter;
}
//Execute API request and save result
$result = $stackExchangeAPI->executeMethodWithURLPathName($method, $params, $methodFilteredIDArray[$index]);
//Save data and data-type inside corresponding variables
$requestData = $result['data'];
$requestDataType = $result['data-type'];
//If the request fetched some data --> output data
if(isset($requestData)){
//Get all requested object keys
$outputKeyList = $methodOutputKeyListArray[$index];
if(!empty($methodOutputKeyList)){
//Save them in an array
$outputKeys = explode(',',(string)$outputKeyList);
//Foreach result object..
foreach($requestData['items'] as $item){
$stackAPIOutput .= $stackExchangeAPI->defaultLayout($item, $requestDataType, $outputKeys);
}
}
}
}
$stackAPIOutput .= '</div>';
echo $stackAPIOutput;
}
?>