-
Notifications
You must be signed in to change notification settings - Fork 1
/
Likes.php
200 lines (166 loc) · 4.84 KB
/
Likes.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
<?php
/**
* Date: 12.08.13
* Time: 13:25
*/
if (!defined('MEDIAWIKI')) {
die("This is not a valid entry point.\n");
}
$wgExtensionFunctions[] = 'wfSetupLikes';
$wgExtensionCredits['other'][] = array(
'path' => __FILE__,
'name' => 'Likes',
'author' => '[http://www.facebook.com/denisovdenis Denisov Denis]',
'url' => 'https://github.com/Undev/MediaWiki-Likes',
'description' => 'Native Like-button on every page.',
'version' => 0.1,
);
$wgExtensionMessagesFiles[] = dirname(__FILE__) . '/Likes.i18n.php';
/*
* Autoload AjaxLogin API interface
*/
$dir = dirname(__FILE__) . '/';
$wgAutoloadClasses['ApiLikes'] = $dir . 'ApiLikes.php';
$wgAPIModules['likes'] = 'ApiLikes';
/**
* Register ResourceLoader modules
*/
$commonModuleInfo = array(
'localBasePath' => dirname(__FILE__) . '/modules',
'remoteExtPath' => 'Likes/modules',
);
$wgResourceModules['ext.Likes'] = array(
'scripts' => 'ext.Likes.js',
) + $commonModuleInfo;
$wgResourceModules['ext.Likes.css'] = array(
'styles' => 'ext.Likes.css',
) + $commonModuleInfo;
class Likes
{
/**
* @var WikiPage
*/
private $page;
/**
* @var User
*/
private $user;
/**
* @var boolean Liked page or not
*/
public $isLiked = false;
/**
* @var int Count of Likes
*/
private $likes;
public function __construct()
{
global $wgHooks;
$wgHooks['OutputPageBeforeHTML'][] = $this;
$wgHooks['ResourceLoaderGetConfigVars'][] = $this;
}
public function __toString()
{
return __CLASS__;
}
private function tableName()
{
return 'likes';
}
public function init()
{
try {
$this->setHeaders(RequestContext::getMain()->getOutput());
$this->page = RequestContext::getMain()->getWikiPage();
$this->user = RequestContext::getMain()->getUser();
} catch (Exception $e) {
throw new Exception(__CLASS__ . wfMessage('likes-error-extension')->inContentLanguage()->plain());
}
return true;
}
public function onOutputPageBeforeHTML(OutputPage &$out, &$text)
{
try {
$this->init();
} catch (Exception $e) {
return false;
}
if ($out->isArticle()) {
$count = $this->getLikes();
$html = $this->getLikeButton($count, true);
$out->addHTML($html);
}
return true;
}
/**
* Setting up variables to pass it to Javascript
* @param $vars
* @return bool
*/
public function onResourceLoaderGetConfigVars(&$vars)
{
try {
$this->init();
} catch (Exception $e) {
return false;
}
// @todo Correctly not worked. Now $var passed through input-hidden.
$vars['likesPageId'] = $this->page->getId();
$vars['likesUserId'] = $this->user->getId();
return true;
}
/**
* Set the script tags in an OutputPage object
* @param OutputPage $outputPage
*/
public function setHeaders($outputPage)
{
# Add the modules
$outputPage->addModuleStyles('ext.' . __CLASS__ . '.css');
$outputPage->addModules('ext.' . __CLASS__);
}
private function getLikes()
{
if (is_null($this->likes)) {
$dbr = wfGetDB(DB_SLAVE);
$res = $dbr->select(
$this->tableName(),
array('page_id', 'user_id'),
array('page_id ' => $this->page->getId()),
__METHOD__
);
if (empty($res) or $res->numRows() == 0) {
return 0;
}
foreach ($res as $row) {
if ($row->user_id == $this->user->getId()) {
$this->isLiked = true;
}
$this->likes++;
}
}
return $this->likes;
}
private function getLikeButton()
{
$title = $this->isLiked ?
wfMessage(strtolower(__CLASS__) . '-button-title-remove')->inContentLanguage()->plain() :
wfMessage(strtolower(__CLASS__) . '-button-title-add')->inContentLanguage()->plain();
$image = "/extensions/Likes/resources/FB-ThumbsUp_29.png";
$css = $this->isLiked ? 'class="reflection"' : '';
return <<<HTML
<div id="likes">
<a href="#" title="$title"><img src="$image" $css></a>
<span>{$this->getLikes()}</span>
<input id="ext-Likes-pageId" type="hidden" value="{$this->page->getId()}">
<input id="ext-Likes-userId" type="hidden" value="{$this->user->getId()}">
<input id="ext-Likes-isLiked" type="hidden" value="{$this->isLiked}">
</div>
HTML;
}
}
function wfSetupLikes()
{
global $wgLikes;
$wgLikes = new Likes;
}