Passed
Push — master ( cd9af7...24efe7 )
by Sylver
02:50
created

controller::display_smiley()   D

Complexity

Conditions 15
Paths 192

Size

Total Lines 152
Code Lines 97

Duplication

Lines 0
Ratio 0 %

Importance

Changes 4
Bugs 0 Features 0
Metric Value
eloc 97
c 4
b 0
f 0
dl 0
loc 152
rs 4.1853
cc 15
nc 192
nop 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/**
4
 * @author		Sylver35 <[email protected]>
5
 * @package		Breizh Smilie Creator Extension
6
 * @copyright	(c) 2018-2020 Sylver35  https://breizhcode.com
7
 * @license		http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
8
 */
9
10
namespace sylver35\smilecreator\controller;
11
use phpbb\config\config;
12
use phpbb\request\request;
13
use phpbb\controller\helper;
14
use phpbb\template\template;
15
use phpbb\language\language;
16
use phpbb\exception\http_exception;
17
18
class controller
19
{
20
	/** @var \phpbb\config\config */
21
	protected $config;
22
23
	/** @var \phpbb\request\request */
24
	protected $request;
25
26
	/** @var \phpbb\controller\helper */
27
	protected $helper;
28
29
	/** @var \phpbb\template\template */
30
	protected $template;
31
32
	/** @var \phpbb\language\language */
33
	protected $language;
34
35
	/** @var string phpBB root path */
36
	protected $root_path;
37
38
	/** @var string phpEx */
39
	protected $php_ext;
40
41
	/** @var string ext path */
42
	protected $ext_path;
43
44
	/** @var string ext path web */
45
	protected $ext_path_web;
46
47
	/**
48
	 * Controller constructor
49
	 */
50
	public function __construct(config $config, request $request, helper $helper, template $template, language $language, $root_path, $php_ext)
51
	{
52
		$this->config = $config;
53
		$this->request = $request;
54
		$this->helper = $helper;
55
		$this->template = $template;
56
		$this->language = $language;
57
		$this->root_path = $root_path;
58
		$this->php_ext = $php_ext;
59
		$this->ext_path = $root_path . 'ext/sylver35/smilecreator/';
60
		$this->ext_path_web = generate_board_url() . '/ext/sylver35/smilecreator/';
61
	}
62
63
	public function create_smiley()
64
	{
65
		$this->language->add_lang('smilie_creator', 'sylver35/smilecreator');
66
		//Get all available smilies ( *.png )
67
		if (!function_exists('filelist'))
68
		{
69
			include($this->root_path . 'includes/functions_admin.' . $this->php_ext);
70
		}
71
		$imglist = filelist($this->ext_path . 'images/', '', 'png');
72
73
		$j = $i = 0;
74
		foreach ($imglist as $key => $images)
75
		{
76
			natcasesort($images);
77
			foreach ($images as $img)
78
			{
79
				if ($img == 'schild.png')
80
				{
81
					continue;
82
				}
83
				//If we have more than 5 smilies in a row, create a new row
84
				$rows = false;
85
				if ($j == 5)
86
				{
87
					$rows = true;
88
					$j = 0;
89
				}
90
				$value = substr($img, 0, strrpos($img, '.'));
91
				$number = str_replace('smilie', '', $value);
92
93
				// Put the smileys into the table
94
				$this->template->assign_block_vars('smileys', array(
95
					'SRC'			=> $img,
96
					'TITLE'			=> $value,
97
					'SELECT'		=> $number,
98
					'ROWS'			=> $rows,
99
					'CHECKED'		=> ($i === 0) ? ' checked="checked"' : '',
100
				));
101
				$i++;
102
				$j++;
103
			}
104
		}
105
		if ((int) $this->config['smiliecreator_count'] !== $i)
106
		{
107
			$this->config->set('smiliecreator_count', $i);
108
		}
109
110
		$this->template->assign_vars(array(
111
			'S_IN_CREATE_SMILEY'	=> true,
112
			'SMILEY_RANDOM'			=> $i + 1,
113
			'SELECT_FONTCOLOR'		=> $this->build_select(true),
114
			'SELECT_SHADOWCOLOR'	=> $this->build_select(false),
115
			'SMILEYS_SRC'			=> $this->ext_path_web . 'images/',
116
		));
117
118
		return $this->helper->render('smilie_creator.html', $this->language->lang('SMILIE_CREATOR'));
119
	}
120
121
	public function display_smiley()
122
	{
123
		$text = $this->request->variable('text', '', true);
124
		$smiley = $this->request->variable('smiley', 0);
125
		$fontcolor = $this->request->variable('fontcolor', '');
126
		$shadowcolor = $this->request->variable('shadowcolor', '');
127
		$shieldshadow = $this->request->variable('shieldshadow', 0);
128
		$fontwidth = 6;
129
		$fontheight = 11;
130
		$this->language->add_lang('smilie_creator', 'sylver35/smilecreator');
131
132
		// We have a random smilie ?
133
		if ($smiley === 0)
134
		{
135
			$smiley = mt_rand(1, (int) $this->config['smiliecreator_count'] - 1);
136
		}
137
138
		// Clean the text before
139
		$text = $this->clean_text($text);
140
141
		$output = [];
142
		$nb = mb_strlen($text);
143
		if ($nb > 40)
144
		{
145
			$output[0] = substr($text, 0, 40);
146
			if ($nb > 120)
147
			{
148
				$output[1] = substr($text, 40, 40);
149
				$output[2] = substr($text, 80, 37) . '...';
150
			}
151
			else if ($nb > 80)
152
			{
153
				$output[1] = substr($text, 40, 40);
154
				$output[2] = substr($text, 80, 40);
155
			}
156
			else
157
			{
158
				$output[1] = substr($text, 40, 40);
159
			}
160
			$char_count = 40;
161
		}
162
		else
163
		{
164
			$char_count = $nb;
165
			$output[0] = $text;
166
		}
167
168
		// Maybe we have to tweak here a bit. Depends on the font...
169
		$in = ($char_count * $fontwidth) + 14;
170
		$width = ($in < 60) ? 60 : $in;
171
		$out = sizeof($output);
172
		$height = ($out * $fontheight) + 35;
173
174
		// Main work here
175
		$img = @imagecreate($width, $height);
176
		if ($img === false)
177
		{
178
			throw new http_exception(400, 'CREATE_ERROR');
179
		}
180
		$smiley = @imagecreatefrompng($this->ext_path . 'images/smilie' . $smiley . '.png');
181
		if ($smiley === false)
182
		{
183
			throw new http_exception(400, 'CREATE_ERROR');
184
		}
185
		$schild = @imagecreatefrompng($this->ext_path . 'images/schild.png');
186
		if ($schild === false)
187
		{
188
			throw new http_exception(400, 'CREATE_ERROR');
189
		}
190
191
		$r1 = (int) hexdec(substr($fontcolor, 0, 2));
192
		$g1 = (int) hexdec(substr($fontcolor, 2, 2));
193
		$b1 = (int) hexdec(substr($fontcolor, 4, 2));
194
		$r2 = (int) hexdec(substr($shadowcolor, 0, 2));
195
		$g2 = (int) hexdec(substr($shadowcolor, 2, 2));
196
		$b2 = (int) hexdec(substr($shadowcolor, 4, 2));
197
		$bgcolor = imagecolorallocate($img, 111, 252, 134);
198
		$txtcolor = imagecolorallocate($img, $r1, $g1, $b1);
199
		$txt2color = imagecolorallocate($img, $r2, $g2, $b2);
200
		$bocolor = imagecolorallocate($img, 0, 0, 0);
201
		$schcolor = imagecolorallocate($img, 255, 255, 255);
202
		$shadow1color = imagecolorallocate($img, 235, 235, 235);
203
		$shadow2color = imagecolorallocate($img, 219, 219, 219);
204
		$smileycolor = imagecolorsforindex($smiley, imagecolorat($smiley, 5, 14));
205
206
		imagesetpixel($schild, 1, 14, imagecolorallocate($schild, ($smileycolor["red"] + 52), ($smileycolor["green"] + 59), ($smileycolor["blue"] + 11)));
207
		imagesetpixel($schild, 2, 14, imagecolorallocate($schild, ($smileycolor["red"] + 50), ($smileycolor["green"] + 52), ($smileycolor["blue"] + 50)));
208
		imagesetpixel($schild, 1, 15, imagecolorallocate($schild, ($smileycolor["red"] + 50), ($smileycolor["green"] + 52), ($smileycolor["blue"] + 50)));
209
		imagesetpixel($schild, 2, 15, imagecolorallocate($schild, ($smileycolor["red"] + 22), ($smileycolor["green"] + 21), ($smileycolor["blue"] + 35)));
210
		imagesetpixel($schild, 1, 16, imagecolorat($smiley, 5, 14));
211
		imagesetpixel($schild, 2, 16, imagecolorat($smiley, 5, 14));
212
		imagesetpixel($schild, 5, 16, imagecolorallocate($schild, ($smileycolor["red"] + 22), ($smileycolor["green"] + 21), ($smileycolor["blue"] + 35)));
213
		imagesetpixel($schild, 6, 16, imagecolorat($smiley, 5, 14));
214
		imagesetpixel($schild, 5, 15, imagecolorallocate($schild, ($smileycolor["red"] + 52), ($smileycolor["green"] + 59), ($smileycolor["blue"] + 11)));
215
		imagesetpixel($schild, 6, 15, imagecolorallocate($schild, ($smileycolor["red"] + 50), ($smileycolor["green"] + 52), ($smileycolor["blue"] + 50)));
216
217
		if (@imagecopy($img, $schild, ($width / 2 - 3), 0, 0, 0, 6, 4) === false)
218
		{
219
			throw new http_exception(400, 'CREATE_ERROR');
220
		}
221
		if (@imagecopy($img, $schild, ($width / 2 - 3), ($height - 24), 0, 5, 9, 17) === false)
222
		{
223
			throw new http_exception(400, 'CREATE_ERROR');
224
		}
225
		if (@imagecopy($img, $smiley, ($width / 2 + 6), ($height - 24), 0, 0, 23, 23) === false)
226
		{
227
			throw new http_exception(400, 'CREATE_ERROR');
228
		}
229
230
		imagefilledrectangle($img, 0, 4, $width, ($height - 25), $bocolor);
231
		imagefilledrectangle($img, 1, 5, ($width - 2), ($height - 26), $schcolor);
232
233
		if ($shieldshadow)
234
		{
235
			imagefilledpolygon($img, array((($width - 2) / 2 + ((($width - 2) / 4) - 3)), 5, (($width - 2) / 2 + ((($width - 2) / 4) + 3)), 5, (($width - 2) / 2 - ((($width - 2) / 4) - 3)), ($height - 26), (($width - 2) / 2 - ((($width - 2) / 4) + 3)), ($height - 26)), 4, $shadow1color);
236
			imagefilledpolygon($img, array((($width - 2) / 2 + ((($width - 2) / 4) + 4)), 5, ($width - 2), 5, ($width - 2), ($height - 26), (($width - 2) / 2 - ((($width - 2) / 4) - 4)), ($height - 26)), 4, $shadow2color);
237
		}
238
239
		$i = 0;
240
		while ($i < sizeof($output))
241
		{
242
			if ($shadowcolor)
243
			{
244
				imagestring($img, 2, (($width - (strlen(trim($output[$i])) * $fontwidth) - 2) / 2 + 1), ($i * $fontheight + 6), trim($output[$i]), $txt2color);
245
			}
246
			imagestring($img, 2, (($width - (strlen(trim($output[$i])) * $fontwidth) - 2) / 2), ($i * $fontheight + 5), trim($output[$i]), $txtcolor);
247
			$i++;
248
		}
249
250
		imagecolortransparent($img, $bgcolor);
251
		imageinterlace($img, 1);
252
253
		// Send the image to the browser
254
		header('Pragma: public');
255
		header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
256
		header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . 'GMT');
257
		header('Cache-Control: maxage=10');
258
		header('Content-Type: image/png');
259
		header('Content-Disposition: inline; filename="smilecreator-' . $text . '.png"');
260
		$pic = imagepng($img, NULL, -1, PNG_ALL_FILTERS);
261
		header('Content-Length: ' . filesize($pic));
262
263
		$this->template->assign_vars(array(
264
			'SMILEY'	=> $pic,
265
		));
266
267
		$this->template->set_filenames(array(
268
			'body'	=> '@sylver35_smilecreator/smiley.html'
269
		));
270
271
		garbage_collection();
272
		exit_handler();
273
	}
