blob: 2ffa86d9705a2810104033e40cca1318e9d1aed9 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Jonesb41032d2010-03-05 11:22:45 -06002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesb41032d2010-03-05 11:22:45 -06006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreevf1b43d42012-01-06 14:41:50 +02008 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02009 * Copyright (c) 2014, British Columbia Institute of Technology
Andrey Andreevf1b43d42012-01-06 14:41:50 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020032 * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/)
33 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.0.0
Derek Jonesb41032d2010-03-05 11:22:45 -060036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Jonesb41032d2010-03-05 11:22:45 -060039
Derek Jonesb41032d2010-03-05 11:22:45 -060040/**
41 * CodeIgniter CAPTCHA Helper
42 *
43 * @package CodeIgniter
44 * @subpackage Helpers
45 * @category Helpers
Derek Jonesf4a4bd82011-10-20 12:18:42 -050046 * @author EllisLab Dev Team
vkeranov63326642012-07-12 10:51:34 +030047 * @link http://codeigniter.com/user_guide/helpers/captcha_helper.html
Derek Jonesb41032d2010-03-05 11:22:45 -060048 */
49
50// ------------------------------------------------------------------------
51
Derek Jonesb41032d2010-03-05 11:22:45 -060052if ( ! function_exists('create_captcha'))
53{
Timothy Warren01b129a2012-04-27 11:36:50 -040054 /**
55 * Create CAPTCHA
56 *
Andrey Andreev8963f402013-07-18 16:02:47 +030057 * @param array $data data for the CAPTCHA
58 * @param string $img_path path to create the image in
59 * @param string $img_url URL to the CAPTCHA image folder
60 * @param string $font_path server path to font
Timothy Warren01b129a2012-04-27 11:36:50 -040061 * @return string
62 */
Derek Jonesb41032d2010-03-05 11:22:45 -060063 function create_captcha($data = '', $img_path = '', $img_url = '', $font_path = '')
Barry Mienydd671972010-10-04 16:33:58 +020064 {
Andrey Andreev8963f402013-07-18 16:02:47 +030065 $defaults = array(
66 'word' => '',
67 'img_path' => '',
68 'img_url' => '',
69 'img_width' => '150',
70 'img_height' => '30',
71 'font_path' => '',
72 'expiration' => 7200,
73 'word_length' => 8,
Preethambfa16442014-11-12 10:26:24 -050074 'font_size' => 16,
Andrey Andreev8963f402013-07-18 16:02:47 +030075 'pool' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
76 'colors' => array(
77 'background' => array(255,255,255),
78 'border' => array(153,102,102),
79 'text' => array(204,153,153),
80 'grid' => array(255,182,182)
81 )
82 );
Barry Mienydd671972010-10-04 16:33:58 +020083
Derek Jonesb41032d2010-03-05 11:22:45 -060084 foreach ($defaults as $key => $val)
85 {
Andrey Andreeva7209612012-03-26 21:55:43 +030086 if ( ! is_array($data) && empty($$key))
Derek Jonesb41032d2010-03-05 11:22:45 -060087 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +020088 $$key = $val;
Derek Jonesb41032d2010-03-05 11:22:45 -060089 }
90 else
Barry Mienydd671972010-10-04 16:33:58 +020091 {
Andrey Andreeva7209612012-03-26 21:55:43 +030092 $$key = isset($data[$key]) ? $data[$key] : $val;
Derek Jonesb41032d2010-03-05 11:22:45 -060093 }
94 }
Barry Mienydd671972010-10-04 16:33:58 +020095
Alex Bilbie773ccc32012-06-02 11:11:08 +010096 if ($img_path === '' OR $img_url === ''
Andrey Andreev382b5132014-02-26 18:41:59 +020097 OR ! is_dir($img_path) OR ! is_really_writable($img_path)
Andrey Andreev4f2933d2012-01-08 06:49:49 +020098 OR ! extension_loaded('gd'))
Derek Jonesb41032d2010-03-05 11:22:45 -060099 {
100 return FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200101 }
102
Derek Jonesb41032d2010-03-05 11:22:45 -0600103 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200104 // Remove old images
Derek Jonesb41032d2010-03-05 11:22:45 -0600105 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200106
Michiel Vugteveenc2659b82012-03-07 21:34:52 +0100107 $now = microtime(TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200108
Derek Jonesb41032d2010-03-05 11:22:45 -0600109 $current_dir = @opendir($img_path);
Pascal Kriete45e3cdf2011-02-14 13:26:20 -0500110 while ($filename = @readdir($current_dir))
Derek Jonesb41032d2010-03-05 11:22:45 -0600111 {
vlakoff5f385d02012-09-02 23:00:25 +0200112 if (substr($filename, -4) === '.jpg' && (str_replace('.jpg', '', $filename) + $expiration) < $now)
Derek Jonesb41032d2010-03-05 11:22:45 -0600113 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200114 @unlink($img_path.$filename);
Derek Jonesb41032d2010-03-05 11:22:45 -0600115 }
116 }
Barry Mienydd671972010-10-04 16:33:58 +0200117
Derek Jonesb41032d2010-03-05 11:22:45 -0600118 @closedir($current_dir);
119
120 // -----------------------------------
121 // Do we have a "word" yet?
122 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200123
Andrey Andreev97088552013-02-08 21:53:20 +0200124 if (empty($word))
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200125 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200126 $word = '';
ash29ae72d2013-04-10 13:59:42 +0100127 for ($i = 0, $mt_rand_max = strlen($pool) - 1; $i < $word_length; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600128 {
ash29ae72d2013-04-10 13:59:42 +0100129 $word .= $pool[mt_rand(0, $mt_rand_max)];
Derek Jonesb41032d2010-03-05 11:22:45 -0600130 }
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200131 }
Andrey Andreev97088552013-02-08 21:53:20 +0200132 elseif ( ! is_string($word))
133 {
134 $word = (string) $word;
135 }
Barry Mienydd671972010-10-04 16:33:58 +0200136
Derek Jonesb41032d2010-03-05 11:22:45 -0600137 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200138 // Determine angle and position
Derek Jonesb41032d2010-03-05 11:22:45 -0600139 // -----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600140 $length = strlen($word);
vlakoff3a3d5f62013-10-17 22:22:16 +0200141 $angle = ($length >= 6) ? mt_rand(-($length-6), ($length-6)) : 0;
142 $x_axis = mt_rand(6, (360/$length)-16);
143 $y_axis = ($angle >= 0) ? mt_rand($img_height, $img_width) : mt_rand(6, $img_height);
Barry Mienydd671972010-10-04 16:33:58 +0200144
Derek Jonesb41032d2010-03-05 11:22:45 -0600145 // Create image
Derek Jonesb41032d2010-03-05 11:22:45 -0600146 // PHP.net recommends imagecreatetruecolor(), but it isn't always available
Andrey Andreev4f2933d2012-01-08 06:49:49 +0200147 $im = function_exists('imagecreatetruecolor')
148 ? imagecreatetruecolor($img_width, $img_height)
149 : imagecreate($img_width, $img_height);
Barry Mienydd671972010-10-04 16:33:58 +0200150
Derek Jonesb41032d2010-03-05 11:22:45 -0600151 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500152 // Assign colors
Andrey Andreev8963f402013-07-18 16:02:47 +0300153 // ----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600154
Andrey Andreev8963f402013-07-18 16:02:47 +0300155 is_array($colors) OR $colors = $defaults['colors'];
156
Andrey Andreev53fd6882013-07-26 02:14:09 +0300157 foreach (array_keys($defaults['colors']) as $key)
Andrey Andreev8963f402013-07-18 16:02:47 +0300158 {
159 // Check for a possible missing value
160 is_array($colors[$key]) OR $colors[$key] = $defaults['colors'][$key];
161 $colors[$key] = imagecolorallocate($im, $colors[$key][0], $colors[$key][1], $colors[$key][2]);
162 }
163
164 // Create the rectangle
165 ImageFilledRectangle($im, 0, 0, $img_width, $img_height, $colors['background']);
Barry Mienydd671972010-10-04 16:33:58 +0200166
Derek Jonesb41032d2010-03-05 11:22:45 -0600167 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500168 // Create the spiral pattern
Derek Jonesb41032d2010-03-05 11:22:45 -0600169 // -----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600170 $theta = 1;
171 $thetac = 7;
172 $radius = 16;
173 $circles = 20;
174 $points = 32;
175
Andrey Andreev3419db12012-03-26 22:00:07 +0300176 for ($i = 0, $cp = ($circles * $points) - 1; $i < $cp; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600177 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200178 $theta += $thetac;
179 $rad = $radius * ($i / $points);
Derek Jonesb41032d2010-03-05 11:22:45 -0600180 $x = ($rad * cos($theta)) + $x_axis;
181 $y = ($rad * sin($theta)) + $y_axis;
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200182 $theta += $thetac;
Derek Jonesb41032d2010-03-05 11:22:45 -0600183 $rad1 = $radius * (($i + 1) / $points);
184 $x1 = ($rad1 * cos($theta)) + $x_axis;
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200185 $y1 = ($rad1 * sin($theta)) + $y_axis;
Andrey Andreev8963f402013-07-18 16:02:47 +0300186 imageline($im, $x, $y, $x1, $y1, $colors['grid']);
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200187 $theta -= $thetac;
Derek Jonesb41032d2010-03-05 11:22:45 -0600188 }
189
190 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500191 // Write the text
Derek Jonesb41032d2010-03-05 11:22:45 -0600192 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200193
Alex Bilbie773ccc32012-06-02 11:11:08 +0100194 $use_font = ($font_path !== '' && file_exists($font_path) && function_exists('imagettftext'));
Andrey Andreev7203d542012-03-08 01:42:59 +0200195 if ($use_font === FALSE)
Derek Jonesb41032d2010-03-05 11:22:45 -0600196 {
Preethambfa16442014-11-12 10:26:24 -0500197 ($font_size > 5) && $font_size = 5;
vlakoff3a3d5f62013-10-17 22:22:16 +0200198 $x = mt_rand(0, $img_width / ($length / 3));
Derek Jonesb41032d2010-03-05 11:22:45 -0600199 $y = 0;
200 }
201 else
202 {
Preetham83aeef12014-11-12 08:36:35 -0500203 ($font_size > 30) && $font_size = 30;
vlakoff3a3d5f62013-10-17 22:22:16 +0200204 $x = mt_rand(0, $img_width / ($length / 1.5));
Andrey Andreev7203d542012-03-08 01:42:59 +0200205 $y = $font_size + 2;
Derek Jonesb41032d2010-03-05 11:22:45 -0600206 }
207
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200208 for ($i = 0; $i < $length; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600209 {
Andrey Andreev7203d542012-03-08 01:42:59 +0200210 if ($use_font === FALSE)
Derek Jonesb41032d2010-03-05 11:22:45 -0600211 {
vlakoff3a3d5f62013-10-17 22:22:16 +0200212 $y = mt_rand(0 , $img_height / 2);
Andrey Andreev8963f402013-07-18 16:02:47 +0300213 imagestring($im, $font_size, $x, $y, $word[$i], $colors['text']);
Andrey Andreev7203d542012-03-08 01:42:59 +0200214 $x += ($font_size * 2);
Derek Jonesb41032d2010-03-05 11:22:45 -0600215 }
216 else
Barry Mienydd671972010-10-04 16:33:58 +0200217 {
vlakoff3a3d5f62013-10-17 22:22:16 +0200218 $y = mt_rand($img_height / 2, $img_height - 3);
Andrey Andreev8963f402013-07-18 16:02:47 +0300219 imagettftext($im, $font_size, $angle, $x, $y, $colors['text'], $font_path, $word[$i]);
Derek Jonesb41032d2010-03-05 11:22:45 -0600220 $x += $font_size;
221 }
222 }
Barry Mienydd671972010-10-04 16:33:58 +0200223
Andrey Andreev63a21002012-01-19 15:13:32 +0200224 // Create the border
Andrey Andreev8963f402013-07-18 16:02:47 +0300225 imagerectangle($im, 0, 0, $img_width - 1, $img_height - 1, $colors['border']);
Derek Jonesb41032d2010-03-05 11:22:45 -0600226
227 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500228 // Generate the image
Derek Jonesb41032d2010-03-05 11:22:45 -0600229 // -----------------------------------
egig225f53b2014-05-08 10:34:35 +0700230 $img_url = rtrim($img_url, '/').'/';
ET-NiK6854f872014-08-08 18:43:02 +0400231
Andrey Andreev09546ed2014-08-11 00:11:36 +0300232 if (function_exists('imagejpeg'))
ET-NiK6854f872014-08-08 18:43:02 +0400233 {
234 $img_filename = $now.'.jpg';
Andrey Andreev09546ed2014-08-11 00:11:36 +0300235 imagejpeg($im, $img_path.$img_filename);
ET-NiK6854f872014-08-08 18:43:02 +0400236 }
Andrey Andreev09546ed2014-08-11 00:11:36 +0300237 elseif (function_exists('imagepng'))
ET-NiK6854f872014-08-08 18:43:02 +0400238 {
239 $img_filename = $now.'.png';
Andrey Andreev09546ed2014-08-11 00:11:36 +0300240 imagepng($im, $img_path.$img_filename);
ET-NiK6854f872014-08-08 18:43:02 +0400241 }
242 else
243 {
244 return FALSE;
245 }
246
Andrey Andreev72b4b3c2013-10-21 14:44:57 +0300247 $img = '<img src="'.$img_url.$img_filename.'" style="width: '.$img_width.'; height: '.$img_height .'; border: 0;" alt=" " />';
Derek Jonesb41032d2010-03-05 11:22:45 -0600248 ImageDestroy($im);
Barry Mienydd671972010-10-04 16:33:58 +0200249
Andrey Andreev72b4b3c2013-10-21 14:44:57 +0300250 return array('word' => $word, 'time' => $now, 'image' => $img, 'filename' => $img_filename);
Derek Jonesb41032d2010-03-05 11:22:45 -0600251 }
252}
253
Derek Jones1c73f4e2010-03-05 11:27:41 -0600254/* End of file captcha_helper.php */
egigf039c9f2014-05-09 03:10:05 +0700255/* Location: ./system/helpers/captcha_helper.php */