-
Notifications
You must be signed in to change notification settings - Fork 65
/
class.coupon.php
140 lines (122 loc) · 5.3 KB
/
class.coupon.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
/**
* Class to handle coupon operations
* Changes by Alex Rabinovich (@putchi)
*
* @author Joash Pereira
* @date 2015-06-05
*/
class coupon {
CONST MIN_LENGTH = 8;
/**
* MASK FORMAT [XXX-XXX]
* 'X' this is random symbols
* '-' this is separator
*
* @param array $options
* @return string
* @throws Exception
*/
static public function generate($options = []) {
// to accept options as function arguments like on README
if (!is_array($options) && func_num_args() > 0) {
$keys = ['length', 'prefix', 'suffix', 'letters', 'numbers', 'symbols', 'mixed_case', 'mask'];
$opt = [];
foreach (func_get_args() as $key => $value) {
$opt[ $keys[ $key ] ] = $value;
}
$options = $opt;
}
$length = (isset($options['length']) ? filter_var($options['length'], FILTER_VALIDATE_INT, ['options' => ['default' => self::MIN_LENGTH, 'min_range' => 1]]) : self::MIN_LENGTH );
$prefix = (isset($options['prefix']) ? self::cleanString(filter_var($options['prefix'], FILTER_SANITIZE_STRING)) : '' );
$suffix = (isset($options['suffix']) ? self::cleanString(filter_var($options['suffix'], FILTER_SANITIZE_STRING)) : '' );
$useLetters = (isset($options['letters']) ? filter_var($options['letters'], FILTER_VALIDATE_BOOLEAN) : true );
$useNumbers = (isset($options['numbers']) ? filter_var($options['numbers'], FILTER_VALIDATE_BOOLEAN) : false );
$useSymbols = (isset($options['symbols']) ? filter_var($options['symbols'], FILTER_VALIDATE_BOOLEAN) : false );
$useMixedCase = (isset($options['mixed_case']) ? filter_var($options['mixed_case'], FILTER_VALIDATE_BOOLEAN) : false );
$mask = (isset($options['mask']) ? filter_var($options['mask'], FILTER_SANITIZE_STRING) : false );
$uppercase = ['Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'Z', 'X', 'C', 'V', 'B', 'N', 'M'];
$lowercase = ['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm'];
$numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
$symbols = ['`', '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '_', '=', '+', '\\', '|', '/', '[', ']', '{', '}', '"', "'", ';', ':', '<', '>', ',', '.', '?'];
$characters = [];
$coupon = '';
if ($useLetters) {
if ($useMixedCase) {
$characters = array_merge($characters, $lowercase, $uppercase);
} else {
$characters = array_merge($characters, $uppercase);
}
}
if ($useNumbers) {
$characters = array_merge($characters, $numbers);
}
if ($useSymbols) {
$characters = array_merge($characters, $symbols);
}
if ($mask) {
for ($i = 0; $i < strlen($mask); $i++) {
if ($mask[$i] === 'X') {
$coupon .= $characters[mt_rand(0, count($characters) - 1)];
} else {
$coupon .= $mask[$i];
}
}
} else {
for ($i = 0; $i < $length; $i++) {
$coupon .= $characters[mt_rand(0, count($characters) - 1)];
}
}
return $prefix . $coupon . $suffix;
}
/**
* @param int $maxNumberOfCoupons
* @param array $options
* @return array
*/
static public function generate_coupons($maxNumberOfCoupons = 1, $options = []) {
$coupons = [];
for ($i = 0; $i < $maxNumberOfCoupons; $i++) {
$temp = self::generate($options);
$coupons[] = $temp;
}
return $coupons;
}
/**
* @param int $maxNumberOfCoupons
* @param $filename
* @param array $options
*/
static public function generate_coupons_to_xls($maxNumberOfCoupons = 1, $filename, $options = []) {
$filename = (empty(trim($filename)) ? 'coupons' : trim($filename));
header('Content-Type: application/vnd.ms-excel');
echo 'Coupon Codes' . "\t\n";
for ($i = 0; $i < $maxNumberOfCoupons; $i++) {
$temp = self::generate($options);
echo $temp . "\t\n";
}
header('Content-disposition: attachment; filename=' . $filename . '.xls');
}
/**
* Strip all characters but letters and numbers
* @param $string
* @param array $options
* @return string
* @throws Exception
*/
static private function cleanString($string, $options = []) {
$toUpper = (isset($options['uppercase']) ? filter_var($options['uppercase'], FILTER_VALIDATE_BOOLEAN) : false);
$toLower = (isset($options['lowercase']) ? filter_var($options['lowercase'], FILTER_VALIDATE_BOOLEAN) : false);
$striped = preg_replace('/[^a-zA-Z0-9]/', '', trim($string));
// make uppercase
if ($toLower && $toUpper) {
throw new Exception('You cannot set both options (uppercase|lowercase) to "true"!');
} else if ($toLower) {
return strtolower($striped);
} else if ($toUpper) {
return strtoupper($striped);
} else {
return $striped;
}
}
}