-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
executable file
·106 lines (90 loc) · 2.74 KB
/
plugin.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
<?php
/**
* Vvveb
*
* Copyright (C) 2022 Ziadin Givan
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/*
Name: Gravatar
Slug: gravatar
Category: comments
Url: https://www.gravatar.com
Description: Show gravatar images on comments for users that don't have avatars set.
Author: givanz
Version: 0.1
Thumb: gravatar.svg
Author url: https://www.vvveb.com
Settings: /admin/index.php?module=plugins/gravatar/settings
*/
use Vvveb\System\Event;
if (! defined('V_VERSION')) {
die('Invalid request!');
}
class GravatarPlugin {
/**
* @param mixed $email
* @param string $s Size in pixels, defaults to 80px [ 1 - 2048 ]
* @param string $d Default imageset to use [ 404 | mm | identicon | monsterid | wavatar | retro]
* @param string $r Maximum rating (inclusive) [ g | pg | r | x ]
* @param mixed $img
*/
private function getGravatar($email, $s = 80, $d = 'mm', $r = 'g', $img = false) {
$url = 'https://www.gravatar.com/avatar/';
$url .= md5(strtolower(trim($email)));
$url .= "?s=$s&d=$d&r=$r";
return $url;
}
function app() {
$types = ['comment', 'product_review', 'product_question'];
$addGravatar = function ($comments) use ($types) {
$options = \Vvveb\getSetting('gravatar', ['size', 'rating', 'default']);
$commentType = false;
foreach ($types as $type) {
if (isset($comments[$type])) {
$commentType = $type;
break;
}
}
if ($commentType) {
foreach ($comments[$commentType] as &$comment) {
if (! isset($comment['avatar']) || ! $comment['avatar']) {
$comment['avatar'] = $this->getGravatar(
$comment['email'],
$options['size'] ?? 60,
$options['default'] ?? 'mm',
$options['rating'] ?? 'g'
);
}
}
}
return [$comments];
};
Event::on('Vvveb\Component\Comments', 'results', __METHOD__ , $addGravatar);
Event::on('Vvveb\Component\Reviews', 'results', __METHOD__ , $addGravatar);
Event::on('Vvveb\Component\Questions', 'results', __METHOD__ , $addGravatar);
}
function __construct() {
if (APP == 'admin') {
//$this->admin();
} else {
if (APP == 'app') {
$this->app();
}
}
}
}
$gravatarPlugin = new GravatarPlugin();