forked from KnpLabs/KnpDisqusBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Disqus.php
236 lines (201 loc) · 6.4 KB
/
Disqus.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
/*
* This file is part of the KnpDisqusBundle package.
*
* (c) KnpLabs <hello@knplabs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Knp\Bundle\DisqusBundle;
use Buzz\Browser;
use Buzz\Client\Curl;
use Buzz\Message\RequestInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class Disqus
{
/**
* @var string
*/
protected $baseUrl = 'https://disqus.com/api/3.0/';
/**
* @var ContainerInterface
*/
protected $container;
/**
* @var string
*/
protected $apiKey;
/**
* @var string
*/
protected $shortname;
/**
* @var integer
*/
protected $debug;
protected $id;
/**
* @var array
*/
protected $options = array(
'since' => null,
'cursor' => null,
'query' => null,
'include' => array('approved'),
'order' => 'desc',
'limit' => 100,
'debug' => 0,
);
/**
* @param ContainerInterface $container
* @param string $apiKey
* @param string $secretKey
* @param string $baseUrl
* @param int $debug
*/
public function __construct(ContainerInterface $container, $apiKey, $secretKey = null, $baseUrl = null, $debug = 0)
{
$this->container = $container;
$this->apiKey = $apiKey;
$this->secretKey = $secretKey;
$this->debug = $debug;
if ($baseUrl) {
$this->baseUrl = $baseUrl;
}
}
/**
* @param string $shortname
* @param array $options
* @param string $fetch
*
* @return string
*/
public function fetch($shortname, array $options, $fetch = 'threads/listPosts')
{
$this->shortname = $shortname;
$options = $this->setOptions($options);
$url = $this->buildUrl($options, $fetch);
if ($this->container->has('knp_zend_cache.manager')) {
$cache = $this->container->get('knp_zend_cache.manager');
$cache = $cache->getCache($this->container->getParameter('knp_disqus.cache.'.$shortname));
$key = sha1($url);
if (false === ($content = $cache->load($key))) {
$content = json_decode($this->httpRequest($url), true);
$cache->save($content, $key);
}
} else {
$content = json_decode($this->httpRequest($url), true);
}
return $content;
}
/**
* @return array
*/
public function getParameters()
{
return array(
'id' => $this->id,
'shortname' => $this->shortname,
'debug' => $this->debug,
'api_key' => $this->apiKey
);
}
/**
* @param array $parameters
*
* @return array
*/
public function getSsoParameters($parameters)
{
$sso = array();
if ($this->secretKey && isset($parameters['sso']) && isset($parameters['sso']['user'])) {
$sso = $parameters['sso'];
if (isset($sso['user'])) {
$message = base64_encode(json_encode($sso['user']));
$timestamp = time();
$hmac = hash_hmac('sha1', "$message $timestamp", $this->secretKey);
unset($sso['user']);
$sso['auth'] = array(
'message' => $message,
'hmac' => $hmac,
'timestamp' => $timestamp,
);
}
}
return $sso;
}
/**
* @param array $options
* @param string $fetch
* @param string $format
*
* @return string
*
* @throws \InvalidArgumentException
*/
protected function buildUrl(array $options, $fetch, $format = 'json')
{
if (isset($options['identifier'])) {
$this->id = array('identifier' => $options['identifier']);
$id = ':ident='.$options['identifier'];
} elseif (isset($options['link'])) {
$this->id = array('link' => $options['link']);
$id = ':link='.$options['link'];
} elseif (isset($options['id'])) {
$this->id = array('id' => $options['id']);
$id = '='.$options['id'];
}
if (!isset($id)) {
throw new \InvalidArgumentException('You need to give an id.');
}
// @todo this should be more based on API docs (many params for many different fetch routes)
return $this->baseUrl.$fetch.'.'.$format.'?thread'.$id.'&forum='.$this->shortname.'&api_key='.$this->apiKey;
}
/**
* @param array $options
*
* @return array
*
* @throws \InvalidArgumentException
*/
protected function setOptions(array $options)
{
if (isset($options['order']) && !in_array($options['order'], array('asc', 'desc'))) {
throw new \InvalidArgumentException(sprintf('Unknown `order` value used (%s), allowed are: asc, desc', $options['order']));
}
if (isset($options['include'])) {
if (false !== strpos(',', $options['include'])) {
$options['include'] = explode(',', $options['include']);
}
if (!is_array($options['include'])) {
$options['include'] = array($options['include']);
}
$allowedIncludes = array('unapproved', 'approved', 'spam', 'deleted', 'flagged', 'highlighted');
foreach ($options['include'] as $include) {
$include = trim($include);
if (!in_array($include, $allowedIncludes)) {
throw new \InvalidArgumentException(sprintf('Unknown `include` value used (%s), allowed are: %s', $include, implode(', ', $allowedIncludes)));
}
}
$options['include'] = implode(', ', $options['include']);
}
// Maximum value of 100 (Disqus API limit)
if (isset($options['limit']) && $options['limit'] > 100) {
$options['limit'] = 100;
}
return array_merge($this->options, $options);
}
/**
* @param string $url
* @param mixed $method
*
* @return string
*/
protected function httpRequest($url, $method = RequestInterface::METHOD_GET)
{
$buzz = new Browser(new Curl());
$response = $buzz->call($url, $method);
return $response->getContent();
}
}