274
275
	private function build_select($type)
276
	{
277
		$value = ($type) ? '000000' : '0';
278
		$title = ($type) ? 'COLOR_DEFAULT' : 'SHADOWCOLOR_NO';
279
		$title = $this->language->lang($title);
280
281
		$list = array(
282
			'silver'	=> 'C0C0C0',
283
			'darkred'	=> '8B0000',
284
			'red'		=> 'FF0000',
285
			'orange'	=> 'FFA500',
286
			'brown'		=> 'A52A2A',
287
			'green'		=> '00AA00',
288
			'olive'		=> '808000',
289
			'cyan'		=> '00FFFF',
290
			'blue'		=> '0000FF',
291
			'darkblue'	=> '00008B',
292
			'indigo'	=> '4B0082',
293
			'violet'	=> 'EE82EE',
294
			'black'		=> '000000',
295
			'yellow'	=> 'FFFF00',
296
			'white'		=> 'FFFFFF',
297
		);
298
299
		$select = '<option style="color: black;background-color: white;" value="' . $value . '">' . $title . '</option>';
300
301
		foreach ($list as $color => $code)
302
		{
303
			$background = ($color === 'white' || $color === 'yellow') ? 'black' : 'white';
304
			$select .= '<option name="' . $color . '" style="color: #' . $code . ';background-color: ' . $background . ';" value="' . $code . '">' . $this->language->lang('COLOR_' . strtoupper($color)) . '</option>';
305
		}
306
307
		return $select;
308
	}
