blob: 7cdc0aff29a46a16287347edeee4992ba8f47fbf [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Jonesb41032d2010-03-05 11:22:45 -06002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
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 Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, 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 Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @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' => '',
Andrey Andreev8963f402013-07-18 16:02:47 +030076 'pool' => '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
77 'colors' => array(
78 'background' => array(255,255,255),
79 'border' => array(153,102,102),
80 'text' => array(204,153,153),
81 'grid' => array(255,182,182)
82 )
83 );
Barry Mienydd671972010-10-04 16:33:58 +020084
Derek Jonesb41032d2010-03-05 11:22:45 -060085 foreach ($defaults as $key => $val)
86 {
Andrey Andreeva7209612012-03-26 21:55:43 +030087 if ( ! is_array($data) && empty($$key))
Derek Jonesb41032d2010-03-05 11:22:45 -060088 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +020089 $$key = $val;
Derek Jonesb41032d2010-03-05 11:22:45 -060090 }
91 else
Barry Mienydd671972010-10-04 16:33:58 +020092 {
Andrey Andreeva7209612012-03-26 21:55:43 +030093 $$key = isset($data[$key]) ? $data[$key] : $val;
Derek Jonesb41032d2010-03-05 11:22:45 -060094 }
95 }
Barry Mienydd671972010-10-04 16:33:58 +020096
Alex Bilbie773ccc32012-06-02 11:11:08 +010097 if ($img_path === '' OR $img_url === ''
Andrey Andreev382b5132014-02-26 18:41:59 +020098 OR ! is_dir($img_path) OR ! is_really_writable($img_path)
Andrey Andreev4f2933d2012-01-08 06:49:49 +020099 OR ! extension_loaded('gd'))
Derek Jonesb41032d2010-03-05 11:22:45 -0600100 {
101 return FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200102 }
103
Derek Jonesb41032d2010-03-05 11:22:45 -0600104 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200105 // Remove old images
Derek Jonesb41032d2010-03-05 11:22:45 -0600106 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200107
Michiel Vugteveenc2659b82012-03-07 21:34:52 +0100108 $now = microtime(TRUE);
Barry Mienydd671972010-10-04 16:33:58 +0200109
Derek Jonesb41032d2010-03-05 11:22:45 -0600110 $current_dir = @opendir($img_path);
Pascal Kriete45e3cdf2011-02-14 13:26:20 -0500111 while ($filename = @readdir($current_dir))
Derek Jonesb41032d2010-03-05 11:22:45 -0600112 {
vlakoff5f385d02012-09-02 23:00:25 +0200113 if (substr($filename, -4) === '.jpg' && (str_replace('.jpg', '', $filename) + $expiration) < $now)
Derek Jonesb41032d2010-03-05 11:22:45 -0600114 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200115 @unlink($img_path.$filename);
Derek Jonesb41032d2010-03-05 11:22:45 -0600116 }
117 }
Barry Mienydd671972010-10-04 16:33:58 +0200118
Derek Jonesb41032d2010-03-05 11:22:45 -0600119 @closedir($current_dir);
120
121 // -----------------------------------
122 // Do we have a "word" yet?
123 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200124
Andrey Andreev97088552013-02-08 21:53:20 +0200125 if (empty($word))
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200126 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200127 $word = '';
ash29ae72d2013-04-10 13:59:42 +0100128 for ($i = 0, $mt_rand_max = strlen($pool) - 1; $i < $word_length; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600129 {
ash29ae72d2013-04-10 13:59:42 +0100130 $word .= $pool[mt_rand(0, $mt_rand_max)];
Derek Jonesb41032d2010-03-05 11:22:45 -0600131 }
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200132 }
Andrey Andreev97088552013-02-08 21:53:20 +0200133 elseif ( ! is_string($word))
134 {
135 $word = (string) $word;
136 }
Barry Mienydd671972010-10-04 16:33:58 +0200137
Derek Jonesb41032d2010-03-05 11:22:45 -0600138 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200139 // Determine angle and position
Derek Jonesb41032d2010-03-05 11:22:45 -0600140 // -----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600141 $length = strlen($word);
vlakoff3a3d5f62013-10-17 22:22:16 +0200142 $angle = ($length >= 6) ? mt_rand(-($length-6), ($length-6)) : 0;
143 $x_axis = mt_rand(6, (360/$length)-16);
144 $y_axis = ($angle >= 0) ? mt_rand($img_height, $img_width) : mt_rand(6, $img_height);
Barry Mienydd671972010-10-04 16:33:58 +0200145
Derek Jonesb41032d2010-03-05 11:22:45 -0600146 // Create image
Derek Jonesb41032d2010-03-05 11:22:45 -0600147 // PHP.net recommends imagecreatetruecolor(), but it isn't always available
Andrey Andreev4f2933d2012-01-08 06:49:49 +0200148 $im = function_exists('imagecreatetruecolor')
149 ? imagecreatetruecolor($img_width, $img_height)
150 : imagecreate($img_width, $img_height);
Barry Mienydd671972010-10-04 16:33:58 +0200151
Derek Jonesb41032d2010-03-05 11:22:45 -0600152 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500153 // Assign colors
Andrey Andreev8963f402013-07-18 16:02:47 +0300154 // ----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600155
Andrey Andreev8963f402013-07-18 16:02:47 +0300156 is_array($colors) OR $colors = $defaults['colors'];
157
Andrey Andreev53fd6882013-07-26 02:14:09 +0300158 foreach (array_keys($defaults['colors']) as $key)
Andrey Andreev8963f402013-07-18 16:02:47 +0300159 {
160 // Check for a possible missing value
161 is_array($colors[$key]) OR $colors[$key] = $defaults['colors'][$key];
162 $colors[$key] = imagecolorallocate($im, $colors[$key][0], $colors[$key][1], $colors[$key][2]);
163 }
164
165 // Create the rectangle
166 ImageFilledRectangle($im, 0, 0, $img_width, $img_height, $colors['background']);
Barry Mienydd671972010-10-04 16:33:58 +0200167
Derek Jonesb41032d2010-03-05 11:22:45 -0600168 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500169 // Create the spiral pattern
Derek Jonesb41032d2010-03-05 11:22:45 -0600170 // -----------------------------------
Derek Jonesb41032d2010-03-05 11:22:45 -0600171 $theta = 1;
172 $thetac = 7;
173 $radius = 16;
174 $circles = 20;
175 $points = 32;
176
Andrey Andreev3419db12012-03-26 22:00:07 +0300177 for ($i = 0, $cp = ($circles * $points) - 1; $i < $cp; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600178 {
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200179 $theta += $thetac;
180 $rad = $radius * ($i / $points);
Derek Jonesb41032d2010-03-05 11:22:45 -0600181 $x = ($rad * cos($theta)) + $x_axis;
182 $y = ($rad * sin($theta)) + $y_axis;
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200183 $theta += $thetac;
Derek Jonesb41032d2010-03-05 11:22:45 -0600184 $rad1 = $radius * (($i + 1) / $points);
185 $x1 = ($rad1 * cos($theta)) + $x_axis;
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200186 $y1 = ($rad1 * sin($theta)) + $y_axis;
Andrey Andreev8963f402013-07-18 16:02:47 +0300187 imageline($im, $x, $y, $x1, $y1, $colors['grid']);
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200188 $theta -= $thetac;
Derek Jonesb41032d2010-03-05 11:22:45 -0600189 }
190
191 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500192 // Write the text
Derek Jonesb41032d2010-03-05 11:22:45 -0600193 // -----------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200194
Alex Bilbie773ccc32012-06-02 11:11:08 +0100195 $use_font = ($font_path !== '' && file_exists($font_path) && function_exists('imagettftext'));
Andrey Andreev7203d542012-03-08 01:42:59 +0200196 if ($use_font === FALSE)
Derek Jonesb41032d2010-03-05 11:22:45 -0600197 {
Preethambfa16442014-11-12 10:26:24 -0500198 ($font_size > 5) && $font_size = 5;
vlakoff3a3d5f62013-10-17 22:22:16 +0200199 $x = mt_rand(0, $img_width / ($length / 3));
Derek Jonesb41032d2010-03-05 11:22:45 -0600200 $y = 0;
201 }
202 else
203 {
Preetham83aeef12014-11-12 08:36:35 -0500204 ($font_size > 30) && $font_size = 30;
vlakoff3a3d5f62013-10-17 22:22:16 +0200205 $x = mt_rand(0, $img_width / ($length / 1.5));
Andrey Andreev7203d542012-03-08 01:42:59 +0200206 $y = $font_size + 2;
Derek Jonesb41032d2010-03-05 11:22:45 -0600207 }
208
Andrey Andreevf1b43d42012-01-06 14:41:50 +0200209 for ($i = 0; $i < $length; $i++)
Derek Jonesb41032d2010-03-05 11:22:45 -0600210 {
Andrey Andreev7203d542012-03-08 01:42:59 +0200211 if ($use_font === FALSE)
Derek Jonesb41032d2010-03-05 11:22:45 -0600212 {
vlakoff3a3d5f62013-10-17 22:22:16 +0200213 $y = mt_rand(0 , $img_height / 2);
Andrey Andreev8963f402013-07-18 16:02:47 +0300214 imagestring($im, $font_size, $x, $y, $word[$i], $colors['text']);
Andrey Andreev7203d542012-03-08 01:42:59 +0200215 $x += ($font_size * 2);
Derek Jonesb41032d2010-03-05 11:22:45 -0600216 }
217 else
Barry Mienydd671972010-10-04 16:33:58 +0200218 {
vlakoff3a3d5f62013-10-17 22:22:16 +0200219 $y = mt_rand($img_height / 2, $img_height - 3);
Andrey Andreev8963f402013-07-18 16:02:47 +0300220 imagettftext($im, $font_size, $angle, $x, $y, $colors['text'], $font_path, $word[$i]);
Derek Jonesb41032d2010-03-05 11:22:45 -0600221 $x += $font_size;
222 }
223 }
Barry Mienydd671972010-10-04 16:33:58 +0200224
Andrey Andreev63a21002012-01-19 15:13:32 +0200225 // Create the border
Andrey Andreev8963f402013-07-18 16:02:47 +0300226 imagerectangle($im, 0, 0, $img_width - 1, $img_height - 1, $colors['border']);
Derek Jonesb41032d2010-03-05 11:22:45 -0600227
228 // -----------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500229 // Generate the image
Derek Jonesb41032d2010-03-05 11:22:45 -0600230 // -----------------------------------
egig225f53b2014-05-08 10:34:35 +0700231 $img_url = rtrim($img_url, '/').'/';
ET-NiK6854f872014-08-08 18:43:02 +0400232
Andrey Andreev09546ed2014-08-11 00:11:36 +0300233 if (function_exists('imagejpeg'))
ET-NiK6854f872014-08-08 18:43:02 +0400234 {
235 $img_filename = $now.'.jpg';
Andrey Andreev09546ed2014-08-11 00:11:36 +0300236 imagejpeg($im, $img_path.$img_filename);
ET-NiK6854f872014-08-08 18:43:02 +0400237 }
Andrey Andreev09546ed2014-08-11 00:11:36 +0300238 elseif (function_exists('imagepng'))
ET-NiK6854f872014-08-08 18:43:02 +0400239 {
240 $img_filename = $now.'.png';
Andrey Andreev09546ed2014-08-11 00:11:36 +0300241 imagepng($im, $img_path.$img_filename);
ET-NiK6854f872014-08-08 18:43:02 +0400242 }
243 else
244 {
245 return FALSE;
246 }
247
Preetham6157e522014-12-05 12:19:09 -0500248 $img = '<img '.($img_id === '' ? '' : 'id="'.$img_id.'"').' src="'.$img_url.$img_filename.'" style="width: '.$img_width.'; height: '.$img_height .'; border: 0;" alt=" " />';
Derek Jonesb41032d2010-03-05 11:22:45 -0600249 ImageDestroy($im);
Barry Mienydd671972010-10-04 16:33:58 +0200250
Andrey Andreev72b4b3c2013-10-21 14:44:57 +0300251 return array('word' => $word, 'time' => $now, 'image' => $img, 'filename' => $img_filename);
Derek Jonesb41032d2010-03-05 11:22:45 -0600252 }
253}
254
Derek Jones1c73f4e2010-03-05 11:27:41 -0600255/* End of file captcha_helper.php */
egigf039c9f2014-05-09 03:10:05 +0700256/* Location: ./system/helpers/captcha_helper.php */