Completed
Push — master ( 72ee7f...4775c0 )
by Jacob
03:43
created
router/PortfolioRouter.class.inc.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             ],
27 27
         ];
28 28
 
29
-        return array_map(function ($row) {
29
+        return array_map(function($row) {
30 30
             return (object) $row;
31 31
         }, $paths);
32 32
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             ],
49 49
         ];
50 50
 
51
-        return array_map(function ($row) {
51
+        return array_map(function($row) {
52 52
             return (object) $row;
53 53
         }, $paths);
54 54
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,11 +2,10 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('router', 'Router');
4 4
 
5
-class PortfolioRouter extends Router
6
-{
5
+class PortfolioRouter extends Router
6
+{
7 7
 
8
-    protected function get_redirect_array()
9
-    {
8
+    protected function get_redirect_array() {
10 9
         $paths = [
11 10
             [
12 11
                 'pattern' => '@/index.(html|htm|php)$@',
@@ -31,8 +30,7 @@  discard block
 block discarded – undo
31 30
         }, $paths);
32 31
     }
33 32
 
34
-    protected function get_direct_array()
35
-    {
33
+    protected function get_direct_array() {
36 34
         $paths = [
37 35
             [
38 36
                 'match' => '/',
Please login to merge, or discard this patch.
router/Router.class.inc.php 3 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
 
19 19
 	private static function get_router_name()
20 20
 	{
21
-		if(Request::isAJAX())
21
+		if (Request::isAJAX())
22 22
 			return 'AJAXRouter';
23 23
 		
24
-		switch(URLDecode::getSite())
24
+		switch (URLDecode::getSite())
25 25
 		{
26 26
 			case 'ajax' :
27 27
 				return 'AjaxRouter';
@@ -65,42 +65,42 @@  discard block
 block discarded – undo
65 65
 
66 66
 	final protected function check_for_redirect($redirect_uri)
67 67
 	{
68
-		foreach($this->get_redirect_array() as $check)
68
+		foreach ($this->get_redirect_array() as $check)
69 69
 		{
70 70
 			$redirect_uri = preg_replace($check->pattern, $check->replace, $redirect_uri);
71 71
 		}
72 72
 		
73 73
 		$redirect_uri = $this->check_for_special_redirect($redirect_uri);
74 74
 		
75
-		if($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/')
75
+		if ($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/')
76 76
 			$redirect_uri .= '/';
77 77
 		
78 78
         if (URLDecode::getHost() == 'waterfalls.jacobemerick.com') {
79 79
             $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
80
-            $redirect_uri = $protocol . '://' . (!Loader::isLive() ? 'dev' : 'www') . '.waterfallsofthekeweenaw.com' . $redirect_uri;
80
+            $redirect_uri = $protocol.'://'.(!Loader::isLive() ? 'dev' : 'www').'.waterfallsofthekeweenaw.com'.$redirect_uri;
81 81
         }
82 82
         
83
-		if($redirect_uri == URLDecode::getURI())
83
+		if ($redirect_uri == URLDecode::getURI())
84 84
 			return;
85 85
 		
86 86
 		$controller_check = $redirect_uri;
87
-		if(substr($redirect_uri, 0, 4) == 'http') {
87
+		if (substr($redirect_uri, 0, 4) == 'http') {
88 88
       $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
89
-			$controller_check = preg_replace('@^' . $protocol . '://([a-z\.]+)@', '', $redirect_uri);
89
+			$controller_check = preg_replace('@^'.$protocol.'://([a-z\.]+)@', '', $redirect_uri);
90 90
     }
91 91
 		
92 92
 		$controller = $this->get_controller($controller_check);
93
-		if($controller == '/Error404Controller')
93
+		if ($controller == '/Error404Controller')
94 94
 		{
95 95
 			Loader::loadNew('controller', '/Error404Controller')
96 96
 				->activate();
97 97
 			exit;
98 98
 		}
99 99
 
100
-		if(substr($redirect_uri, 0, 4) != 'http')
100
+		if (substr($redirect_uri, 0, 4) != 'http')
101 101
 		{
102 102
 			$redirect_uri = substr($redirect_uri, 1);
103
-			$redirect_uri = URLDecode::getBase() . $redirect_uri;
103
+			$redirect_uri = URLDecode::getBase().$redirect_uri;
104 104
 		}
105 105
 		
106 106
 		Loader::loadNew('controller', '/Error301Controller', (array) $redirect_uri)
@@ -114,12 +114,12 @@  discard block
 block discarded – undo
114 114
 
115 115
 	final private function get_controller($uri)
116 116
 	{
117
-		foreach($this->get_direct_array() as $check)
117
+		foreach ($this->get_direct_array() as $check)
118 118
 		{
119
-			if($uri == $check->match)
119
+			if ($uri == $check->match)
120 120
 				return "{$this->get_primary_folder()}/{$check->controller}";
121 121
 			
122
-			if(preg_match("@^{$check->match}$@", $uri))
122
+			if (preg_match("@^{$check->match}$@", $uri))
123 123
 				return "{$this->get_primary_folder()}/{$check->controller}";
124 124
 		}
125 125
 		
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
 	final private function get_primary_folder()
130 130
 	{
131
-		if(Request::isAjax())
131
+		if (Request::isAjax())
132 132
 			return 'ajax';
133 133
 		
134 134
 		return URLDecode::getSite();
Please login to merge, or discard this patch.
Indentation   +105 added lines, -105 removed lines patch added patch discarded remove patch
@@ -1,144 +1,144 @@
 block discarded – undo
1 1
 <?
2 2
 
3 3
 Loader::load('utility', array(
4
-	'Request',
5
-	'URLDecode'));
4
+    'Request',
5
+    'URLDecode'));
6 6
 
7 7
 abstract class Router
8 8
 {
9 9
 
10
-	public function __construct() {}
10
+    public function __construct() {}
11 11
 
12
-	public static function instance()
13
-	{
14
-		$router_name = self::get_router_name();
15
-		$router = Loader::loadNew('router', $router_name);
16
-		$router->route();
17
-	}
12
+    public static function instance()
13
+    {
14
+        $router_name = self::get_router_name();
15
+        $router = Loader::loadNew('router', $router_name);
16
+        $router->route();
17
+    }
18 18
 
19
-	private static function get_router_name()
20
-	{
21
-		if(Request::isAJAX())
22
-			return 'AJAXRouter';
19
+    private static function get_router_name()
20
+    {
21
+        if(Request::isAJAX())
22
+            return 'AJAXRouter';
23 23
 		
24
-		switch(URLDecode::getSite())
25
-		{
26
-			case 'ajax' :
27
-				return 'AjaxRouter';
28
-			break;
29
-			case 'blog' :
30
-				return 'BlogRouter';
31
-			break;
32
-			case 'home' :
33
-				return 'HomeRouter';
34
-			break;
35
-			case 'lifestream' :
36
-				return 'LifestreamRouter';
37
-			break;
38
-			case 'portfolio' :
39
-				return 'PortfolioRouter';
40
-			break;
41
-			case 'site' :
42
-				return 'SiteRouter';
43
-			break;
44
-			case 'waterfalls' :
45
-				return 'WaterfallRouter';
46
-			break;
47
-		}
24
+        switch(URLDecode::getSite())
25
+        {
26
+            case 'ajax' :
27
+                return 'AjaxRouter';
28
+            break;
29
+            case 'blog' :
30
+                return 'BlogRouter';
31
+            break;
32
+            case 'home' :
33
+                return 'HomeRouter';
34
+            break;
35
+            case 'lifestream' :
36
+                return 'LifestreamRouter';
37
+            break;
38
+            case 'portfolio' :
39
+                return 'PortfolioRouter';
40
+            break;
41
+            case 'site' :
42
+                return 'SiteRouter';
43
+            break;
44
+            case 'waterfalls' :
45
+                return 'WaterfallRouter';
46
+            break;
47
+        }
48 48
 		
49
-		Loader::loadNew('controller', '/Error404Controller')->activate();
50
-	}
49
+        Loader::loadNew('controller', '/Error404Controller')->activate();
50
+    }
51 51
 
52
-	protected function route()
53
-	{
54
-		$uri = URLDecode::getURI();
52
+    protected function route()
53
+    {
54
+        $uri = URLDecode::getURI();
55 55
 		
56
-		$this->check_for_redirect($uri);
56
+        $this->check_for_redirect($uri);
57 57
 		
58
-		$controller = $this->get_controller($uri);
59
-		Loader::loadNew('controller', $controller)
60
-			->activate();
61
-	}
58
+        $controller = $this->get_controller($uri);
59
+        Loader::loadNew('controller', $controller)
60
+            ->activate();
61
+    }
62 62
 
63
-	abstract protected function get_redirect_array();
64
-	abstract protected function get_direct_array();
63
+    abstract protected function get_redirect_array();
64
+    abstract protected function get_direct_array();
65 65
 
66
-	final protected function check_for_redirect($redirect_uri)
67
-	{
68
-		foreach($this->get_redirect_array() as $check)
69
-		{
70
-			$redirect_uri = preg_replace($check->pattern, $check->replace, $redirect_uri);
71
-		}
66
+    final protected function check_for_redirect($redirect_uri)
67
+    {
68
+        foreach($this->get_redirect_array() as $check)
69
+        {
70
+            $redirect_uri = preg_replace($check->pattern, $check->replace, $redirect_uri);
71
+        }
72 72
 		
73
-		$redirect_uri = $this->check_for_special_redirect($redirect_uri);
73
+        $redirect_uri = $this->check_for_special_redirect($redirect_uri);
74 74
 		
75
-		if($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/')
76
-			$redirect_uri .= '/';
75
+        if($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/')
76
+            $redirect_uri .= '/';
77 77
 		
78 78
         if (URLDecode::getHost() == 'waterfalls.jacobemerick.com') {
79 79
             $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
80 80
             $redirect_uri = $protocol . '://' . (!Loader::isLive() ? 'dev' : 'www') . '.waterfallsofthekeweenaw.com' . $redirect_uri;
81 81
         }
82 82
         
83
-		if($redirect_uri == URLDecode::getURI())
84
-			return;
83
+        if($redirect_uri == URLDecode::getURI())
84
+            return;
85 85
 		
86
-		$controller_check = $redirect_uri;
87
-		if(substr($redirect_uri, 0, 4) == 'http') {
88
-      $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
89
-			$controller_check = preg_replace('@^' . $protocol . '://([a-z\.]+)@', '', $redirect_uri);
86
+        $controller_check = $redirect_uri;
87
+        if(substr($redirect_uri, 0, 4) == 'http') {
88
+        $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
89
+            $controller_check = preg_replace('@^' . $protocol . '://([a-z\.]+)@', '', $redirect_uri);
90 90
     }
91 91
 		
92
-		$controller = $this->get_controller($controller_check);
93
-		if($controller == '/Error404Controller')
94
-		{
95
-			Loader::loadNew('controller', '/Error404Controller')
96
-				->activate();
97
-			exit;
98
-		}
92
+        $controller = $this->get_controller($controller_check);
93
+        if($controller == '/Error404Controller')
94
+        {
95
+            Loader::loadNew('controller', '/Error404Controller')
96
+                ->activate();
97
+            exit;
98
+        }
99 99
 
100
-		if(substr($redirect_uri, 0, 4) != 'http')
101
-		{
102
-			$redirect_uri = substr($redirect_uri, 1);
103
-			$redirect_uri = URLDecode::getBase() . $redirect_uri;
104
-		}
100
+        if(substr($redirect_uri, 0, 4) != 'http')
101
+        {
102
+            $redirect_uri = substr($redirect_uri, 1);
103
+            $redirect_uri = URLDecode::getBase() . $redirect_uri;
104
+        }
105 105
 		
106
-		Loader::loadNew('controller', '/Error301Controller', (array) $redirect_uri)
107
-			->activate();
108
-	}
106
+        Loader::loadNew('controller', '/Error301Controller', (array) $redirect_uri)
107
+            ->activate();
108
+    }
109 109
 
110
-	protected function check_for_special_redirect($uri)
111
-	{
112
-		return $uri;
113
-	}
110
+    protected function check_for_special_redirect($uri)
111
+    {
112
+        return $uri;
113
+    }
114 114
 
115
-	final private function get_controller($uri)
116
-	{
117
-		foreach($this->get_direct_array() as $check)
118
-		{
119
-			if($uri == $check->match)
120
-				return "{$this->get_primary_folder()}/{$check->controller}";
115
+    final private function get_controller($uri)
116
+    {
117
+        foreach($this->get_direct_array() as $check)
118
+        {
119
+            if($uri == $check->match)
120
+                return "{$this->get_primary_folder()}/{$check->controller}";
121 121
 			
122
-			if(preg_match("@^{$check->match}$@", $uri))
123
-				return "{$this->get_primary_folder()}/{$check->controller}";
124
-		}
122
+            if(preg_match("@^{$check->match}$@", $uri))
123
+                return "{$this->get_primary_folder()}/{$check->controller}";
124
+        }
125 125
 		
126
-		return '/Error404Controller';
127
-	}
126
+        return '/Error404Controller';
127
+    }
128 128
 
129
-	final private function get_primary_folder()
130
-	{
131
-		if(Request::isAjax())
132
-			return 'ajax';
129
+    final private function get_primary_folder()
130
+    {
131
+        if(Request::isAjax())
132
+            return 'ajax';
133 133
 		
134
-		return URLDecode::getSite();
135
-	}
134
+        return URLDecode::getSite();
135
+    }
136 136
 
137
-	private function requires_trailing_slash()
138
-	{
139
-		return (
140
-			URLDecode::getExtension() != 'json' &&
137
+    private function requires_trailing_slash()
138
+    {
139
+        return (
140
+            URLDecode::getExtension() != 'json' &&
141 141
             strstr(URLDecode::getURI(), '#') === false);
142
-	}
142
+    }
143 143
 
144 144
 }
Please login to merge, or discard this patch.
Braces   +28 added lines, -30 removed lines patch added patch discarded remove patch
@@ -4,22 +4,21 @@  discard block
 block discarded – undo
4 4
 	'Request',
5 5
 	'URLDecode'));
6 6
 
7
-abstract class Router
8
-{
7
+abstract class Router
8
+{
9 9
 
10 10
 	public function __construct() {}
11 11
 
12
-	public static function instance()
13
-	{
12
+	public static function instance() {
14 13
 		$router_name = self::get_router_name();
15 14
 		$router = Loader::loadNew('router', $router_name);
16 15
 		$router->route();
17 16
 	}
18 17
 
19
-	private static function get_router_name()
20
-	{
21
-		if(Request::isAJAX())
22
-			return 'AJAXRouter';
18
+	private static function get_router_name() {
19
+		if(Request::isAJAX()) {
20
+					return 'AJAXRouter';
21
+		}
23 22
 		
24 23
 		switch(URLDecode::getSite())
25 24
 		{
@@ -49,8 +48,7 @@  discard block
 block discarded – undo
49 48
 		Loader::loadNew('controller', '/Error404Controller')->activate();
50 49
 	}
51 50
 
52
-	protected function route()
53
-	{
51
+	protected function route() {
54 52
 		$uri = URLDecode::getURI();
55 53
 		
56 54
 		$this->check_for_redirect($uri);
@@ -63,8 +61,7 @@  discard block
 block discarded – undo
63 61
 	abstract protected function get_redirect_array();
64 62
 	abstract protected function get_direct_array();
65 63
 
66
-	final protected function check_for_redirect($redirect_uri)
67
-	{
64
+	final protected function check_for_redirect($redirect_uri) {
68 65
 		foreach($this->get_redirect_array() as $check)
69 66
 		{
70 67
 			$redirect_uri = preg_replace($check->pattern, $check->replace, $redirect_uri);
@@ -72,16 +69,18 @@  discard block
 block discarded – undo
72 69
 		
73 70
 		$redirect_uri = $this->check_for_special_redirect($redirect_uri);
74 71
 		
75
-		if($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/')
76
-			$redirect_uri .= '/';
72
+		if($this->requires_trailing_slash() && substr($redirect_uri, -1) != '/') {
73
+					$redirect_uri .= '/';
74
+		}
77 75
 		
78 76
         if (URLDecode::getHost() == 'waterfalls.jacobemerick.com') {
79 77
             $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
80 78
             $redirect_uri = $protocol . '://' . (!Loader::isLive() ? 'dev' : 'www') . '.waterfallsofthekeweenaw.com' . $redirect_uri;
81 79
         }
82 80
         
83
-		if($redirect_uri == URLDecode::getURI())
84
-			return;
81
+		if($redirect_uri == URLDecode::getURI()) {
82
+					return;
83
+		}
85 84
 		
86 85
 		$controller_check = $redirect_uri;
87 86
 		if(substr($redirect_uri, 0, 4) == 'http') {
@@ -107,35 +106,34 @@  discard block
 block discarded – undo
107 106
 			->activate();
108 107
 	}
109 108
 
110
-	protected function check_for_special_redirect($uri)
111
-	{
109
+	protected function check_for_special_redirect($uri) {
112 110
 		return $uri;
113 111
 	}
114 112
 
115
-	final private function get_controller($uri)
116
-	{
113
+	final private function get_controller($uri) {
117 114
 		foreach($this->get_direct_array() as $check)
118 115
 		{
119
-			if($uri == $check->match)
120
-				return "{$this->get_primary_folder()}/{$check->controller}";
116
+			if($uri == $check->match) {
117
+							return "{$this->get_primary_folder()}/{$check->controller}";
118
+			}
121 119
 			
122
-			if(preg_match("@^{$check->match}$@", $uri))
123
-				return "{$this->get_primary_folder()}/{$check->controller}";
120
+			if(preg_match("@^{$check->match}$@", $uri)) {
121
+							return "{$this->get_primary_folder()}/{$check->controller}";
122
+			}
124 123
 		}
125 124
 		
126 125
 		return '/Error404Controller';
127 126
 	}
128 127
 
129
-	final private function get_primary_folder()
130
-	{
131
-		if(Request::isAjax())
132
-			return 'ajax';
128
+	final private function get_primary_folder() {
129
+		if(Request::isAjax()) {
130
+					return 'ajax';
131
+		}
133 132
 		
134 133
 		return URLDecode::getSite();
135 134
 	}
136 135
 
137
-	private function requires_trailing_slash()
138
-	{
136
+	private function requires_trailing_slash() {
139 137
 		return (
140 138
 			URLDecode::getExtension() != 'json' &&
141 139
             strstr(URLDecode::getURI(), '#') === false);
Please login to merge, or discard this patch.
public/portfolio/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $namespace = 'portfolio';
4
-require_once __DIR__ . '/../../bootstrap.php';
4
+require_once __DIR__.'/../../bootstrap.php';
5 5
 
6 6
 // route
7 7
 Loader::loadInstance('router', 'Router');
Please login to merge, or discard this patch.
utility/content/ImperialUnitContent.class.inc.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,16 +26,16 @@  discard block
 block discarded – undo
26 26
         
27 27
         switch ($type) {
28 28
             case 'full miles' :
29
-                $this->content = number_format(round($number / (12 * 3 * 1760))) . ' miles';
29
+                $this->content = number_format(round($number / (12 * 3 * 1760))).' miles';
30 30
                 break;
31 31
             case 'tenth miles' :
32
-                $this->content = round($number / (12 * 3 * 1760), 1) . ' miles';
32
+                $this->content = round($number / (12 * 3 * 1760), 1).' miles';
33 33
                 break;
34 34
             case 'yards' :
35
-                $this->content = number_format(round($number / (12 * 3))) . ' yards';
35
+                $this->content = number_format(round($number / (12 * 3))).' yards';
36 36
                 break;
37 37
             case 'feet' :
38
-                $this->content = number_format(round($number / 12)) . "'";
38
+                $this->content = number_format(round($number / 12))."'";
39 39
                 break;
40 40
             case 'inches' :
41 41
                 $feet = floor($number / 12);
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                 }
50 50
                 
51 51
                 $this->content = '';
52
-                $this->content .= number_format($feet) . "'";
52
+                $this->content .= number_format($feet)."'";
53 53
                 if (isset($inches) && $inches > 0) {
54 54
                     $this->content .= " {$inches}\"";
55 55
                 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,10 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-final class ImperialUnitContent extends Content
6
-{
5
+final class ImperialUnitContent extends Content
6
+{
7 7
 
8
-    protected function execute($type = '')
9
-    {
8
+    protected function execute($type = '') {
10 9
         $number = floatval($this->content);
11 10
         $number *= 39.37; // convert to inches
12 11
         
Please login to merge, or discard this patch.
module/form/CommentSubmitModule.class.inc.php 3 patches
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -26,15 +26,15 @@  discard block
 block discarded – undo
26 26
 
27 27
 	public function activate()
28 28
 	{
29
-		if(!Request::hasPost())
29
+		if (!Request::hasPost())
30 30
 			return false;
31
-		if(!Request::getPost('submit') == 'Submit Comment')
31
+		if (!Request::getPost('submit') == 'Submit Comment')
32 32
 			return false;
33 33
 		
34 34
 		$errors = $this->fetch_errors();
35
-		if(count($errors) > 0)
35
+		if (count($errors) > 0)
36 36
 			return $errors;
37
-		if(Request::getPost('catch') !== '')
37
+		if (Request::getPost('catch') !== '')
38 38
 			return false;
39 39
 		
40 40
 		$page_id = $this->save_comment_page();
@@ -50,17 +50,17 @@  discard block
 block discarded – undo
50 50
 	private function fetch_errors()
51 51
 	{
52 52
 		$errors = array();
53
-		if(!Validate::checkRequest('post', 'name', 'name'))
53
+		if (!Validate::checkRequest('post', 'name', 'name'))
54 54
 			$errors['name'] = 'You must include a valid name';
55
-		if(!Validate::checkRequest('post', 'email', 'email'))
55
+		if (!Validate::checkRequest('post', 'email', 'email'))
56 56
 			$errors['email'] = 'You must include a valid email';
57
-		if(Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url'))
57
+		if (Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url'))
58 58
 			$errors['website'] = 'Please enter a valid website';
59
-		if(!Validate::checkRequest('post', 'comment', 'string'))
59
+		if (!Validate::checkRequest('post', 'comment', 'string'))
60 60
 			$errors['comment'] = 'You must enter a comment';
61
-		if(Request::getPost('notify') && Request::getPost('notify') != 'check')
61
+		if (Request::getPost('notify') && Request::getPost('notify') != 'check')
62 62
 			$errors['notify'] = 'You entered an invalid notify request';
63
-		if(Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer'))
63
+		if (Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer'))
64 64
 			$errors['reply'] = 'You entered an invalid reply request';
65 65
 		
66 66
 		return $errors;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	private function save_comment_page()
70 70
 	{
71 71
 		$page_result = CommentCollector::getCommentPageByURL($this->path, $this->site);
72
-		if($page_result !== null)
72
+		if ($page_result !== null)
73 73
 			return $page_result->id;
74 74
 		
75 75
 		$query = "INSERT INTO `jpemeric_comment`.`comment_page` (`site`, `path`) VALUES ('%d', '%s')";
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 			'name' => Request::getPost('name'),
86 86
 			'email' => Request::getPost('email'));
87 87
 		
88
-		if(Request::getPost('website') != '')
88
+		if (Request::getPost('website') != '')
89 89
 			$cookie_value['website'] = Request::getPost('website');
90 90
 		
91 91
 		$cookie_value = json_encode($cookie_value);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 			->save();
96 96
 		
97 97
 		$commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
98
-		if($commenter_result !== null)
98
+		if ($commenter_result !== null)
99 99
 			return $commenter_result->id;
100 100
 		
101 101
 		$query = "INSERT INTO `jpemeric_comment`.`commenter` (`name`,`email`,`url`) VALUES ('%s','%s','%s')";
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 	private function save_comment()
113 113
 	{
114 114
 		$comment_result = CommentCollector::getCommentByBody(Request::getPost('comment'));
115
-		if($comment_result !== null)
115
+		if ($comment_result !== null)
116 116
 			return $comment_result->id;
117 117
 		
118 118
 		$query = "INSERT INTO `jpemeric_comment`.`comment` (`body`, `body_format`) VALUES ('%s', '%s')";
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 		$query = "INSERT INTO `jpemeric_comment`.`comment_meta` (`commenter`,`comment`,`reply`,`notify`,`comment_page`,`date`,`display`) VALUES ('%d','%d','%d','%d','%d','%s','%d')";
134 134
 		
135 135
 		$reply = Database::escape(Request::getPost('type'));
136
-		if($reply == 'new')
136
+		if ($reply == 'new')
137 137
 			$reply = 0;
138 138
 		// else check to make sure value is legit
139 139
 		
@@ -152,13 +152,13 @@  discard block
 block discarded – undo
152 152
 		
153 153
 		$commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
154 154
 		
155
-		if($commenter_result->trusted == 1)
155
+		if ($commenter_result->trusted == 1)
156 156
 		{
157 157
 			$notification_result = CommentCollector::getNotificationForPage($page);
158 158
 			
159
-			foreach($notification_result as $notification_row)
159
+			foreach ($notification_result as $notification_row)
160 160
 			{
161
-				if($notification_row->email == Request::getPost('email'))
161
+				if ($notification_row->email == Request::getPost('email'))
162 162
 					continue;
163 163
 				
164 164
 				$email_recipient_array[$notification_row->email] = array(
@@ -171,15 +171,15 @@  discard block
 block discarded – undo
171 171
         
172 172
         if ($site == 'blog') {
173 173
             $subject = "New Comment on Jacob Emerick's Blog";
174
-            $message = "Hello!\nThere has been a new comment on the post '{$this->page_title}' at Jacob Emerick's Blog. You have chosen to be notified of it - please reply to [email protected] if you would like to be removed from these notifications.\n\nOn " . date('F j, Y g:i a') . ", " . Request::getPost('name') . " commented...\n" . Request::getPost('comment') . "\n\nVisit {$this->full_path}#comments to see and reply to all the comments on this post.\nThank you!";
174
+            $message = "Hello!\nThere has been a new comment on the post '{$this->page_title}' at Jacob Emerick's Blog. You have chosen to be notified of it - please reply to [email protected] if you would like to be removed from these notifications.\n\nOn ".date('F j, Y g:i a').", ".Request::getPost('name')." commented...\n".Request::getPost('comment')."\n\nVisit {$this->full_path}#comments to see and reply to all the comments on this post.\nThank you!";
175 175
         } else if ($site == 'waterfalls') {
176 176
             $subject = "New Comment on Waterfalls of the Keweenaw";
177
-            $message = "Hello!\nThere has been a new comment on the page '{$this->page_title}' at Waterfalls of the Keweenaw. You have chosen to be notified of it - please reply to [email protected] if you would like to be removed from these notifications.\n\nOn " . date('F j, Y g:i a') . ", " . Request::getPost('name') . " commented...\n" . Request::getPost('comment') . "\n\nVisit {$this->full_path}#comments to see and reply to all the comments on this post.\nThank you!";
177
+            $message = "Hello!\nThere has been a new comment on the page '{$this->page_title}' at Waterfalls of the Keweenaw. You have chosen to be notified of it - please reply to [email protected] if you would like to be removed from these notifications.\n\nOn ".date('F j, Y g:i a').", ".Request::getPost('name')." commented...\n".Request::getPost('comment')."\n\nVisit {$this->full_path}#comments to see and reply to all the comments on this post.\nThank you!";
178 178
         }
179 179
 
180 180
     global $container;
181 181
 
182
-		foreach($email_recipient_array as $email_recipient)
182
+		foreach ($email_recipient_array as $email_recipient)
183 183
 		{
184 184
       $sent = $container['mail']
185 185
         ->addTo($email_recipient['email'], $email_recipient['name'])
Please login to merge, or discard this patch.
Indentation   +148 added lines, -148 removed lines patch added patch discarded remove patch
@@ -3,165 +3,165 @@  discard block
 block discarded – undo
3 3
 Loader::load('collector', 'comment/CommentCollector');
4 4
 
5 5
 Loader::load('utility', array(
6
-	'Content',
7
-	'Request',
8
-	'Validate'));
6
+    'Content',
7
+    'Request',
8
+    'Validate'));
9 9
 
10 10
 final class CommentSubmitModule
11 11
 {
12 12
 
13
-	private $site;
14
-	private $path;
15
-	private $full_path;
16
-	private $page_title;
17
-
18
-	public function __construct($site, $path, $full_path, $page_title)
19
-	{
20
-		$this->site = $site;
21
-		$this->path = $path;
22
-		$this->full_path = $full_path;
23
-		$this->page_title = $page_title;
24
-	}
25
-
26
-	public function activate()
27
-	{
28
-		if(!Request::hasPost())
29
-			return false;
30
-		if(!Request::getPost('submit') == 'Submit Comment')
31
-			return false;
32
-		
33
-		$errors = $this->fetch_errors();
34
-		if(count($errors) > 0)
35
-			return $errors;
36
-		if(Request::getPost('catch') !== '')
37
-			return false;
38
-		
39
-		$page_id = $this->save_comment_page();
40
-		$commenter_id = $this->save_commenter();
41
-		$comment_id = $this->save_comment();
42
-		
43
-		$comment_meta_id = $this->save_comment_meta($commenter_id, $comment_id, $page_id);
13
+    private $site;
14
+    private $path;
15
+    private $full_path;
16
+    private $page_title;
17
+
18
+    public function __construct($site, $path, $full_path, $page_title)
19
+    {
20
+        $this->site = $site;
21
+        $this->path = $path;
22
+        $this->full_path = $full_path;
23
+        $this->page_title = $page_title;
24
+    }
25
+
26
+    public function activate()
27
+    {
28
+        if(!Request::hasPost())
29
+            return false;
30
+        if(!Request::getPost('submit') == 'Submit Comment')
31
+            return false;
32
+		
33
+        $errors = $this->fetch_errors();
34
+        if(count($errors) > 0)
35
+            return $errors;
36
+        if(Request::getPost('catch') !== '')
37
+            return false;
38
+		
39
+        $page_id = $this->save_comment_page();
40
+        $commenter_id = $this->save_commenter();
41
+        $comment_id = $this->save_comment();
42
+		
43
+        $comment_meta_id = $this->save_comment_meta($commenter_id, $comment_id, $page_id);
44 44
     $comment_service_id = $this->save_to_comment_service(Request::getPost());
45 45
 		
46
-		$this->send_notifications($page_id);
47
-		$this->redirect_to_comment($comment_meta_id);
48
-	}
49
-
50
-	private function fetch_errors()
51
-	{
52
-		$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';
65
-		
66
-		return $errors;
67
-	}
68
-
69
-	private function save_comment_page()
70
-	{
71
-		$page_result = CommentCollector::getCommentPageByURL($this->path, $this->site);
72
-		if($page_result !== null)
73
-			return $page_result->id;
74
-		
75
-		$query = "INSERT INTO `jpemeric_comment`.`comment_page` (`site`, `path`) VALUES ('%d', '%s')";
76
-		$query = sprintf($query, $this->site, $this->path);
77
-		Database::execute($query);
78
-		
79
-		return Database::lastInsertID();
80
-	}
81
-
82
-	private function save_commenter()
83
-	{
84
-		$cookie_value = array(
85
-			'name' => Request::getPost('name'),
86
-			'email' => Request::getPost('email'));
87
-		
88
-		if(Request::getPost('website') != '')
89
-			$cookie_value['website'] = Request::getPost('website');
46
+        $this->send_notifications($page_id);
47
+        $this->redirect_to_comment($comment_meta_id);
48
+    }
49
+
50
+    private function fetch_errors()
51
+    {
52
+        $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';
65
+		
66
+        return $errors;
67
+    }
68
+
69
+    private function save_comment_page()
70
+    {
71
+        $page_result = CommentCollector::getCommentPageByURL($this->path, $this->site);
72
+        if($page_result !== null)
73
+            return $page_result->id;
74
+		
75
+        $query = "INSERT INTO `jpemeric_comment`.`comment_page` (`site`, `path`) VALUES ('%d', '%s')";
76
+        $query = sprintf($query, $this->site, $this->path);
77
+        Database::execute($query);
78
+		
79
+        return Database::lastInsertID();
80
+    }
81
+
82
+    private function save_commenter()
83
+    {
84
+        $cookie_value = array(
85
+            'name' => Request::getPost('name'),
86
+            'email' => Request::getPost('email'));
87
+		
88
+        if(Request::getPost('website') != '')
89
+            $cookie_value['website'] = Request::getPost('website');
90 90
 
91 91
     setcookie('commenter', json_encode($cookie_value), time() + 31536000, '/', 'jacobemerick.com');
92 92
 
93
-		$commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
94
-		if($commenter_result !== null)
95
-			return $commenter_result->id;
93
+        $commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
94
+        if($commenter_result !== null)
95
+            return $commenter_result->id;
96 96
 		
97
-		$query = "INSERT INTO `jpemeric_comment`.`commenter` (`name`,`email`,`url`) VALUES ('%s','%s','%s')";
97
+        $query = "INSERT INTO `jpemeric_comment`.`commenter` (`name`,`email`,`url`) VALUES ('%s','%s','%s')";
98 98
 		
99
-		$name = Database::escape(Request::getPost('name'));
100
-		$email = Database::escape(Request::getPost('email'));
101
-		$website = Database::escape(Request::getPost('website'));
99
+        $name = Database::escape(Request::getPost('name'));
100
+        $email = Database::escape(Request::getPost('email'));
101
+        $website = Database::escape(Request::getPost('website'));
102 102
 		
103
-		$query = sprintf($query, $name, $email, $website);
104
-		Database::execute($query);
105
-		return Database::lastInsertID();
106
-	}
103
+        $query = sprintf($query, $name, $email, $website);
104
+        Database::execute($query);
105
+        return Database::lastInsertID();
106
+    }
107 107
 
108
-	private function save_comment()
109
-	{
110
-		$comment_result = CommentCollector::getCommentByBody(Request::getPost('comment'));
111
-		if($comment_result !== null)
112
-			return $comment_result->id;
108
+    private function save_comment()
109
+    {
110
+        $comment_result = CommentCollector::getCommentByBody(Request::getPost('comment'));
111
+        if($comment_result !== null)
112
+            return $comment_result->id;
113 113
 		
114
-		$query = "INSERT INTO `jpemeric_comment`.`comment` (`body`, `body_format`) VALUES ('%s', '%s')";
114
+        $query = "INSERT INTO `jpemeric_comment`.`comment` (`body`, `body_format`) VALUES ('%s', '%s')";
115 115
 		
116
-		$body = Database::escape(Request::getPost('comment'));
116
+        $body = Database::escape(Request::getPost('comment'));
117 117
 		
118
-		$body_format = Request::getPost('comment');
119
-		$body_format = Content::instance('CleanComment', $body_format)->activate();
120
-		$body_format = Database::escape($body_format);
118
+        $body_format = Request::getPost('comment');
119
+        $body_format = Content::instance('CleanComment', $body_format)->activate();
120
+        $body_format = Database::escape($body_format);
121 121
 		
122
-		$query = sprintf($query, $body, $body_format);
123
-		Database::execute($query);
124
-		return Database::lastInsertID();
125
-	}
122
+        $query = sprintf($query, $body, $body_format);
123
+        Database::execute($query);
124
+        return Database::lastInsertID();
125
+    }
126 126
 
127
-	private function save_comment_meta($commenter, $comment, $page)
128
-	{
129
-		$query = "INSERT INTO `jpemeric_comment`.`comment_meta` (`commenter`,`comment`,`reply`,`notify`,`comment_page`,`date`,`display`) VALUES ('%d','%d','%d','%d','%d','%s','%d')";
127
+    private function save_comment_meta($commenter, $comment, $page)
128
+    {
129
+        $query = "INSERT INTO `jpemeric_comment`.`comment_meta` (`commenter`,`comment`,`reply`,`notify`,`comment_page`,`date`,`display`) VALUES ('%d','%d','%d','%d','%d','%s','%d')";
130 130
 		
131
-		$reply = Database::escape(Request::getPost('type'));
132
-		if($reply == 'new')
133
-			$reply = 0;
134
-		// else check to make sure value is legit
131
+        $reply = Database::escape(Request::getPost('type'));
132
+        if($reply == 'new')
133
+            $reply = 0;
134
+        // else check to make sure value is legit
135 135
 		
136
-		$notify = (Request::getPost('notify') == 'check') ? 1 : 0;
137
-		$date = date('Y-m-d H:i:s');
138
-		$display = 1;
136
+        $notify = (Request::getPost('notify') == 'check') ? 1 : 0;
137
+        $date = date('Y-m-d H:i:s');
138
+        $display = 1;
139 139
 		
140
-		$query = sprintf($query, $commenter, $comment, $reply, $notify, $page, $date, $display);
141
-		Database::execute($query);
142
-		return Database::lastInsertID();
143
-	}
140
+        $query = sprintf($query, $commenter, $comment, $reply, $notify, $page, $date, $display);
141
+        Database::execute($query);
142
+        return Database::lastInsertID();
143
+    }
144 144
 
145
-	private function send_notifications($page)
146
-	{
147
-		$email_recipient_array = array();
145
+    private function send_notifications($page)
146
+    {
147
+        $email_recipient_array = array();
148 148
 		
149
-		$commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
149
+        $commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
150 150
 		
151
-		if($commenter_result->trusted == 1)
152
-		{
153
-			$notification_result = CommentCollector::getNotificationForPage($page);
151
+        if($commenter_result->trusted == 1)
152
+        {
153
+            $notification_result = CommentCollector::getNotificationForPage($page);
154 154
 			
155
-			foreach($notification_result as $notification_row)
156
-			{
157
-				if($notification_row->email == Request::getPost('email'))
158
-					continue;
155
+            foreach($notification_result as $notification_row)
156
+            {
157
+                if($notification_row->email == Request::getPost('email'))
158
+                    continue;
159 159
 				
160
-				$email_recipient_array[$notification_row->email] = array(
161
-					'email' => $notification_row->email,
162
-					'name' => $notification_row->name);
163
-			}
164
-		}
160
+                $email_recipient_array[$notification_row->email] = array(
161
+                    'email' => $notification_row->email,
162
+                    'name' => $notification_row->name);
163
+            }
164
+        }
165 165
         
166 166
         $site = URLDecode::getSite();
167 167
         
@@ -175,26 +175,26 @@  discard block
 block discarded – undo
175 175
 
176 176
     global $container;
177 177
 
178
-		foreach($email_recipient_array as $email_recipient)
179
-		{
180
-      $sent = $container['mail']
178
+        foreach($email_recipient_array as $email_recipient)
179
+        {
180
+        $sent = $container['mail']
181 181
         ->addTo($email_recipient['email'], $email_recipient['name'])
182 182
         ->addBCC($container['config']->admin_email)
183 183
         ->setSubject($subject)
184 184
         ->setPlainMessage($message)
185 185
         ->send();		
186
-		}
187
-	}
188
-
189
-	private function redirect_to_comment($comment_id)
190
-	{
191
-		$url = '';
192
-		$url .= $this->full_path;
193
-		$url .= "#comment-{$comment_id}";
194
-		
195
-		Loader::loadNew('controller', 'Error303Controller', array($url))->activate();
196
-		exit;
197
-	}
186
+        }
187
+    }
188
+
189
+    private function redirect_to_comment($comment_id)
190
+    {
191
+        $url = '';
192
+        $url .= $this->full_path;
193
+        $url .= "#comment-{$comment_id}";
194
+		
195
+        Loader::loadNew('controller', 'Error303Controller', array($url))->activate();
196
+        exit;
197
+    }
198 198
 
199 199
     private function save_to_comment_service(array $data)
200 200
     {
Please login to merge, or discard this patch.
Braces   +60 added lines, -54 removed lines patch added patch discarded remove patch
@@ -7,34 +7,36 @@  discard block
 block discarded – undo
7 7
 	'Request',
8 8
 	'Validate'));
9 9
 
10
-final class CommentSubmitModule
11
-{
10
+final class CommentSubmitModule
11
+{
12 12
 
13 13
 	private $site;
14 14
 	private $path;
15 15
 	private $full_path;
16 16
 	private $page_title;
17 17
 
18
-	public function __construct($site, $path, $full_path, $page_title)
19
-	{
18
+	public function __construct($site, $path, $full_path, $page_title) {
20 19
 		$this->site = $site;
21 20
 		$this->path = $path;
22 21
 		$this->full_path = $full_path;
23 22
 		$this->page_title = $page_title;
24 23
 	}
25 24
 
26
-	public function activate()
27
-	{
28
-		if(!Request::hasPost())
29
-			return false;
30
-		if(!Request::getPost('submit') == 'Submit Comment')
31
-			return false;
25
+	public function activate() {
26
+		if(!Request::hasPost()) {
27
+					return false;
28
+		}
29
+		if(!Request::getPost('submit') == 'Submit Comment') {
30
+					return false;
31
+		}
32 32
 		
33 33
 		$errors = $this->fetch_errors();
34
-		if(count($errors) > 0)
35
-			return $errors;
36
-		if(Request::getPost('catch') !== '')
37
-			return false;
34
+		if(count($errors) > 0) {
35
+					return $errors;
36
+		}
37
+		if(Request::getPost('catch') !== '') {
38
+					return false;
39
+		}
38 40
 		
39 41
 		$page_id = $this->save_comment_page();
40 42
 		$commenter_id = $this->save_commenter();
@@ -47,30 +49,35 @@  discard block
 block discarded – undo
47 49
 		$this->redirect_to_comment($comment_meta_id);
48 50
 	}
49 51
 
50
-	private function fetch_errors()
51
-	{
52
+	private function fetch_errors() {
52 53
 		$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';
54
+		if(!Validate::checkRequest('post', 'name', 'name')) {
55
+					$errors['name'] = 'You must include a valid name';
56
+		}
57
+		if(!Validate::checkRequest('post', 'email', 'email')) {
58
+					$errors['email'] = 'You must include a valid email';
59
+		}
60
+		if(Request::getPost('website') && !Validate::checkRequest('post', 'website', 'url')) {
61
+					$errors['website'] = 'Please enter a valid website';
62
+		}
63
+		if(!Validate::checkRequest('post', 'comment', 'string')) {
64
+					$errors['comment'] = 'You must enter a comment';
65
+		}
66
+		if(Request::getPost('notify') && Request::getPost('notify') != 'check') {
67
+					$errors['notify'] = 'You entered an invalid notify request';
68
+		}
69
+		if(Request::getPost('reply') && !Validate::checkRequest('post', 'reply', 'integer')) {
70
+					$errors['reply'] = 'You entered an invalid reply request';
71
+		}
65 72
 		
66 73
 		return $errors;
67 74
 	}
68 75
 
69
-	private function save_comment_page()
70
-	{
76
+	private function save_comment_page() {
71 77
 		$page_result = CommentCollector::getCommentPageByURL($this->path, $this->site);
72
-		if($page_result !== null)
73
-			return $page_result->id;
78
+		if($page_result !== null) {
79
+					return $page_result->id;
80
+		}
74 81
 		
75 82
 		$query = "INSERT INTO `jpemeric_comment`.`comment_page` (`site`, `path`) VALUES ('%d', '%s')";
76 83
 		$query = sprintf($query, $this->site, $this->path);
@@ -79,20 +86,21 @@  discard block
 block discarded – undo
79 86
 		return Database::lastInsertID();
80 87
 	}
81 88
 
82
-	private function save_commenter()
83
-	{
89
+	private function save_commenter() {
84 90
 		$cookie_value = array(
85 91
 			'name' => Request::getPost('name'),
86 92
 			'email' => Request::getPost('email'));
87 93
 		
88
-		if(Request::getPost('website') != '')
89
-			$cookie_value['website'] = Request::getPost('website');
94
+		if(Request::getPost('website') != '') {
95
+					$cookie_value['website'] = Request::getPost('website');
96
+		}
90 97
 
91 98
     setcookie('commenter', json_encode($cookie_value), time() + 31536000, '/', 'jacobemerick.com');
92 99
 
93 100
 		$commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
94
-		if($commenter_result !== null)
95
-			return $commenter_result->id;
101
+		if($commenter_result !== null) {
102
+					return $commenter_result->id;
103
+		}
96 104
 		
97 105
 		$query = "INSERT INTO `jpemeric_comment`.`commenter` (`name`,`email`,`url`) VALUES ('%s','%s','%s')";
98 106
 		
@@ -105,11 +113,11 @@  discard block
 block discarded – undo
105 113
 		return Database::lastInsertID();
106 114
 	}
107 115
 
108
-	private function save_comment()
109
-	{
116
+	private function save_comment() {
110 117
 		$comment_result = CommentCollector::getCommentByBody(Request::getPost('comment'));
111
-		if($comment_result !== null)
112
-			return $comment_result->id;
118
+		if($comment_result !== null) {
119
+					return $comment_result->id;
120
+		}
113 121
 		
114 122
 		$query = "INSERT INTO `jpemeric_comment`.`comment` (`body`, `body_format`) VALUES ('%s', '%s')";
115 123
 		
@@ -124,13 +132,13 @@  discard block
 block discarded – undo
124 132
 		return Database::lastInsertID();
125 133
 	}
126 134
 
127
-	private function save_comment_meta($commenter, $comment, $page)
128
-	{
135
+	private function save_comment_meta($commenter, $comment, $page) {
129 136
 		$query = "INSERT INTO `jpemeric_comment`.`comment_meta` (`commenter`,`comment`,`reply`,`notify`,`comment_page`,`date`,`display`) VALUES ('%d','%d','%d','%d','%d','%s','%d')";
130 137
 		
131 138
 		$reply = Database::escape(Request::getPost('type'));
132
-		if($reply == 'new')
133
-			$reply = 0;
139
+		if($reply == 'new') {
140
+					$reply = 0;
141
+		}
134 142
 		// else check to make sure value is legit
135 143
 		
136 144
 		$notify = (Request::getPost('notify') == 'check') ? 1 : 0;
@@ -142,8 +150,7 @@  discard block
 block discarded – undo
142 150
 		return Database::lastInsertID();
143 151
 	}
144 152
 
145
-	private function send_notifications($page)
146
-	{
153
+	private function send_notifications($page) {
147 154
 		$email_recipient_array = array();
148 155
 		
149 156
 		$commenter_result = CommentCollector::getCommenterByFields(Request::getPost('name'), Request::getPost('email'), Request::getPost('website'));
@@ -154,8 +161,9 @@  discard block
 block discarded – undo
154 161
 			
155 162
 			foreach($notification_result as $notification_row)
156 163
 			{
157
-				if($notification_row->email == Request::getPost('email'))
158
-					continue;
164
+				if($notification_row->email == Request::getPost('email')) {
165
+									continue;
166
+				}
159 167
 				
160 168
 				$email_recipient_array[$notification_row->email] = array(
161 169
 					'email' => $notification_row->email,
@@ -186,8 +194,7 @@  discard block
 block discarded – undo
186 194
 		}
187 195
 	}
188 196
 
189
-	private function redirect_to_comment($comment_id)
190
-	{
197
+	private function redirect_to_comment($comment_id) {
191 198
 		$url = '';
192 199
 		$url .= $this->full_path;
193 200
 		$url .= "#comment-{$comment_id}";
@@ -196,8 +203,7 @@  discard block
 block discarded – undo
196 203
 		exit;
197 204
 	}
198 205
 
199
-    private function save_to_comment_service(array $data)
200
-    {
206
+    private function save_to_comment_service(array $data) {
201 207
         $path = $_SERVER['REQUEST_URI'];
202 208
         $path = explode('/', $path);
203 209
         $path = array_filter($path);
Please login to merge, or discard this patch.
controller/lifestream/TagController.class.inc.php 3 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 	private function get_title()
48 48
 	{
49
-		switch($this->tag)
49
+		switch ($this->tag)
50 50
 		{
51 51
 			case 'blog' :
52 52
 				return 'Jacob has a Blog';
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
 	private function get_description()
76 76
 	{
77
-		switch($this->tag)
77
+		switch ($this->tag)
78 78
 		{
79 79
 			case 'blog' :
80 80
 				return 'Yeah, Jacob has a blog. Check out his posting activity.';
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	protected function get_page_number()
104 104
 	{
105 105
 		$page = URLDecode::getPiece(3);
106
-		if(isset($page) && is_numeric($page))
106
+		if (isset($page) && is_numeric($page))
107 107
 			return $page;
108 108
 		return 1;
109 109
 	}
@@ -123,24 +123,24 @@  discard block
 block discarded – undo
123 123
 
124 124
 	protected function get_list_next_link()
125 125
 	{
126
-		if($this->page == 1)
126
+		if ($this->page == 1)
127 127
 			return;
128
-		if($this->page == 2)
129
-			return Loader::getRootUrl('lifestream') . $this->tag . '/';
130
-		return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page - 1) . '/';
128
+		if ($this->page == 2)
129
+			return Loader::getRootUrl('lifestream').$this->tag.'/';
130
+		return Loader::getRootUrl('lifestream').$this->tag.'/page/'.($this->page - 1).'/';
131 131
 	}
132 132
 
133 133
 	protected function get_list_prev_link()
134 134
 	{
135
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
135
+		if (($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
136 136
 			return;
137
-		return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page + 1) . '/';
137
+		return Loader::getRootUrl('lifestream').$this->tag.'/page/'.($this->page + 1).'/';
138 138
 	}
139 139
 
140 140
 	private $total_post_count;
141 141
 	protected function get_total_post_count()
142 142
 	{
143
-		if(!isset($this->total_post_count))
143
+		if (!isset($this->total_post_count))
144 144
 			$this->total_post_count = $this->activityRepository->getActivitiesByTypeCount($this->tag);
145 145
 		return $this->total_post_count;
146 146
 	}
Please login to merge, or discard this patch.
Indentation   +126 added lines, -126 removed lines patch added patch discarded remove patch
@@ -5,144 +5,144 @@
 block discarded – undo
5 5
 final class TagController extends DefaultListController
6 6
 {
7 7
 
8
-	private static $TITLE = "%s Activity | Jacob Emerick's Lifestream";
9
-	private static $DESCRIPTION = "%s activity on Jacob Emerick's lifestream, all nice and paginated in one awesome website.";
8
+    private static $TITLE = "%s Activity | Jacob Emerick's Lifestream";
9
+    private static $DESCRIPTION = "%s activity on Jacob Emerick's lifestream, all nice and paginated in one awesome website.";
10 10
 
11
-	private static $KEYWORD_ARRAY = array(
12
-		'lifestream',
13
-		'activity stream',
14
-		'Jacob Emerick');
11
+    private static $KEYWORD_ARRAY = array(
12
+        'lifestream',
13
+        'activity stream',
14
+        'Jacob Emerick');
15 15
 
16
-	private static $LIST_DESCRIPTION = 'viewing %d - %d of %d %s activities';
16
+    private static $LIST_DESCRIPTION = 'viewing %d - %d of %d %s activities';
17 17
 
18
-	private $tag;
18
+    private $tag;
19 19
 
20
-	public function __construct()
21
-	{
22
-		parent::__construct();
20
+    public function __construct()
21
+    {
22
+        parent::__construct();
23 23
 		
24
-		$this->tag = URLDecode::getPiece(1);
25
-	}
24
+        $this->tag = URLDecode::getPiece(1);
25
+    }
26 26
 
27
-	protected function set_head_data()
28
-	{
29
-		$this->set_title(sprintf(self::$TITLE, ucwords($this->tag)));
30
-		$this->set_description(sprintf(self::$DESCRIPTION, ucwords($this->tag)));
27
+    protected function set_head_data()
28
+    {
29
+        $this->set_title(sprintf(self::$TITLE, ucwords($this->tag)));
30
+        $this->set_description(sprintf(self::$DESCRIPTION, ucwords($this->tag)));
31 31
 		
32
-		$keyword_array = self::$KEYWORD_ARRAY;
33
-		array_unshift($keyword_array, $this->tag);
34
-		$this->set_keywords($keyword_array);
32
+        $keyword_array = self::$KEYWORD_ARRAY;
33
+        array_unshift($keyword_array, $this->tag);
34
+        $this->set_keywords($keyword_array);
35 35
 		
36
-		parent::set_head_data();
37
-	}
36
+        parent::set_head_data();
37
+    }
38 38
 
39
-	protected function set_body_data()
40
-	{
41
-		$this->set_body('title', $this->get_title());
42
-		$this->set_body('description', $this->get_description());
39
+    protected function set_body_data()
40
+    {
41
+        $this->set_body('title', $this->get_title());
42
+        $this->set_body('description', $this->get_description());
43 43
 		
44
-		parent::set_body_data();
45
-	}
46
-
47
-	private function get_title()
48
-	{
49
-		switch($this->tag)
50
-		{
51
-			case 'blog' :
52
-				return 'Jacob has a Blog';
53
-			break;
54
-			case 'book' :
55
-				return 'Jacob reads Books';
56
-			break;
57
-			case 'distance' :
58
-				return 'Run, Jacob, and Hike';
59
-			break;
60
-      case 'github' :
44
+        parent::set_body_data();
45
+    }
46
+
47
+    private function get_title()
48
+    {
49
+        switch($this->tag)
50
+        {
51
+            case 'blog' :
52
+                return 'Jacob has a Blog';
53
+            break;
54
+            case 'book' :
55
+                return 'Jacob reads Books';
56
+            break;
57
+            case 'distance' :
58
+                return 'Run, Jacob, and Hike';
59
+            break;
60
+        case 'github' :
61 61
         return 'Jacob, Code Monkey';
62
-      break;
63
-			case 'hulu' :
64
-				return 'Jacob watches Hulu';
65
-			break;
66
-			case 'twitter' :
67
-				return 'Jacob likes to Tweet';
68
-			break;
69
-			case 'youtube' :
70
-				return 'Videos Jacob Likes';
71
-			break;
72
-		}
73
-	}
74
-
75
-	private function get_description()
76
-	{
77
-		switch($this->tag)
78
-		{
79
-			case 'blog' :
80
-				return 'Yeah, Jacob has a blog. Check out his posting activity.';
81
-			break;
82
-			case 'book' :
83
-				return "Outside of building websites, hiking, and <em>being awesome</em>, Jacob reads books. Check out what he's been reading.";
84
-			break;
85
-			case 'distance' :
86
-				return 'All the cool kids like to be in shape. Jacob goes running and hiking.';
87
-			break;
88
-      case 'github' :
62
+        break;
63
+            case 'hulu' :
64
+                return 'Jacob watches Hulu';
65
+            break;
66
+            case 'twitter' :
67
+                return 'Jacob likes to Tweet';
68
+            break;
69
+            case 'youtube' :
70
+                return 'Videos Jacob Likes';
71
+            break;
72
+        }
73
+    }
74
+
75
+    private function get_description()
76
+    {
77
+        switch($this->tag)
78
+        {
79
+            case 'blog' :
80
+                return 'Yeah, Jacob has a blog. Check out his posting activity.';
81
+            break;
82
+            case 'book' :
83
+                return "Outside of building websites, hiking, and <em>being awesome</em>, Jacob reads books. Check out what he's been reading.";
84
+            break;
85
+            case 'distance' :
86
+                return 'All the cool kids like to be in shape. Jacob goes running and hiking.';
87
+            break;
88
+        case 'github' :
89 89
         return 'Since he is trying to be a developer, Jacob codes. Here is some code that he pushed around on the Githubs.';
90
-      break;
91
-			case 'hulu' :
92
-				return 'Occasionally Jacob chills and watches some Hulu. Well, used to, anyways.';
93
-			break;
94
-			case 'twitter' :
95
-				return 'All the cool kids are on Twitter. The cool kids and Jacob. Check his tweets, yo.';
96
-			break;
97
-			case 'youtube' :
98
-				return 'Jacob watches videos on YouTube. Some videos he likes more than others.';
99
-			break;
100
-		}
101
-	}
102
-
103
-	protected function get_page_number()
104
-	{
105
-		$page = URLDecode::getPiece(3);
106
-		if(isset($page) && is_numeric($page))
107
-			return $page;
108
-		return 1;
109
-	}
110
-
111
-	protected function get_list_results()
112
-	{
113
-		return $this->activityRepository->getActivitiesByType($this->tag, self::$POSTS_PER_PAGE, $this->offset);
114
-	}
115
-
116
-	protected function get_list_description()
117
-	{
118
-		$start = $this->offset + 1;
119
-		$end = min($this->offset + self::$POSTS_PER_PAGE, $this->get_total_post_count());
90
+        break;
91
+            case 'hulu' :
92
+                return 'Occasionally Jacob chills and watches some Hulu. Well, used to, anyways.';
93
+            break;
94
+            case 'twitter' :
95
+                return 'All the cool kids are on Twitter. The cool kids and Jacob. Check his tweets, yo.';
96
+            break;
97
+            case 'youtube' :
98
+                return 'Jacob watches videos on YouTube. Some videos he likes more than others.';
99
+            break;
100
+        }
101
+    }
102
+
103
+    protected function get_page_number()
104
+    {
105
+        $page = URLDecode::getPiece(3);
106
+        if(isset($page) && is_numeric($page))
107
+            return $page;
108
+        return 1;
109
+    }
110
+
111
+    protected function get_list_results()
112
+    {
113
+        return $this->activityRepository->getActivitiesByType($this->tag, self::$POSTS_PER_PAGE, $this->offset);
114
+    }
115
+
116
+    protected function get_list_description()
117
+    {
118
+        $start = $this->offset + 1;
119
+        $end = min($this->offset + self::$POSTS_PER_PAGE, $this->get_total_post_count());
120 120
 		
121
-		return sprintf(self::$LIST_DESCRIPTION, $start, $end, $this->get_total_post_count(), $this->tag);
122
-	}
123
-
124
-	protected function get_list_next_link()
125
-	{
126
-		if($this->page == 1)
127
-			return;
128
-		if($this->page == 2)
129
-			return Loader::getRootUrl('lifestream') . $this->tag . '/';
130
-		return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page - 1) . '/';
131
-	}
132
-
133
-	protected function get_list_prev_link()
134
-	{
135
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
136
-			return;
137
-		return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page + 1) . '/';
138
-	}
139
-
140
-	private $total_post_count;
141
-	protected function get_total_post_count()
142
-	{
143
-		if(!isset($this->total_post_count))
144
-			$this->total_post_count = $this->activityRepository->getActivitiesByTypeCount($this->tag);
145
-		return $this->total_post_count;
146
-	}
121
+        return sprintf(self::$LIST_DESCRIPTION, $start, $end, $this->get_total_post_count(), $this->tag);
122
+    }
123
+
124
+    protected function get_list_next_link()
125
+    {
126
+        if($this->page == 1)
127
+            return;
128
+        if($this->page == 2)
129
+            return Loader::getRootUrl('lifestream') . $this->tag . '/';
130
+        return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page - 1) . '/';
131
+    }
132
+
133
+    protected function get_list_prev_link()
134
+    {
135
+        if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
136
+            return;
137
+        return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page + 1) . '/';
138
+    }
139
+
140
+    private $total_post_count;
141
+    protected function get_total_post_count()
142
+    {
143
+        if(!isset($this->total_post_count))
144
+            $this->total_post_count = $this->activityRepository->getActivitiesByTypeCount($this->tag);
145
+        return $this->total_post_count;
146
+    }
147 147
 
148 148
 }
Please login to merge, or discard this patch.
Braces   +28 added lines, -34 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'lifestream/DefaultListController');
4 4
 
5
-final class TagController extends DefaultListController
6
-{
5
+final class TagController extends DefaultListController
6
+{
7 7
 
8 8
 	private static $TITLE = "%s Activity | Jacob Emerick's Lifestream";
9 9
 	private static $DESCRIPTION = "%s activity on Jacob Emerick's lifestream, all nice and paginated in one awesome website.";
@@ -17,15 +17,13 @@  discard block
 block discarded – undo
17 17
 
18 18
 	private $tag;
19 19
 
20
-	public function __construct()
21
-	{
20
+	public function __construct() {
22 21
 		parent::__construct();
23 22
 		
24 23
 		$this->tag = URLDecode::getPiece(1);
25 24
 	}
26 25
 
27
-	protected function set_head_data()
28
-	{
26
+	protected function set_head_data() {
29 27
 		$this->set_title(sprintf(self::$TITLE, ucwords($this->tag)));
30 28
 		$this->set_description(sprintf(self::$DESCRIPTION, ucwords($this->tag)));
31 29
 		
@@ -36,16 +34,14 @@  discard block
 block discarded – undo
36 34
 		parent::set_head_data();
37 35
 	}
38 36
 
39
-	protected function set_body_data()
40
-	{
37
+	protected function set_body_data() {
41 38
 		$this->set_body('title', $this->get_title());
42 39
 		$this->set_body('description', $this->get_description());
43 40
 		
44 41
 		parent::set_body_data();
45 42
 	}
46 43
 
47
-	private function get_title()
48
-	{
44
+	private function get_title() {
49 45
 		switch($this->tag)
50 46
 		{
51 47
 			case 'blog' :
@@ -72,8 +68,7 @@  discard block
 block discarded – undo
72 68
 		}
73 69
 	}
74 70
 
75
-	private function get_description()
76
-	{
71
+	private function get_description() {
77 72
 		switch($this->tag)
78 73
 		{
79 74
 			case 'blog' :
@@ -100,48 +95,47 @@  discard block
 block discarded – undo
100 95
 		}
101 96
 	}
102 97
 
103
-	protected function get_page_number()
104
-	{
98
+	protected function get_page_number() {
105 99
 		$page = URLDecode::getPiece(3);
106
-		if(isset($page) && is_numeric($page))
107
-			return $page;
100
+		if(isset($page) && is_numeric($page)) {
101
+					return $page;
102
+		}
108 103
 		return 1;
109 104
 	}
110 105
 
111
-	protected function get_list_results()
112
-	{
106
+	protected function get_list_results() {
113 107
 		return $this->activityRepository->getActivitiesByType($this->tag, self::$POSTS_PER_PAGE, $this->offset);
114 108
 	}
115 109
 
116
-	protected function get_list_description()
117
-	{
110
+	protected function get_list_description() {
118 111
 		$start = $this->offset + 1;
119 112
 		$end = min($this->offset + self::$POSTS_PER_PAGE, $this->get_total_post_count());
120 113
 		
121 114
 		return sprintf(self::$LIST_DESCRIPTION, $start, $end, $this->get_total_post_count(), $this->tag);
122 115
 	}
123 116
 
124
-	protected function get_list_next_link()
125
-	{
126
-		if($this->page == 1)
127
-			return;
128
-		if($this->page == 2)
129
-			return Loader::getRootUrl('lifestream') . $this->tag . '/';
117
+	protected function get_list_next_link() {
118
+		if($this->page == 1) {
119
+					return;
120
+		}
121
+		if($this->page == 2) {
122
+					return Loader::getRootUrl('lifestream') . $this->tag . '/';
123
+		}
130 124
 		return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page - 1) . '/';
131 125
 	}
132 126
 
133
-	protected function get_list_prev_link()
134
-	{
135
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
136
-			return;
127
+	protected function get_list_prev_link() {
128
+		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count()) {
129
+					return;
130
+		}
137 131
 		return Loader::getRootUrl('lifestream') . $this->tag . '/page/' . ($this->page + 1) . '/';
138 132
 	}
139 133
 
140 134
 	private $total_post_count;
141
-	protected function get_total_post_count()
142
-	{
143
-		if(!isset($this->total_post_count))
144
-			$this->total_post_count = $this->activityRepository->getActivitiesByTypeCount($this->tag);
135
+	protected function get_total_post_count() {
136
+		if(!isset($this->total_post_count)) {
137
+					$this->total_post_count = $this->activityRepository->getActivitiesByTypeCount($this->tag);
138
+		}
145 139
 		return $this->total_post_count;
146 140
 	}
147 141
 
Please login to merge, or discard this patch.
controller/lifestream/HomeController.class.inc.php 3 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 	protected function get_page_number()
39 39
 	{
40 40
 		$page = URLDecode::getPiece(2);
41
-		if(isset($page) && is_numeric($page))
41
+		if (isset($page) && is_numeric($page))
42 42
 			return $page;
43 43
 		return 1;
44 44
 	}
@@ -58,24 +58,24 @@  discard block
 block discarded – undo
58 58
 
59 59
 	protected function get_list_next_link()
60 60
 	{
61
-		if($this->page == 1)
61
+		if ($this->page == 1)
62 62
 			return;
63
-		if($this->page == 2)
63
+		if ($this->page == 2)
64 64
 			return Loader::getRootUrl('lifestream');
65
-		return Loader::getRootUrl('lifestream') . 'page/' . ($this->page - 1) . '/';
65
+		return Loader::getRootUrl('lifestream').'page/'.($this->page - 1).'/';
66 66
 	}
67 67
 
68 68
 	protected function get_list_prev_link()
69 69
 	{
70
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
70
+		if (($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
71 71
 			return;
72
-		return Loader::getRootUrl('lifestream') . 'page/' . ($this->page + 1) . '/';
72
+		return Loader::getRootUrl('lifestream').'page/'.($this->page + 1).'/';
73 73
 	}
74 74
 
75 75
 	private $total_post_count;
76 76
 	protected function get_total_post_count()
77 77
 	{
78
-		if(!isset($this->total_post_count))
78
+		if (!isset($this->total_post_count))
79 79
 			$this->total_post_count = $this->activityRepository->getActivitiesCount();
80 80
 		return $this->total_post_count;
81 81
 	}
Please login to merge, or discard this patch.
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -5,79 +5,79 @@
 block discarded – undo
5 5
 final class HomeController extends DefaultListController
6 6
 {
7 7
 
8
-	private static $TITLE = "Jacob Emerick's Lifestream";
9
-	private static $DESCRIPTION = 'Lifestream for Jacob Emerick, a combination of his latest twitter, youtube, running, reading, and blogging activity.';
8
+    private static $TITLE = "Jacob Emerick's Lifestream";
9
+    private static $DESCRIPTION = 'Lifestream for Jacob Emerick, a combination of his latest twitter, youtube, running, reading, and blogging activity.';
10 10
 
11
-	private static $KEYWORD_ARRAY = array(
12
-		'lifestream',
13
-		'activity stream',
14
-		'Jacob Emerick',
15
-		'jacobemerick',
16
-		'jpemeric',
17
-		'twitter');
11
+    private static $KEYWORD_ARRAY = array(
12
+        'lifestream',
13
+        'activity stream',
14
+        'Jacob Emerick',
15
+        'jacobemerick',
16
+        'jpemeric',
17
+        'twitter');
18 18
 
19
-	private static $LIST_DESCRIPTION = 'viewing %d - %d of %d total activities';
19
+    private static $LIST_DESCRIPTION = 'viewing %d - %d of %d total activities';
20 20
 
21
-	protected function set_head_data()
22
-	{
23
-		$this->set_title(self::$TITLE);
24
-		$this->set_description(self::$DESCRIPTION);
25
-		$this->set_keywords(self::$KEYWORD_ARRAY);
21
+    protected function set_head_data()
22
+    {
23
+        $this->set_title(self::$TITLE);
24
+        $this->set_description(self::$DESCRIPTION);
25
+        $this->set_keywords(self::$KEYWORD_ARRAY);
26 26
 		
27
-		parent::set_head_data();
28
-	}
27
+        parent::set_head_data();
28
+    }
29 29
 
30
-	protected function set_body_data()
31
-	{
32
-		$this->set_body('title', "What's Jacob Up To?");
33
-		$this->set_body('description', "A combination of Jacob Emerick's tweets, runs, reads, blogs, and YouTubes all in <em>one awesome lifestream</em>.");
30
+    protected function set_body_data()
31
+    {
32
+        $this->set_body('title', "What's Jacob Up To?");
33
+        $this->set_body('description', "A combination of Jacob Emerick's tweets, runs, reads, blogs, and YouTubes all in <em>one awesome lifestream</em>.");
34 34
 		
35
-		parent::set_body_data();
36
-	}
35
+        parent::set_body_data();
36
+    }
37 37
 
38
-	protected function get_page_number()
39
-	{
40
-		$page = URLDecode::getPiece(2);
41
-		if(isset($page) && is_numeric($page))
42
-			return $page;
43
-		return 1;
44
-	}
38
+    protected function get_page_number()
39
+    {
40
+        $page = URLDecode::getPiece(2);
41
+        if(isset($page) && is_numeric($page))
42
+            return $page;
43
+        return 1;
44
+    }
45 45
 
46
-	protected function get_list_results()
47
-	{
46
+    protected function get_list_results()
47
+    {
48 48
     return $this->activityRepository->getActivities(self::$POSTS_PER_PAGE, $this->offset);
49
-	}
49
+    }
50 50
 
51
-	protected function get_list_description()
52
-	{
53
-		$start = $this->offset + 1;
54
-		$end = min($this->offset + self::$POSTS_PER_PAGE, $this->get_total_post_count());
51
+    protected function get_list_description()
52
+    {
53
+        $start = $this->offset + 1;
54
+        $end = min($this->offset + self::$POSTS_PER_PAGE, $this->get_total_post_count());
55 55
 		
56
-		return sprintf(self::$LIST_DESCRIPTION, $start, $end, $this->get_total_post_count());
57
-	}
56
+        return sprintf(self::$LIST_DESCRIPTION, $start, $end, $this->get_total_post_count());
57
+    }
58 58
 
59
-	protected function get_list_next_link()
60
-	{
61
-		if($this->page == 1)
62
-			return;
63
-		if($this->page == 2)
64
-			return Loader::getRootUrl('lifestream');
65
-		return Loader::getRootUrl('lifestream') . 'page/' . ($this->page - 1) . '/';
66
-	}
59
+    protected function get_list_next_link()
60
+    {
61
+        if($this->page == 1)
62
+            return;
63
+        if($this->page == 2)
64
+            return Loader::getRootUrl('lifestream');
65
+        return Loader::getRootUrl('lifestream') . 'page/' . ($this->page - 1) . '/';
66
+    }
67 67
 
68
-	protected function get_list_prev_link()
69
-	{
70
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
71
-			return;
72
-		return Loader::getRootUrl('lifestream') . 'page/' . ($this->page + 1) . '/';
73
-	}
68
+    protected function get_list_prev_link()
69
+    {
70
+        if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
71
+            return;
72
+        return Loader::getRootUrl('lifestream') . 'page/' . ($this->page + 1) . '/';
73
+    }
74 74
 
75
-	private $total_post_count;
76
-	protected function get_total_post_count()
77
-	{
78
-		if(!isset($this->total_post_count))
79
-			$this->total_post_count = $this->activityRepository->getActivitiesCount();
80
-		return $this->total_post_count;
81
-	}
75
+    private $total_post_count;
76
+    protected function get_total_post_count()
77
+    {
78
+        if(!isset($this->total_post_count))
79
+            $this->total_post_count = $this->activityRepository->getActivitiesCount();
80
+        return $this->total_post_count;
81
+    }
82 82
 
83 83
 }
Please login to merge, or discard this patch.
Braces   +25 added lines, -28 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'lifestream/DefaultListController');
4 4
 
5
-final class HomeController extends DefaultListController
6
-{
5
+final class HomeController extends DefaultListController
6
+{
7 7
 
8 8
 	private static $TITLE = "Jacob Emerick's Lifestream";
9 9
 	private static $DESCRIPTION = 'Lifestream for Jacob Emerick, a combination of his latest twitter, youtube, running, reading, and blogging activity.';
@@ -18,8 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
 	private static $LIST_DESCRIPTION = 'viewing %d - %d of %d total activities';
20 20
 
21
-	protected function set_head_data()
22
-	{
21
+	protected function set_head_data() {
23 22
 		$this->set_title(self::$TITLE);
24 23
 		$this->set_description(self::$DESCRIPTION);
25 24
 		$this->set_keywords(self::$KEYWORD_ARRAY);
@@ -27,56 +26,54 @@  discard block
 block discarded – undo
27 26
 		parent::set_head_data();
28 27
 	}
29 28
 
30
-	protected function set_body_data()
31
-	{
29
+	protected function set_body_data() {
32 30
 		$this->set_body('title', "What's Jacob Up To?");
33 31
 		$this->set_body('description', "A combination of Jacob Emerick's tweets, runs, reads, blogs, and YouTubes all in <em>one awesome lifestream</em>.");
34 32
 		
35 33
 		parent::set_body_data();
36 34
 	}
37 35
 
38
-	protected function get_page_number()
39
-	{
36
+	protected function get_page_number() {
40 37
 		$page = URLDecode::getPiece(2);
41
-		if(isset($page) && is_numeric($page))
42
-			return $page;
38
+		if(isset($page) && is_numeric($page)) {
39
+					return $page;
40
+		}
43 41
 		return 1;
44 42
 	}
45 43
 
46
-	protected function get_list_results()
47
-	{
44
+	protected function get_list_results() {
48 45
     return $this->activityRepository->getActivities(self::$POSTS_PER_PAGE, $this->offset);
49 46
 	}
50 47
 
51
-	protected function get_list_description()
52
-	{
48
+	protected function get_list_description() {
53 49
 		$start = $this->offset + 1;
54 50
 		$end = min($this->offset + self::$POSTS_PER_PAGE, $this->get_total_post_count());
55 51
 		
56 52
 		return sprintf(self::$LIST_DESCRIPTION, $start, $end, $this->get_total_post_count());
57 53
 	}
58 54
 
59
-	protected function get_list_next_link()
60
-	{
61
-		if($this->page == 1)
62
-			return;
63
-		if($this->page == 2)
64
-			return Loader::getRootUrl('lifestream');
55
+	protected function get_list_next_link() {
56
+		if($this->page == 1) {
57
+					return;
58
+		}
59
+		if($this->page == 2) {
60
+					return Loader::getRootUrl('lifestream');
61
+		}
65 62
 		return Loader::getRootUrl('lifestream') . 'page/' . ($this->page - 1) . '/';
66 63
 	}
67 64
 
68
-	protected function get_list_prev_link()
69
-	{
70
-		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count())
71
-			return;
65
+	protected function get_list_prev_link() {
66
+		if(($this->page * self::$POSTS_PER_PAGE) >= $this->get_total_post_count()) {
67
+					return;
68
+		}
72 69
 		return Loader::getRootUrl('lifestream') . 'page/' . ($this->page + 1) . '/';
73 70
 	}
74 71
 
75 72
 	private $total_post_count;
76
-	protected function get_total_post_count()
77
-	{
78
-		if(!isset($this->total_post_count))
79
-			$this->total_post_count = $this->activityRepository->getActivitiesCount();
73
+	protected function get_total_post_count() {
74
+		if(!isset($this->total_post_count)) {
75
+					$this->total_post_count = $this->activityRepository->getActivitiesCount();
76
+		}
80 77
 		return $this->total_post_count;
81 78
 	}
82 79
 
Please login to merge, or discard this patch.
controller/site/ContactController.class.inc.php 3 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -28,17 +28,17 @@  discard block
 block discarded – undo
28 28
 
29 29
 	private function get_form_results()
30 30
 	{
31
-		if(!Request::hasPost())
31
+		if (!Request::hasPost())
32 32
 			return array();
33 33
 		
34
-		if(!Validate::checkRequest('post', 'name', 'string'))
34
+		if (!Validate::checkRequest('post', 'name', 'string'))
35 35
 			$error_message['name'] = 'Please enter a value for your name.';
36
-		if(!Validate::checkRequest('post', 'email', 'string'))
36
+		if (!Validate::checkRequest('post', 'email', 'string'))
37 37
 			$error_message['email'] = 'Please enter a valid email address.';
38
-		if(!Validate::checkRequest('post', 'message', 'string'))
38
+		if (!Validate::checkRequest('post', 'message', 'string'))
39 39
 			$error_message['message'] = 'Please enter a message.';
40 40
 		
41
-		if(!empty($error_message))
41
+		if (!empty($error_message))
42 42
 		{
43 43
 			return array(
44 44
 				'error_message' => $error_message,
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
       ->addTo($container['config']->admin_email)
51 51
       ->setSubject('Site Contact')
52 52
       ->setPlainMessage(
53
-        'Name: ' . Request::getPost('name') . "\n" .
54
-        'Email: ' . Request::getPost('email') . "\n" .
55
-        'Message: ' . Request::getPost('message')
53
+        'Name: '.Request::getPost('name')."\n".
54
+        'Email: '.Request::getPost('email')."\n".
55
+        'Message: '.Request::getPost('message')
56 56
       )
57 57
       ->send();
58 58
 
59 59
 		return array(
60
-			'success_message' => "Thank you for your message, " . Request::getPost('name') . "! I'll get back to you as soon as possible.");
60
+			'success_message' => "Thank you for your message, ".Request::getPost('name')."! I'll get back to you as soon as possible.");
61 61
 	}
62 62
 
63 63
 }
Please login to merge, or discard this patch.
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -2,62 +2,62 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', 'site/DefaultPageController');
4 4
 Loader::load('utility', array(
5
-	'Validate'));
5
+    'Validate'));
6 6
 
7 7
 final class ContactController extends DefaultPageController
8 8
 {
9 9
 
10
-	protected function set_head_data()
11
-	{
12
-		$this->set_title("Contact Form for Jacob Emerick's Sites");
13
-		$this->set_description("Want to reach out to Jacob Emerick with questions or concerns? Well, then here's a handy contact form for you that will connect you with the man himself.");
14
-		$this->set_keywords(array('contact', 'webmaster', 'support', 'help', 'Jacob Emerick'));
10
+    protected function set_head_data()
11
+    {
12
+        $this->set_title("Contact Form for Jacob Emerick's Sites");
13
+        $this->set_description("Want to reach out to Jacob Emerick with questions or concerns? Well, then here's a handy contact form for you that will connect you with the man himself.");
14
+        $this->set_keywords(array('contact', 'webmaster', 'support', 'help', 'Jacob Emerick'));
15 15
 		
16
-		parent::set_head_data();
17
-	}
16
+        parent::set_head_data();
17
+    }
18 18
 
19
-	protected function set_body_data()
20
-	{
21
-		parent::set_body_data();
19
+    protected function set_body_data()
20
+    {
21
+        parent::set_body_data();
22 22
 		
23
-		$this->set_body('top_data', array('title' => 'Contact Me'));
23
+        $this->set_body('top_data', array('title' => 'Contact Me'));
24 24
 		
25
-		$this->set_body('body_data', $this->get_form_results());
26
-		$this->set_body('body_view', 'Contact');
27
-	}
28
-
29
-	private function get_form_results()
30
-	{
31
-		if(!Request::hasPost())
32
-			return array();
25
+        $this->set_body('body_data', $this->get_form_results());
26
+        $this->set_body('body_view', 'Contact');
27
+    }
28
+
29
+    private function get_form_results()
30
+    {
31
+        if(!Request::hasPost())
32
+            return array();
33 33
 		
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.';
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.';
40 40
 		
41
-		if(!empty($error_message))
42
-		{
43
-			return array(
44
-				'error_message' => $error_message,
45
-				'value' => Request::getPost());
46
-		}
41
+        if(!empty($error_message))
42
+        {
43
+            return array(
44
+                'error_message' => $error_message,
45
+                'value' => Request::getPost());
46
+        }
47 47
 
48 48
     global $container;
49 49
     $sent = $container['mail']
50
-      ->addTo($container['config']->admin_email)
51
-      ->setSubject('Site Contact')
52
-      ->setPlainMessage(
50
+        ->addTo($container['config']->admin_email)
51
+        ->setSubject('Site Contact')
52
+        ->setPlainMessage(
53 53
         'Name: ' . Request::getPost('name') . "\n" .
54 54
         'Email: ' . Request::getPost('email') . "\n" .
55 55
         'Message: ' . Request::getPost('message')
56
-      )
57
-      ->send();
56
+        )
57
+        ->send();
58 58
 
59
-		return array(
60
-			'success_message' => "Thank you for your message, " . Request::getPost('name') . "! I'll get back to you as soon as possible.");
61
-	}
59
+        return array(
60
+            'success_message' => "Thank you for your message, " . Request::getPost('name') . "! I'll get back to you as soon as possible.");
61
+    }
62 62
 
63 63
 }
Please login to merge, or discard this patch.
Braces   +17 added lines, -16 removed lines patch added patch discarded remove patch
@@ -4,11 +4,10 @@  discard block
 block discarded – undo
4 4
 Loader::load('utility', array(
5 5
 	'Validate'));
6 6
 
7
-final class ContactController extends DefaultPageController
8
-{
7
+final class ContactController extends DefaultPageController
8
+{
9 9
 
10
-	protected function set_head_data()
11
-	{
10
+	protected function set_head_data() {
12 11
 		$this->set_title("Contact Form for Jacob Emerick's Sites");
13 12
 		$this->set_description("Want to reach out to Jacob Emerick with questions or concerns? Well, then here's a handy contact form for you that will connect you with the man himself.");
14 13
 		$this->set_keywords(array('contact', 'webmaster', 'support', 'help', 'Jacob Emerick'));
@@ -16,8 +15,7 @@  discard block
 block discarded – undo
16 15
 		parent::set_head_data();
17 16
 	}
18 17
 
19
-	protected function set_body_data()
20
-	{
18
+	protected function set_body_data() {
21 19
 		parent::set_body_data();
22 20
 		
23 21
 		$this->set_body('top_data', array('title' => 'Contact Me'));
@@ -26,17 +24,20 @@  discard block
 block discarded – undo
26 24
 		$this->set_body('body_view', 'Contact');
27 25
 	}
28 26
 
29
-	private function get_form_results()
30
-	{
31
-		if(!Request::hasPost())
32
-			return array();
27
+	private function get_form_results() {
28
+		if(!Request::hasPost()) {
29
+					return array();
30
+		}
33 31
 		
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.';
32
+		if(!Validate::checkRequest('post', 'name', 'string')) {
33
+					$error_message['name'] = 'Please enter a value for your name.';
34
+		}
35
+		if(!Validate::checkRequest('post', 'email', 'string')) {
36
+					$error_message['email'] = 'Please enter a valid email address.';
37
+		}
38
+		if(!Validate::checkRequest('post', 'message', 'string')) {
39
+					$error_message['message'] = 'Please enter a message.';
40
+		}
40 41
 		
41 42
 		if(!empty($error_message))
42 43
 		{
Please login to merge, or discard this patch.
controller/waterfalls/MapController.class.inc.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     {
30 30
         parent::set_head_data();
31 31
         
32
-        $this->set_title(self::$TITLE . ' | ' . self::$WEBSITE_TITLE);
32
+        $this->set_title(self::$TITLE.' | '.self::$WEBSITE_TITLE);
33 33
         $this->set_description(self::$DESCRIPTION);
34 34
         $this->set_keywords(self::$KEYWORD_ARRAY);
35 35
     }
Please login to merge, or discard this patch.
Braces   +7 added lines, -12 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 Loader::load('controller', 'waterfalls/DefaultPageController');
4 4
 Loader::load('collector', 'waterfall/WaterfallCollector');
5 5
 
6
-final class MapController extends DefaultPageController
7
-{
6
+final class MapController extends DefaultPageController
7
+{
8 8
 
9 9
     private static $TITLE = 'Map of Upper Peninsula Waterfalls';
10 10
     private static $DESCRIPTION = '';
@@ -17,16 +17,14 @@  discard block
 block discarded – undo
17 17
         'Upper Tahquamenon Falls',
18 18
     );
19 19
 
20
-    public function __construct()
21
-    {
20
+    public function __construct() {
22 21
         parent::__construct();
23 22
 
24 23
         $this->add_js('https://maps.googleapis.com/maps/api/js?sensor=false');
25 24
         $this->add_waterfall_js();
26 25
     }
27 26
 
28
-    protected function set_head_data()
29
-    {
27
+    protected function set_head_data() {
30 28
         parent::set_head_data();
31 29
         
32 30
         $this->set_title(self::$TITLE . ' | ' . self::$WEBSITE_TITLE);
@@ -34,8 +32,7 @@  discard block
 block discarded – undo
34 32
         $this->set_keywords(self::$KEYWORD_ARRAY);
35 33
     }
36 34
 
37
-    protected function set_body_data($page_type = 'wide')
38
-    {
35
+    protected function set_body_data($page_type = 'wide') {
39 36
         parent::set_body_data($page_type);
40 37
         
41 38
         $this->set_head('full_page_map', true);
@@ -43,15 +40,13 @@  discard block
 block discarded – undo
43 40
         $this->set_body('view', 'Map');
44 41
     }
45 42
 
46
-    private function fetch_waterfall_list()
47
-    {
43
+    private function fetch_waterfall_list() {
48 44
         $list = WaterfallCollector::getMapList();
49 45
         array_walk($list, array($this, 'parse_waterfall'));
50 46
         return $list;
51 47
     }
52 48
 
53
-    private function parse_waterfall(&$waterfall)
54
-    {
49
+    private function parse_waterfall(&$waterfall) {
55 50
         $waterfall = (object) array(
56 51
             'name'  => $waterfall->name,
57 52
             'latitude' => $waterfall->latitude,
Please login to merge, or discard this patch.