@@ -28,24 +28,26 @@ |
||
28 | 28 | |
29 | 29 | private function process_form_data() |
30 | 30 | { |
31 | - if(!Request::hasPost()) |
|
32 | - return array(); |
|
31 | + if(!Request::hasPost()) { |
|
32 | + return array(); |
|
33 | + } |
|
33 | 34 | |
34 | - if(!Validate::checkRequest('post', 'name', 'string')) |
|
35 | - $error_message['name'] = 'Please enter a value for your name.'; |
|
36 | - if(!Validate::checkRequest('post', 'email', 'string')) |
|
37 | - $error_message['email'] = 'Please enter a valid email address.'; |
|
38 | - if(!Validate::checkRequest('post', 'message', 'string')) |
|
39 | - $error_message['message'] = 'Please enter a message.'; |
|
35 | + if(!Validate::checkRequest('post', 'name', 'string')) { |
|
36 | + $error_message['name'] = 'Please enter a value for your name.'; |
|
37 | + } |
|
38 | + if(!Validate::checkRequest('post', 'email', 'string')) { |
|
39 | + $error_message['email'] = 'Please enter a valid email address.'; |
|
40 | + } |
|
41 | + if(!Validate::checkRequest('post', 'message', 'string')) { |
|
42 | + $error_message['message'] = 'Please enter a message.'; |
|
43 | + } |
|
40 | 44 | |
41 | 45 | if(!empty($error_message)) |
42 | 46 | { |
43 | 47 | return array( |
44 | 48 | 'error_message' => $error_message, |
45 | 49 | 'value' => Request::getPost()); |
46 | - } |
|
47 | - |
|
48 | - else |
|
50 | + } else |
|
49 | 51 | { |
50 | 52 | global $config; |
51 | 53 | $mail = new Mail(); |
@@ -36,8 +36,9 @@ |
||
36 | 36 | Loader::load('collector', 'portfolio/PortfolioCollector'); |
37 | 37 | $portfolio_result = PortfolioCollector::getPieceByURI($this->title_url); |
38 | 38 | |
39 | - if($portfolio_result === null) |
|
40 | - $this->eject(); |
|
39 | + if($portfolio_result === null) { |
|
40 | + $this->eject(); |
|
41 | + } |
|
41 | 42 | |
42 | 43 | $portfolio_image_result = PortfolioCollector::getImagesForPiece($portfolio_result->id, 2); |
43 | 44 | $image = new ImageOld("portfolio/{$portfolio_image_result[0]->name}"); |
@@ -26,16 +26,20 @@ discard block |
||
26 | 26 | |
27 | 27 | public function activate() |
28 | 28 | { |
29 | - if(!Request::hasPost()) |
|
30 | - return false; |
|
31 | - if(!Request::getPost('submit') == 'Submit Comment') |
|
32 | - return false; |
|
29 | + if(!Request::hasPost()) { |
|
30 | + return false; |
|
31 | + } |
|
32 | + if(!Request::getPost('submit') == 'Submit Comment') { |
|
33 | + return false; |
|
34 | + } |
|
33 | 35 | |
34 | 36 | $errors = $this->fetch_errors(); |
35 | - if(count($errors) > 0) |
|
36 | - return $errors; |
|
37 | - if(Request::getPost('catch') !== '') |
|
38 | - return false; |
|
37 | + if(count($errors) > 0) { |
|
38 | + return $errors; |
|
39 | + } |
|
40 | + if(Request::getPost('catch') !== '') { |
|
41 | + return false; |
|
42 | + } |
|
39 | 43 | |
40 | 44 | $page_id = $this->save_comment_page(); |
41 | 45 | $commenter_id = $this->save_commenter(); |
@@ -50,18 +54,24 @@ discard block |
||
50 | 54 | private function fetch_errors() |
51 | 55 | { |
52 | 56 | $errors = array(); |
53 | - if(!Validate::checkRequest('post', 'name', 'name')) |
|
54 | - $errors['name'] = 'You must include a valid name'; |
|
55 | - if(!Validate::checkRequest('post', 'email', 'email')) |
|
56 | - $errors['email'] = 'You must include a valid email'; |
|
57 | - if(Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url')) |
|
58 | - $errors['website'] = 'Please enter a valid website'; |
|
59 | - if(!Validate::checkRequest('post', 'comment', 'string')) |
|
60 | - $errors['comment'] = 'You must enter a comment'; |
|
61 | - if(Request::getPost('notify') && Request::getPost('notify') != 'check') |
|
62 | - $errors['notify'] = 'You entered an invalid notify request'; |
|
63 | - if(Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer')) |
|
64 | - $errors['reply'] = 'You entered an invalid reply request'; |
|
57 | + if(!Validate::checkRequest('post', 'name', 'name')) { |
|
58 | + $errors['name'] = 'You must include a valid name'; |
|
59 | + } |
|
60 | + if(!Validate::checkRequest('post', 'email', 'email')) { |
|
61 | + $errors['email'] = 'You must include a valid email'; |
|
62 | + } |
|
63 | + if(Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url')) { |
|
64 | + $errors['website'] = 'Please enter a valid website'; |
|
65 | + } |
|
66 | + if(!Validate::checkRequest('post', 'comment', 'string')) { |
|
67 | + $errors['comment'] = 'You must enter a comment'; |
|
68 | + } |
|
69 | + if(Request::getPost('notify') && Request::getPost('notify') != 'check') { |
|
70 | + $errors['notify'] = 'You entered an invalid notify request'; |
|
71 | + } |
|
72 | + if(Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer')) { |
|
73 | + $errors['reply'] = 'You entered an invalid reply request'; |
|
74 | + } |
|
65 | 75 | |
66 | 76 | return $errors; |
67 | 77 | } |
@@ -69,8 +79,9 @@ discard block |
||
69 | 79 | private function save_comment_page() |
70 | 80 | { |
71 | 81 | $page_result = CommentCollector::getCommentPageByURL($this->path, $this->site); |
72 | - if($page_result !== null) |
|
73 | - return $page_result->id; |
|
82 | + if($page_result !== null) { |
|
83 | + return $page_result->id; |
|
84 | + } |
|
74 | 85 | |
75 | 86 | $query = "INSERT INTO `jpemeric_comment`.`comment_page` (`site`, `path`) VALUES ('%d', '%s')"; |
76 | 87 | $query = sprintf($query, $this->site, $this->path); |
@@ -85,8 +96,9 @@ discard block |
||
85 | 96 | 'name' => Request::getPost('name'), |
86 | 97 | 'email' => Request::getPost('email')); |
87 | 98 | |
88 | - if(Request::getPost('website') != '') |
|
89 | - $cookie_value['website'] = Request::getPost('website'); |
|
99 | + if(Request::getPost('website') != '') { |
|
100 | + $cookie_value['website'] = Request::getPost('website'); |
|
101 | + } |
|
90 | 102 | |
91 | 103 | $cookie_value = json_encode($cookie_value); |
92 | 104 | |
@@ -95,8 +107,9 @@ discard block |
||
95 | 107 | ->save(); |
96 | 108 | |
97 | 109 | $commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website')); |
98 | - if($commenter_result !== null) |
|
99 | - return $commenter_result->id; |
|
110 | + if($commenter_result !== null) { |
|
111 | + return $commenter_result->id; |
|
112 | + } |
|
100 | 113 | |
101 | 114 | $query = "INSERT INTO `jpemeric_comment`.`commenter` (`name`,`email`,`url`) VALUES ('%s','%s','%s')"; |
102 | 115 | |
@@ -112,8 +125,9 @@ discard block |
||
112 | 125 | private function save_comment() |
113 | 126 | { |
114 | 127 | $comment_result = CommentCollector::getCommentByBody(Request::getPost('comment')); |
115 | - if($comment_result !== null) |
|
116 | - return $comment_result->id; |
|
128 | + if($comment_result !== null) { |
|
129 | + return $comment_result->id; |
|
130 | + } |
|
117 | 131 | |
118 | 132 | $query = "INSERT INTO `jpemeric_comment`.`comment` (`body`, `body_format`) VALUES ('%s', '%s')"; |
119 | 133 | |
@@ -133,8 +147,9 @@ discard block |
||
133 | 147 | $query = "INSERT INTO `jpemeric_comment`.`comment_meta` (`commenter`,`comment`,`reply`,`notify`,`comment_page`,`date`,`display`) VALUES ('%d','%d','%d','%d','%d','%s','%d')"; |
134 | 148 | |
135 | 149 | $reply = Database::escape(Request::getPost('type')); |
136 | - if($reply == 'new') |
|
137 | - $reply = 0; |
|
150 | + if($reply == 'new') { |
|
151 | + $reply = 0; |
|
152 | + } |
|
138 | 153 | // else check to make sure value is legit |
139 | 154 | |
140 | 155 | $notify = (Request::getPost('notify') == 'check') ? 1 : 0; |
@@ -163,8 +178,9 @@ discard block |
||
163 | 178 | |
164 | 179 | foreach($notification_result as $notification_row) |
165 | 180 | { |
166 | - if($notification_row->email == Request::getPost('email')) |
|
167 | - continue; |
|
181 | + if($notification_row->email == Request::getPost('email')) { |
|
182 | + continue; |
|
183 | + } |
|
168 | 184 | |
169 | 185 | $email_recipient_array[$notification_row->email] = array( |
170 | 186 | 'email' => $notification_row->email, |
@@ -9,8 +9,9 @@ |
||
9 | 9 | |
10 | 10 | public function __construct($user_agent = null) |
11 | 11 | { |
12 | - if(!isset($user_agent)) |
|
13 | - $user_agent = Request::getServer('HTTP_USER_AGENT'); |
|
12 | + if(!isset($user_agent)) { |
|
13 | + $user_agent = Request::getServer('HTTP_USER_AGENT'); |
|
14 | + } |
|
14 | 15 | $this->user_agent = $user_agent; |
15 | 16 | } |
16 | 17 |
@@ -36,8 +36,9 @@ discard block |
||
36 | 36 | $mysqli = new mysqli($host, $username, $password); |
37 | 37 | |
38 | 38 | $has_connection_error = $mysqli->connect_error; |
39 | - if(isset($has_connection_error)) |
|
40 | - $this->has_connection_error = true; |
|
39 | + if(isset($has_connection_error)) { |
|
40 | + $this->has_connection_error = true; |
|
41 | + } |
|
41 | 42 | |
42 | 43 | return $mysqli; |
43 | 44 | } |
@@ -67,8 +68,9 @@ discard block |
||
67 | 68 | { |
68 | 69 | self::instance()->log_query($query, $start); |
69 | 70 | $array = array(); |
70 | - while($row = $result->fetch_object()) |
|
71 | - $array[] = $row; |
|
71 | + while($row = $result->fetch_object()) { |
|
72 | + $array[] = $row; |
|
73 | + } |
|
72 | 74 | $result->close(); |
73 | 75 | return $array; |
74 | 76 | } |
@@ -79,8 +81,9 @@ discard block |
||
79 | 81 | public static function selectRow($query) |
80 | 82 | { |
81 | 83 | $result = self::select($query); |
82 | - if(is_array($result)) |
|
83 | - return array_pop($result); |
|
84 | + if(is_array($result)) { |
|
85 | + return array_pop($result); |
|
86 | + } |
|
84 | 87 | return false; |
85 | 88 | } |
86 | 89 | |
@@ -99,8 +102,9 @@ discard block |
||
99 | 102 | public static function lastInsertID() |
100 | 103 | { |
101 | 104 | $id = self::instance()->write_connection->insert_id; |
102 | - if($id == 0) |
|
103 | - return false; |
|
105 | + if($id == 0) { |
|
106 | + return false; |
|
107 | + } |
|
104 | 108 | return $id; |
105 | 109 | } |
106 | 110 |
@@ -17,8 +17,9 @@ discard block |
||
17 | 17 | |
18 | 18 | public static function instance() |
19 | 19 | { |
20 | - if(!isset(self::$instance)) |
|
21 | - self::$instance = new Loader(); |
|
20 | + if(!isset(self::$instance)) { |
|
21 | + self::$instance = new Loader(); |
|
22 | + } |
|
22 | 23 | return self::$instance; |
23 | 24 | } |
24 | 25 | |
@@ -71,8 +72,9 @@ discard block |
||
71 | 72 | |
72 | 73 | public static function getImagePath($type, $file) |
73 | 74 | { |
74 | - if($type == 'photo') |
|
75 | - $type = 'photo/processed'; |
|
75 | + if($type == 'photo') { |
|
76 | + $type = 'photo/processed'; |
|
77 | + } |
|
76 | 78 | |
77 | 79 | $path = self::instance()->get_root(); |
78 | 80 | $path .= 'images'; |
@@ -110,11 +112,13 @@ discard block |
||
110 | 112 | foreach((array) $files as $file) |
111 | 113 | { |
112 | 114 | $file_path = self::instance()->get_path($type, $file); |
113 | - if(in_array($file_path, self::instance()->get_included_files()) && $type !== 'view') |
|
114 | - continue; |
|
115 | + if(in_array($file_path, self::instance()->get_included_files()) && $type !== 'view') { |
|
116 | + continue; |
|
117 | + } |
|
115 | 118 | |
116 | - if(!file_exists($file_path)) |
|
117 | - Debugger::logMessage("Requested file does not exist: {$type}, {$file}"); |
|
119 | + if(!file_exists($file_path)) { |
|
120 | + Debugger::logMessage("Requested file does not exist: {$type}, {$file}"); |
|
121 | + } |
|
118 | 122 | |
119 | 123 | self::instance()->add_included_file($file_path); |
120 | 124 | |
@@ -163,10 +167,11 @@ discard block |
||
163 | 167 | |
164 | 168 | $reflectionObject = self::create_reflection_class($file); |
165 | 169 | |
166 | - if($reflectionObject->hasMethod('__construct')) |
|
167 | - return $reflectionObject->newInstanceArgs($data); |
|
168 | - else |
|
169 | - return $reflectionObject->newInstance(); |
|
170 | + if($reflectionObject->hasMethod('__construct')) { |
|
171 | + return $reflectionObject->newInstanceArgs($data); |
|
172 | + } else { |
|
173 | + return $reflectionObject->newInstance(); |
|
174 | + } |
|
170 | 175 | } |
171 | 176 | |
172 | 177 | public static function getRoot() |
@@ -15,12 +15,14 @@ discard block |
||
15 | 15 | static private function form_url_array($host, $uri) |
16 | 16 | { |
17 | 17 | $uri = substr($uri, 1); |
18 | - if(strpos($uri, '?')) |
|
19 | - $uri = substr($uri, 0, strpos($uri, '?')); |
|
18 | + if(strpos($uri, '?')) { |
|
19 | + $uri = substr($uri, 0, strpos($uri, '?')); |
|
20 | + } |
|
20 | 21 | $uri_array = explode('/', $uri); |
21 | 22 | |
22 | - if(!Loader::isLive()) |
|
23 | - $host = substr($host, strpos($host, '.') + 1); |
|
23 | + if(!Loader::isLive()) { |
|
24 | + $host = substr($host, strpos($host, '.') + 1); |
|
25 | + } |
|
24 | 26 | |
25 | 27 | self::$array['host'] = $host; |
26 | 28 | |
@@ -33,8 +35,9 @@ discard block |
||
33 | 35 | self::$array['base'] = 'http://' . (!Loader::isLive() ? 'dev.' : '') . $host . '/'; |
34 | 36 | self::$array['uri'] = '/' . implode('/', $uri_array); |
35 | 37 | |
36 | - if(end($uri_array) == '') |
|
37 | - $uri_array = array_slice($uri_array, 0, count($uri_array) - 1); |
|
38 | + if(end($uri_array) == '') { |
|
39 | + $uri_array = array_slice($uri_array, 0, count($uri_array) - 1); |
|
40 | + } |
|
38 | 41 | self::$array['pieces'] = (array) $uri_array; |
39 | 42 | } |
40 | 43 | |
@@ -61,22 +64,26 @@ discard block |
||
61 | 64 | static function getExtension() |
62 | 65 | { |
63 | 66 | $file = self::getPiece(-1); |
64 | - if(substr($file, -1) == '/') |
|
65 | - return false; |
|
67 | + if(substr($file, -1) == '/') { |
|
68 | + return false; |
|
69 | + } |
|
66 | 70 | return substr($file, strrpos($file, '.') + 1);; |
67 | 71 | } |
68 | 72 | |
69 | 73 | static function getPiece($piece = null) |
70 | 74 | { |
71 | - if(!$piece) |
|
72 | - return self::$array['pieces']; |
|
75 | + if(!$piece) { |
|
76 | + return self::$array['pieces']; |
|
77 | + } |
|
73 | 78 | |
74 | - if($piece == -1) |
|
75 | - return end(self::$array['pieces']); |
|
79 | + if($piece == -1) { |
|
80 | + return end(self::$array['pieces']); |
|
81 | + } |
|
76 | 82 | |
77 | 83 | $piece = $piece - 1; |
78 | - if(array_key_exists($piece, self::$array['pieces'])) |
|
79 | - return self::$array['pieces'][$piece]; |
|
84 | + if(array_key_exists($piece, self::$array['pieces'])) { |
|
85 | + return self::$array['pieces'][$piece]; |
|
86 | + } |
|
80 | 87 | return; |
81 | 88 | } |
82 | 89 |
@@ -21,8 +21,9 @@ discard block |
||
21 | 21 | |
22 | 22 | public function setValue($value) |
23 | 23 | { |
24 | - if(!$this->is_loaded) |
|
25 | - $this->load(); |
|
24 | + if(!$this->is_loaded) { |
|
25 | + $this->load(); |
|
26 | + } |
|
26 | 27 | |
27 | 28 | $this->value = $value; |
28 | 29 | return $this; |
@@ -30,8 +31,9 @@ discard block |
||
30 | 31 | |
31 | 32 | public function getValue() |
32 | 33 | { |
33 | - if(!$this->is_loaded) |
|
34 | - $this->load(); |
|
34 | + if(!$this->is_loaded) { |
|
35 | + $this->load(); |
|
36 | + } |
|
35 | 37 | return $this->value; |
36 | 38 | } |
37 | 39 | |
@@ -42,24 +44,26 @@ discard block |
||
42 | 44 | |
43 | 45 | public function exists() |
44 | 46 | { |
45 | - if(!$this->is_loaded) |
|
46 | - $this->load(); |
|
47 | + if(!$this->is_loaded) { |
|
48 | + $this->load(); |
|
49 | + } |
|
47 | 50 | return $this->exists; |
48 | 51 | } |
49 | 52 | |
50 | 53 | private final function load() |
51 | 54 | { |
52 | 55 | $name = $this->getName(); |
53 | - if(isset($_COOKIE[$name])) |
|
54 | - $value = $_COOKIE[$name]; |
|
56 | + if(isset($_COOKIE[$name])) { |
|
57 | + $value = $_COOKIE[$name]; |
|
58 | + } |
|
55 | 59 | |
56 | 60 | if(isset($value)) |
57 | 61 | { |
58 | 62 | $this->value = $value; |
59 | 63 | $this->exists = true; |
60 | - } |
|
61 | - else |
|
62 | - $this->exists = false; |
|
64 | + } else { |
|
65 | + $this->exists = false; |
|
66 | + } |
|
63 | 67 | |
64 | 68 | $this->is_loaded = true; |
65 | 69 | } |
@@ -84,24 +88,29 @@ discard block |
||
84 | 88 | private final function check_values() |
85 | 89 | { |
86 | 90 | $name = $this->getName(); |
87 | - if(empty($name) || strlen($name) < 1) |
|
88 | - return false; |
|
91 | + if(empty($name) || strlen($name) < 1) { |
|
92 | + return false; |
|
93 | + } |
|
89 | 94 | |
90 | 95 | $value = $this->getValue(); |
91 | - if(!isset($value) || strlen($value) < 1) |
|
92 | - return false; |
|
96 | + if(!isset($value) || strlen($value) < 1) { |
|
97 | + return false; |
|
98 | + } |
|
93 | 99 | |
94 | 100 | $expiration = $this->getExpiration(); |
95 | - if(!isset($expiration) || !is_int($expiration)) |
|
96 | - return false; |
|
101 | + if(!isset($expiration) || !is_int($expiration)) { |
|
102 | + return false; |
|
103 | + } |
|
97 | 104 | |
98 | 105 | $domain = $this->getDomain(); |
99 | - if(!isset($domain) || strlen($domain) < 1) |
|
100 | - return false; |
|
106 | + if(!isset($domain) || strlen($domain) < 1) { |
|
107 | + return false; |
|
108 | + } |
|
101 | 109 | |
102 | 110 | $path = $this->getPath(); |
103 | - if(!isset($path) || strlen($path) < 1) |
|
104 | - return false; |
|
111 | + if(!isset($path) || strlen($path) < 1) { |
|
112 | + return false; |
|
113 | + } |
|
105 | 114 | |
106 | 115 | return true; |
107 | 116 | } |
@@ -26,8 +26,9 @@ discard block |
||
26 | 26 | |
27 | 27 | public static function instance() |
28 | 28 | { |
29 | - if(!isset(self::$instance)) |
|
30 | - self::$instance = new Visitor(); |
|
29 | + if(!isset(self::$instance)) { |
|
30 | + self::$instance = new Visitor(); |
|
31 | + } |
|
31 | 32 | return self::$instance; |
32 | 33 | } |
33 | 34 | |
@@ -35,8 +36,9 @@ discard block |
||
35 | 36 | public static function getBrowser() |
36 | 37 | { |
37 | 38 | Loader::load('utility', 'environment/BrowserEnvironment'); |
38 | - if(!isset(self::instance()->browser)) |
|
39 | - self::instance()->browser = new BrowserEnvironment(); |
|
39 | + if(!isset(self::instance()->browser)) { |
|
40 | + self::instance()->browser = new BrowserEnvironment(); |
|
41 | + } |
|
40 | 42 | return self::instance()->browser; |
41 | 43 | } |
42 | 44 | |
@@ -44,8 +46,9 @@ discard block |
||
44 | 46 | public static function getPlatform() |
45 | 47 | { |
46 | 48 | Loader::load('utility', 'environment/PlatformEnvironment'); |
47 | - if(!isset(self::instance()->platform)) |
|
48 | - self::instance()->platform = new PlatformEnvironment(); |
|
49 | + if(!isset(self::instance()->platform)) { |
|
50 | + self::instance()->platform = new PlatformEnvironment(); |
|
51 | + } |
|
49 | 52 | return self::instance()->platform; |
50 | 53 | } |
51 | 54 | |
@@ -53,8 +56,9 @@ discard block |
||
53 | 56 | public static function getIP() |
54 | 57 | { |
55 | 58 | Loader::load('utility', 'Request'); |
56 | - if(!isset(self::instance()->ip_address)) |
|
57 | - self::instance()->ip_address = Request::getServer('REMOTE_ADDR'); |
|
59 | + if(!isset(self::instance()->ip_address)) { |
|
60 | + self::instance()->ip_address = Request::getServer('REMOTE_ADDR'); |
|
61 | + } |
|
58 | 62 | return self::instance()->ip_address; |
59 | 63 | } |
60 | 64 |