309
310
	private function clean_text($text)
311
	{
312
		$code = array("'", '"', ',', ';', ':', '!', 'ย', 'ง', '@', '€', '$', '#', '?', '=', '~', '¤', '%', '*', '$', '£', '&lt;', '&gt;', '&quot;', '&amp;', '<', '>', '&');
313
		$text = str_replace($code, '', $text);
314
		$code2 = array('  ', 'é', 'ê', 'è', 'ë', 'É', 'Ê', 'È', 'Ë','à', 'â', 'ä', 'ã','À', 'Â', 'Ä', 'Ã', 'î', 'ï', 'Î', 'Ï', 'ó', 'ò', 'ô', 'ö', 'õ', 'Ó', 'Ò', 'Ô', 'Ö', 'Õ', 'ù', 'û', 'ü', 'Ù', 'Û', 'Ü', 'ç', 'Ç', 'ñ', 'Ñ');
315
		$replace = array(' ', 'e', 'e', 'e', 'e', 'E', 'E', 'E', 'E','a', 'a', 'a', 'a','A', 'A', 'A', 'A', 'i', 'i', 'I', 'I', 'o', 'o', 'o', 'o', 'o', 'O', 'O', 'O', 'O', 'O', 'u', 'u', 'u', 'U', 'U', 'U', 'c', 'c', 'n', 'n');
316
		$text = str_replace($code2, $replace, $text);
317
318
		return $text;
319
	}
320
}
321