blob: a105b344bfee51774efb7699e8fdf4587a14614d [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,
Preethame2913652014-12-04 21:01:52 -050075 'img_id' => '',
76 'img_name' => '',
Andrey Andreev8963f402013-07-18 16:02:47 +030077 'pool' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
78 'colors' => array(
79 'background' => array(255,255,255),
80 'border' => array(153,102,102),
81 'text' => array(204,153,153),
82 'grid' => array(255,182,182)
83 )
84 );
Barry Mienydd671972010-10-04 16:33:58 +020085
Derek Jonesb41032d2010-03-05 11:22:45 -060086 foreach ($defaults as $key => $val)
87 {
Andrey Andreeva7209612012-03-26 21:55:43 +030088 if ( ! is_array($data) && empty($$key))
Derek Jonesb41032d2010-03-05 11:22:45 -060089 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +020090 $$key = $val;
Derek Jonesb41032d2010-03-05 11:22:45 -060091 }
92 else
Barry Mienydd671972010-10-04 16:33:58 +020093 {
Andrey Andreeva7209612012-03-26 21:55:43 +030094 $$key = isset($data[$key]) ? $data[$key] : $val;
Derek Jonesb41032d2010-03-05 11:22:45 -060095 }
96 }
Barry Mienydd671972010-10-04 16:33:58 +020097
Alex Bilbie773ccc32012-06-02 11:11:08 +010098 if ($img_path === '' OR $img_url === ''
Andrey Andreev382b5132014-02-26 18:41:59 +020099 OR ! is_dir($img_path) OR ! is_really_writable($img_path)
Andrey Andreev4f2933d2012-01-08 06:49:49 +0200100 OR ! extension_loaded('gd'))
Derek Jonesb41032d2010-03-05 11:22:45 -0600101 {
102 return FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200103 }
104
Derek Jonesb41032d2010-03-05 11:22:45 -0600105 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200106 // Remove old images
Derek Jonesb41032d2010-03-05 11:22:45 -0600107 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200108
Michiel Vugteveenc2659b82012-03-07 21:34:52 +0100109 $now = microtime(TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200110
Derek Jonesb41032d2010-03-05 11:22:45 -0600111 $current_dir = @opendir($img_path);
Pascal Kriete45e3cdf2011-02-14 13:26:20 -0500112 while ($filename = @readdir($current_dir))
Derek Jonesb41032d2010-03-05 11:22:45 -0600113 {
vlakoff5f385d02012-09-02 23:00:25 +0200114 if (substr($filename, -4) === '.jpg' && (str_replace('.jpg', '', $filename) + $expiration) < $now)
Derek Jonesb41032d2010-03-05 11:22:45 -0600115 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200116 @unlink($img_path.$filename);
Derek Jonesb41032d2010-03-05 11:22:45 -0600117 }
118 }
Barry Mienydd671972010-10-04 16:33:58 +0200119
Derek Jonesb41032d2010-03-05 11:22:45 -0600120 @closedir($current_dir);
121
122 // -----------------------------------
123 // Do we have a "word" yet?
124 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200125
Andrey Andreev97088552013-02-08 21:53:20 +0200126 if (empty($word))
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200127 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200128 $word = '';
ash29ae72d2013-04-10 13:59:42 +0100129 for ($i = 0, $mt_rand_max = strlen($pool) - 1; $i < $word_length; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600130 {
ash29ae72d2013-04-10 13:59:42 +0100131 $word .= $pool[mt_rand(0, $mt_rand_max)];
Derek Jonesb41032d2010-03-05 11:22:45 -0600132 }
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200133 }
Andrey Andreev97088552013-02-08 21:53:20 +0200134 elseif ( ! is_string($word))
135 {
136 $word = (string) $word;
137 }
Barry Mienydd671972010-10-04 16:33:58 +0200138
Derek Jonesb41032d2010-03-05 11:22:45 -0600139 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200140 // Determine angle and position
Derek Jonesb41032d2010-03-05 11:22:45 -0600141 // -----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600142 $length = strlen($word);
vlakoff3a3d5f62013-10-17 22:22:16 +0200143 $angle = ($length >= 6) ? mt_rand(-($length-6), ($length-6)) : 0;
144 $x_axis = mt_rand(6, (360/$length)-16);
145 $y_axis = ($angle >= 0) ? mt_rand($img_height, $img_width) : mt_rand(6, $img_height);
Barry Mienydd671972010-10-04 16:33:58 +0200146
Derek Jonesb41032d2010-03-05 11:22:45 -0600147 // Create image
Derek Jonesb41032d2010-03-05 11:22:45 -0600148 // PHP.net recommends imagecreatetruecolor(), but it isn't always available
Andrey Andreev4f2933d2012-01-08 06:49:49 +0200149 $im = function_exists('imagecreatetruecolor')
150 ? imagecreatetruecolor($img_width, $img_height)
151 : imagecreate($img_width, $img_height);
Barry Mienydd671972010-10-04 16:33:58 +0200152
Derek Jonesb41032d2010-03-05 11:22:45 -0600153 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500154 // Assign colors
Andrey Andreev8963f402013-07-18 16:02:47 +0300155 // ----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600156
Andrey Andreev8963f402013-07-18 16:02:47 +0300157 is_array($colors) OR $colors = $defaults['colors'];
158
Andrey Andreev53fd6882013-07-26 02:14:09 +0300159 foreach (array_keys($defaults['colors']) as $key)
Andrey Andreev8963f402013-07-18 16:02:47 +0300160 {
161 // Check for a possible missing value
162 is_array($colors[$key]) OR $colors[$key] = $defaults['colors'][$key];
163 $colors[$key] = imagecolorallocate($im, $colors[$key][0], $colors[$key][1], $colors[$key][2]);
164 }
165
166 // Create the rectangle
167 ImageFilledRectangle($im, 0, 0, $img_width, $img_height, $colors['background']);
Barry Mienydd671972010-10-04 16:33:58 +0200168
Derek Jonesb41032d2010-03-05 11:22:45 -0600169 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500170 // Create the spiral pattern
Derek Jonesb41032d2010-03-05 11:22:45 -0600171 // -----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600172 $theta = 1;
173 $thetac = 7;
174 $radius = 16;
175 $circles = 20;
176 $points = 32;
177
Andrey Andreev3419db12012-03-26 22:00:07 +0300178 for ($i = 0, $cp = ($circles * $points) - 1; $i < $cp; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600179 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200180 $theta += $thetac;
181 $rad = $radius * ($i / $points);
Derek Jonesb41032d2010-03-05 11:22:45 -0600182 $x = ($rad * cos($theta)) + $x_axis;
183 $y = ($rad * sin($theta)) + $y_axis;
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200184 $theta += $thetac;
Derek Jonesb41032d2010-03-05 11:22:45 -0600185 $rad1 = $radius * (($i + 1) / $points);
186 $x1 = ($rad1 * cos($theta)) + $x_axis;
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200187 $y1 = ($rad1 * sin($theta)) + $y_axis;
Andrey Andreev8963f402013-07-18 16:02:47 +0300188 imageline($im, $x, $y, $x1, $y1, $colors['grid']);
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200189 $theta -= $thetac;
Derek Jonesb41032d2010-03-05 11:22:45 -0600190 }
191
192 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500193 // Write the text
Derek Jonesb41032d2010-03-05 11:22:45 -0600194 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200195
Alex Bilbie773ccc32012-06-02 11:11:08 +0100196 $use_font = ($font_path !== '' && file_exists($font_path) && function_exists('imagettftext'));
Andrey Andreev7203d542012-03-08 01:42:59 +0200197 if ($use_font === FALSE)
Derek Jonesb41032d2010-03-05 11:22:45 -0600198 {
Preethambfa16442014-11-12 10:26:24 -0500199 ($font_size > 5) && $font_size = 5;
vlakoff3a3d5f62013-10-17 22:22:16 +0200200 $x = mt_rand(0, $img_width / ($length / 3));
Derek Jonesb41032d2010-03-05 11:22:45 -0600201 $y = 0;
202 }
203 else
204 {
Preetham83aeef12014-11-12 08:36:35 -0500205 ($font_size > 30) && $font_size = 30;
vlakoff3a3d5f62013-10-17 22:22:16 +0200206 $x = mt_rand(0, $img_width / ($length / 1.5));
Andrey Andreev7203d542012-03-08 01:42:59 +0200207 $y = $font_size + 2;
Derek Jonesb41032d2010-03-05 11:22:45 -0600208 }
209
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200210 for ($i = 0; $i < $length; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600211 {
Andrey Andreev7203d542012-03-08 01:42:59 +0200212 if ($use_font === FALSE)
Derek Jonesb41032d2010-03-05 11:22:45 -0600213 {
vlakoff3a3d5f62013-10-17 22:22:16 +0200214 $y = mt_rand(0 , $img_height / 2);
Andrey Andreev8963f402013-07-18 16:02:47 +0300215 imagestring($im, $font_size, $x, $y, $word[$i], $colors['text']);
Andrey Andreev7203d542012-03-08 01:42:59 +0200216 $x += ($font_size * 2);
Derek Jonesb41032d2010-03-05 11:22:45 -0600217 }
218 else
Barry Mienydd671972010-10-04 16:33:58 +0200219 {
vlakoff3a3d5f62013-10-17 22:22:16 +0200220 $y = mt_rand($img_height / 2, $img_height - 3);
Andrey Andreev8963f402013-07-18 16:02:47 +0300221 imagettftext($im, $font_size, $angle, $x, $y, $colors['text'], $font_path, $word[$i]);
Derek Jonesb41032d2010-03-05 11:22:45 -0600222 $x += $font_size;
223 }
224 }
Barry Mienydd671972010-10-04 16:33:58 +0200225
Andrey Andreev63a21002012-01-19 15:13:32 +0200226 // Create the border
Andrey Andreev8963f402013-07-18 16:02:47 +0300227 imagerectangle($im, 0, 0, $img_width - 1, $img_height - 1, $colors['border']);
Derek Jonesb41032d2010-03-05 11:22:45 -0600228
229 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500230 // Generate the image
Derek Jonesb41032d2010-03-05 11:22:45 -0600231 // -----------------------------------
egig225f53b2014-05-08 10:34:35 +0700232 $img_url = rtrim($img_url, '/').'/';
ET-NiK6854f872014-08-08 18:43:02 +0400233
Andrey Andreev09546ed2014-08-11 00:11:36 +0300234 if (function_exists('imagejpeg'))
ET-NiK6854f872014-08-08 18:43:02 +0400235 {
236 $img_filename = $now.'.jpg';
Andrey Andreev09546ed2014-08-11 00:11:36 +0300237 imagejpeg($im, $img_path.$img_filename);
ET-NiK6854f872014-08-08 18:43:02 +0400238 }
Andrey Andreev09546ed2014-08-11 00:11:36 +0300239 elseif (function_exists('imagepng'))
ET-NiK6854f872014-08-08 18:43:02 +0400240 {
241 $img_filename = $now.'.png';
Andrey Andreev09546ed2014-08-11 00:11:36 +0300242 imagepng($im, $img_path.$img_filename);
ET-NiK6854f872014-08-08 18:43:02 +0400243 }
244 else
245 {
246 return FALSE;
247 }
248
Preethame2913652014-12-04 21:01:52 -0500249 $img = '<img id="'.$img_id.'" name="'.$img_name.'" src="'.$img_url.$img_filename.'" style="width: '.$img_width.'; height: '.$img_height .'; border: 0;" alt=" " />';
Derek Jonesb41032d2010-03-05 11:22:45 -0600250 ImageDestroy($im);
Barry Mienydd671972010-10-04 16:33:58 +0200251
Andrey Andreev72b4b3c2013-10-21 14:44:57 +0300252 return array('word' => $word, 'time' => $now, 'image' => $img, 'filename' => $img_filename);
Derek Jonesb41032d2010-03-05 11:22:45 -0600253 }
254}
255
Derek Jones1c73f4e2010-03-05 11:27:41 -0600256/* End of file captcha_helper.php */
egigf039c9f2014-05-09 03:10:05 +0700257/* Location: ./system/helpers/captcha_helper.php */