Completed
Push — develop ( f57c6e...f06e67 )
by Seth
08:56 queued 06:28
created
classes/CanvasAPIviaLTI_Installer.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 	/**
21 21
 	 * Generate a SECRETS_FILE from user input.
22 22
 	 *
23
-	 * @param scalar $step optional Where are we in the SECRETS_FILE creation workflow? (defaults to SECRETS_NEEDED_STEP -- the beginning)
23
+	 * @param integer $step optional Where are we in the SECRETS_FILE creation workflow? (defaults to SECRETS_NEEDED_STEP -- the beginning)
24 24
 	 *
25 25
 	 * @throws CanvasAPIviaLTI_Installer_Exception If form submission does not contain all required MySQL credentals (host, username, password and database)
26 26
 	 * @throws CanvasAPIviaLTI_Installer_Exception If SECRETS_FILE cannot be created
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 	/**
262 262
 	 * Obtain a Canvas API token, if needed.
263 263
 	 *
264
-	 * @param scalar $step optional Where are we in the API token negotiation workflow? (defaults to API_DECISION_NEEDED_STEP -- the beginning)
264
+	 * @param integer $step optional Where are we in the API token negotiation workflow? (defaults to API_DECISION_NEEDED_STEP -- the beginning)
265 265
 	 * @param boolean $skip optional Skip this step (defaults to FALSE)
266 266
 	 *
267 267
 	 * @throws CanvasAPIviaLTI_Installer_Exception If $step is not a pre-defined *_STEP constant
Please login to merge, or discard this patch.
Indentation   +277 added lines, -277 removed lines patch added patch discarded remove patch
@@ -11,28 +11,28 @@  discard block
 block discarded – undo
11 11
  * @author Seth Battis <[email protected]>
12 12
  **/	
13 13
 class CanvasAPIviaLTI_Installer {
14
-	const SECRETS_NEEDED_STEP = 1;
15
-	const SECRETS_ENTERED_STEP = 2;
16
-	const API_DECISION_NEEDED_STEP = 3;
17
-	const API_DECISION_ENTERED_STEP = 4;
18
-	const API_TOKEN_PROVIDED_STEP = 5;
14
+    const SECRETS_NEEDED_STEP = 1;
15
+    const SECRETS_ENTERED_STEP = 2;
16
+    const API_DECISION_NEEDED_STEP = 3;
17
+    const API_DECISION_ENTERED_STEP = 4;
18
+    const API_TOKEN_PROVIDED_STEP = 5;
19 19
 		
20
-	/**
21
-	 * Generate a SECRETS_FILE from user input.
22
-	 *
23
-	 * @param scalar $step optional Where are we in the SECRETS_FILE creation workflow? (defaults to SECRETS_NEEDED_STEP -- the beginning)
24
-	 *
25
-	 * @throws CanvasAPIviaLTI_Installer_Exception If form submission does not contain all required MySQL credentals (host, username, password and database)
26
-	 * @throws CanvasAPIviaLTI_Installer_Exception If SECRETS_FILE cannot be created
27
-	 * @throws CanvasAPIviaLTI_Installer_Exception If $step is not a pre-defined *_STEP constant
28
-	 **/
29
-	public static function createSecretsFile($step = self::SECRETS_NEEDED_STEP) {
30
-		global $smarty; // FIXME:0 grown-ups don't program like this issue:17
20
+    /**
21
+     * Generate a SECRETS_FILE from user input.
22
+     *
23
+     * @param scalar $step optional Where are we in the SECRETS_FILE creation workflow? (defaults to SECRETS_NEEDED_STEP -- the beginning)
24
+     *
25
+     * @throws CanvasAPIviaLTI_Installer_Exception If form submission does not contain all required MySQL credentals (host, username, password and database)
26
+     * @throws CanvasAPIviaLTI_Installer_Exception If SECRETS_FILE cannot be created
27
+     * @throws CanvasAPIviaLTI_Installer_Exception If $step is not a pre-defined *_STEP constant
28
+     **/
29
+    public static function createSecretsFile($step = self::SECRETS_NEEDED_STEP) {
30
+        global $smarty; // FIXME:0 grown-ups don't program like this issue:17
31 31
 		
32
-		switch ($step) {
33
-			case self::SECRETS_NEEDED_STEP: {
34
-				// FIXME:0 passwords in clear text? oy. issue:17
35
-				$smarty->assign('content', '
32
+        switch ($step) {
33
+            case self::SECRETS_NEEDED_STEP: {
34
+                // FIXME:0 passwords in clear text? oy. issue:17
35
+                $smarty->assign('content', '
36 36
 					<form action="' . $_SERVER['PHP_SELF'] . '" method="post">
37 37
 						<section>
38 38
 							<h3>Application Information</h3>
@@ -57,242 +57,242 @@  discard block
 block discarded – undo
57 57
 						<input type="submit" value="Create Secrets File" />
58 58
 					</form>
59 59
 				');
60
-				$smarty->display();
61
-				exit;
62
-			}
60
+                $smarty->display();
61
+                exit;
62
+            }
63 63
 			
64
-			case self::SECRETS_ENTERED_STEP: {
65
-				if (isset($_REQUEST['name']) && isset($_REQUEST['id']) && isset($_REQUEST['admin_username']) && isset($_REQUEST['admin_password'])) {
66
-					if (isset($_REQUEST['host']) && isset($_REQUEST['username']) && isset($_REQUEST['password']) && isset($_REQUEST['database'])) {
67
-						$secrets = new SimpleXMLElement('<secrets />');
68
-						$app = $secrets->addChild('app');
69
-						$app->addChild('name', $_REQUEST['name']);
70
-						$app->addChild('id', $_REQUEST['id']);
71
-						$admin = $app->addChild('admin');
72
-						$admin->addChild('username', $_REQUEST['admin_username']);
73
-						$admin->addChild('password', $_REQUEST['admin_password']);
74
-						$mysql = $secrets->addChild('mysql');
75
-						$mysql->addChild('host', $_REQUEST['host']);
76
-						$mysql->addChild('username', $_REQUEST['username']);
77
-						$mysql->addChild('password', $_REQUEST['password']);
78
-						$mysql->addChild('database', $_REQUEST['database']);
79
-						$oauth = $secrets->addChild('oauth');
80
-						$oauth->addChild('id', $_REQUEST['oauth_id']);
81
-						$oauth->addChild('key', $_REQUEST['oauth_key']);
82
-						if ($secrets->asXML(SECRETS_FILE) == false) {
83
-							throw new CanvasAPIviaLTI_Exception(
84
-								'Failed to create ' . SECRETS_FILE,
85
-								CanvasAPIviaLTI_Installer_Exception::SECRETS_FILE_CREATION
86
-							);
87
-						}
64
+            case self::SECRETS_ENTERED_STEP: {
65
+                if (isset($_REQUEST['name']) && isset($_REQUEST['id']) && isset($_REQUEST['admin_username']) && isset($_REQUEST['admin_password'])) {
66
+                    if (isset($_REQUEST['host']) && isset($_REQUEST['username']) && isset($_REQUEST['password']) && isset($_REQUEST['database'])) {
67
+                        $secrets = new SimpleXMLElement('<secrets />');
68
+                        $app = $secrets->addChild('app');
69
+                        $app->addChild('name', $_REQUEST['name']);
70
+                        $app->addChild('id', $_REQUEST['id']);
71
+                        $admin = $app->addChild('admin');
72
+                        $admin->addChild('username', $_REQUEST['admin_username']);
73
+                        $admin->addChild('password', $_REQUEST['admin_password']);
74
+                        $mysql = $secrets->addChild('mysql');
75
+                        $mysql->addChild('host', $_REQUEST['host']);
76
+                        $mysql->addChild('username', $_REQUEST['username']);
77
+                        $mysql->addChild('password', $_REQUEST['password']);
78
+                        $mysql->addChild('database', $_REQUEST['database']);
79
+                        $oauth = $secrets->addChild('oauth');
80
+                        $oauth->addChild('id', $_REQUEST['oauth_id']);
81
+                        $oauth->addChild('key', $_REQUEST['oauth_key']);
82
+                        if ($secrets->asXML(SECRETS_FILE) == false) {
83
+                            throw new CanvasAPIviaLTI_Exception(
84
+                                'Failed to create ' . SECRETS_FILE,
85
+                                CanvasAPIviaLTI_Installer_Exception::SECRETS_FILE_CREATION
86
+                            );
87
+                        }
88 88
 						
89
-						$htpasswdFile = __DIR__ . '/.htpasswd';
90
-						shell_exec("htpasswd -bc $htpasswdFile {$_REQUEST['admin_username']} {$_REQUEST['admin_password']}");
91
-						if (!file_exists($htpasswdFile)) {
92
-							throw new CanvasAPIviaLTI_Installer_Exception(
93
-								"Failed to create $htpasswdFile",
94
-								CanvasAPIviaLTI_Installer_Exception::HTPASSWD_FILE
95
-							);
96
-						}
89
+                        $htpasswdFile = __DIR__ . '/.htpasswd';
90
+                        shell_exec("htpasswd -bc $htpasswdFile {$_REQUEST['admin_username']} {$_REQUEST['admin_password']}");
91
+                        if (!file_exists($htpasswdFile)) {
92
+                            throw new CanvasAPIviaLTI_Installer_Exception(
93
+                                "Failed to create $htpasswdFile",
94
+                                CanvasAPIviaLTI_Installer_Exception::HTPASSWD_FILE
95
+                            );
96
+                        }
97 97
 						
98
-						$htaccessFile = __DIR__ . '/.htaccess';
99
-						if(!file_put_contents($htaccessFile, "AuthType Basic\nAuthName \"{$secrets->app->name} Admin\"\nAuthUserFile $htpasswdFile\nRequire valid-user\n")) {
100
-							throw new CanvasAPIviaLTI_Installer_Exception(
101
-								"Failed to create $htaccessFile",
102
-								CanvasAPIviaLTI_Installer_Exception::HTACCESS_FILE
103
-							);
104
-						}
105
-					} else {
106
-						throw new CanvasAPIviaLTI_Installer_Exception(
107
-							'Missing a required mysql credential (host, username, password and database all required).',
108
-							CanvasAPIviaLTI_Installer_Exception::SECRETS_FILE_MYSQL
109
-						);
110
-					}
111
-					$smarty->addMessage(
112
-						'Secrets file created',
113
-						"<code>secrets.xml</code> contains your authentication credentials and
98
+                        $htaccessFile = __DIR__ . '/.htaccess';
99
+                        if(!file_put_contents($htaccessFile, "AuthType Basic\nAuthName \"{$secrets->app->name} Admin\"\nAuthUserFile $htpasswdFile\nRequire valid-user\n")) {
100
+                            throw new CanvasAPIviaLTI_Installer_Exception(
101
+                                "Failed to create $htaccessFile",
102
+                                CanvasAPIviaLTI_Installer_Exception::HTACCESS_FILE
103
+                            );
104
+                        }
105
+                    } else {
106
+                        throw new CanvasAPIviaLTI_Installer_Exception(
107
+                            'Missing a required mysql credential (host, username, password and database all required).',
108
+                            CanvasAPIviaLTI_Installer_Exception::SECRETS_FILE_MYSQL
109
+                        );
110
+                    }
111
+                    $smarty->addMessage(
112
+                        'Secrets file created',
113
+                        "<code>secrets.xml</code> contains your authentication credentials and
114 114
 						 should be carefully protected. Be sure not to commit it to a public
115 115
 						 repository!",
116
-						NotificationMessage::GOOD
117
-					);
118
-				} else {
119
-					throw new CanvasAPIviaLTI_Installer_Exception(
120
-						'Missing a required app identity (name, id, admin username and admin password all required).',
121
-						CanvasAPIviaLTI_Installer_Exception::SECRETS_FILE_APP
122
-					);
123
-				}
116
+                        NotificationMessage::GOOD
117
+                    );
118
+                } else {
119
+                    throw new CanvasAPIviaLTI_Installer_Exception(
120
+                        'Missing a required app identity (name, id, admin username and admin password all required).',
121
+                        CanvasAPIviaLTI_Installer_Exception::SECRETS_FILE_APP
122
+                    );
123
+                }
124 124
 				
125
-				/* clear the processed step */
126
-				unset($_REQUEST['step']);
125
+                /* clear the processed step */
126
+                unset($_REQUEST['step']);
127 127
 
128
-				break;
129
-			}
128
+                break;
129
+            }
130 130
 			
131
-			default: {
132
-				throw new CanvasAPIviaLTI_Installer_Exception(
133
-					"Unknown step ($step) in SECRETS_FILE creation.",
134
-					CanvasAPIviaLTI_Installer_Exception::SECRETS_NEEDED_STEP
135
-				);
136
-			}
137
-		}
138
-	}
131
+            default: {
132
+                throw new CanvasAPIviaLTI_Installer_Exception(
133
+                    "Unknown step ($step) in SECRETS_FILE creation.",
134
+                    CanvasAPIviaLTI_Installer_Exception::SECRETS_NEEDED_STEP
135
+                );
136
+            }
137
+        }
138
+    }
139 139
 	
140
-	/**
141
-	 * Create database tables to back LTI_Tool_Provider
142
-	 *
143
-	 * @throws CanvasAPIviaLTI_Installer_Exception If database schema not found in vendors directory
144
-	 * @throws CanvasAPIviaLTI_Installer_Exception If database tables are not created
145
-	 **/
146
-	public static function createLTIDatabaseTables() {
147
-		global $sql; // FIXME:0 grown-ups don't program like this issue:17
148
-		global $smarty; // FIXME:0 grown-ups don't program like this issue:17
140
+    /**
141
+     * Create database tables to back LTI_Tool_Provider
142
+     *
143
+     * @throws CanvasAPIviaLTI_Installer_Exception If database schema not found in vendors directory
144
+     * @throws CanvasAPIviaLTI_Installer_Exception If database tables are not created
145
+     **/
146
+    public static function createLTIDatabaseTables() {
147
+        global $sql; // FIXME:0 grown-ups don't program like this issue:17
148
+        global $smarty; // FIXME:0 grown-ups don't program like this issue:17
149 149
 		
150
-		$ltiSchema = realpath(__DIR__ . '/../vendor/spvsoftwareproducts/LTI_Tool_Provider/lti-tables-mysql.sql');
150
+        $ltiSchema = realpath(__DIR__ . '/../vendor/spvsoftwareproducts/LTI_Tool_Provider/lti-tables-mysql.sql');
151 151
 		
152
-		if ($sql->query("SHOW TABLES LIKE 'lti_%'")->num_rows >= 5) {
153
-			$smarty->addMessage('LTI database tables exist', 'Database tables to support the LTI Tool Provider (TP) already exist and have not been re-created.');
154
-		} elseif (file_exists($ltiSchema)) {
155
-			$queries = explode(";", file_get_contents($ltiSchema));
156
-			$created = true;
157
-			foreach($queries as $query) {
158
-				if (!empty(trim($query))) {
159
-					if (!$sql->query($query)) {
160
-						throw new CanvasAPIviaLTI_Installer_Exception(
161
-							"Error creating LTI database tables: {$sql->error}",
162
-							CanvasAPIviaLTI_Installer_Exception::LTI_PREPARE_DATABASE
163
-						);
164
-					}
165
-				}
166
-			}
152
+        if ($sql->query("SHOW TABLES LIKE 'lti_%'")->num_rows >= 5) {
153
+            $smarty->addMessage('LTI database tables exist', 'Database tables to support the LTI Tool Provider (TP) already exist and have not been re-created.');
154
+        } elseif (file_exists($ltiSchema)) {
155
+            $queries = explode(";", file_get_contents($ltiSchema));
156
+            $created = true;
157
+            foreach($queries as $query) {
158
+                if (!empty(trim($query))) {
159
+                    if (!$sql->query($query)) {
160
+                        throw new CanvasAPIviaLTI_Installer_Exception(
161
+                            "Error creating LTI database tables: {$sql->error}",
162
+                            CanvasAPIviaLTI_Installer_Exception::LTI_PREPARE_DATABASE
163
+                        );
164
+                    }
165
+                }
166
+            }
167 167
 			
168
-			$smarty->addMessage(
169
-				'LTI database tables created',
170
-				'Database tables to support the LTI Tool Provider (TP) have been created in
168
+            $smarty->addMessage(
169
+                'LTI database tables created',
170
+                'Database tables to support the LTI Tool Provider (TP) have been created in
171 171
 				 your MySQL database.',
172
-				NotificationMessage::GOOD
173
-			);
174
-		} else {
175
-			throw new CanvasAPIviaLTI_Exception("$ltiSchema not found.");
176
-		}
177
-	}
172
+                NotificationMessage::GOOD
173
+            );
174
+        } else {
175
+            throw new CanvasAPIviaLTI_Exception("$ltiSchema not found.");
176
+        }
177
+    }
178 178
 	
179
-	/**
180
-	 * Create database tables to back app
181
-	 *
182
-	 * @throws CanvasAPIviaLTI_Installer_Exception If database tables are not created
183
-	 **/
184
-	public static function createAppDatabaseTables() {
185
-		global $sql; // FIXME:0 grown-ups don't program like this issue:17
186
-		global $smarty; // FIXME:0 grown-ups don't program like this issue:17
179
+    /**
180
+     * Create database tables to back app
181
+     *
182
+     * @throws CanvasAPIviaLTI_Installer_Exception If database tables are not created
183
+     **/
184
+    public static function createAppDatabaseTables() {
185
+        global $sql; // FIXME:0 grown-ups don't program like this issue:17
186
+        global $smarty; // FIXME:0 grown-ups don't program like this issue:17
187 187
 		
188
-		if (file_exists(SCHEMA_FILE)) {
189
-			$queries = explode(";", file_get_contents(SCHEMA_FILE));
190
-			$created = true;
191
-			foreach ($queries as $query) {
192
-				if (!empty(trim($query))) {
193
-					if (preg_match('/CREATE\s+TABLE\s+(`([^`]+)`|\w+)/i', $query, $tableName)) {
194
-						$tableName = (empty($tableName[2]) ? $tableName[1] : $tableName[2]);
195
-						if ($sql->query("SHOW TABLES LIKE '$tableName'")->num_rows > 0) {
196
-							$created = false;
197
-						} else {
198
-							if (!$sql->query($query)) {
199
-								throw new CanvasAPIviaLTI_Installer_Exception(
200
-									"Error creating app database tables: {$sql->error}",
201
-									CanvasAPIviaLTI_Installer_Exception::APP_CREATE_TABLE
202
-								);
203
-							}
204
-						}
205
-					} else {
206
-						if (!$sql->query($query)) {
207
-							throw new CanvasAPIviaLTI_Installer_Exception(
208
-								"Error creating app database tables: {$sql->error}",
209
-								CanvasAPIviaLTI_Installer_Exception::APP_PREPARE_DATABASE
210
-							);
211
-						}
212
-					}
213
-				}
214
-			}
188
+        if (file_exists(SCHEMA_FILE)) {
189
+            $queries = explode(";", file_get_contents(SCHEMA_FILE));
190
+            $created = true;
191
+            foreach ($queries as $query) {
192
+                if (!empty(trim($query))) {
193
+                    if (preg_match('/CREATE\s+TABLE\s+(`([^`]+)`|\w+)/i', $query, $tableName)) {
194
+                        $tableName = (empty($tableName[2]) ? $tableName[1] : $tableName[2]);
195
+                        if ($sql->query("SHOW TABLES LIKE '$tableName'")->num_rows > 0) {
196
+                            $created = false;
197
+                        } else {
198
+                            if (!$sql->query($query)) {
199
+                                throw new CanvasAPIviaLTI_Installer_Exception(
200
+                                    "Error creating app database tables: {$sql->error}",
201
+                                    CanvasAPIviaLTI_Installer_Exception::APP_CREATE_TABLE
202
+                                );
203
+                            }
204
+                        }
205
+                    } else {
206
+                        if (!$sql->query($query)) {
207
+                            throw new CanvasAPIviaLTI_Installer_Exception(
208
+                                "Error creating app database tables: {$sql->error}",
209
+                                CanvasAPIviaLTI_Installer_Exception::APP_PREPARE_DATABASE
210
+                            );
211
+                        }
212
+                    }
213
+                }
214
+            }
215 215
 			
216
-			if ($created) {
217
-				$smarty->addMessage(
218
-					'App database tables created',
219
-					'Database tables to support the application have been created in your
216
+            if ($created) {
217
+                $smarty->addMessage(
218
+                    'App database tables created',
219
+                    'Database tables to support the application have been created in your
220 220
 					 MySQL database.',
221
-					NotificationMessage::GOOD
222
-				);
223
-			} else {
224
-				$smarty->addMessage(
225
-					'App database tables exist',
226
-					'Database tables to support the application already exist and have not
221
+                    NotificationMessage::GOOD
222
+                );
223
+            } else {
224
+                $smarty->addMessage(
225
+                    'App database tables exist',
226
+                    'Database tables to support the application already exist and have not
227 227
 					 been re-created.'
228
-				);
229
-			}
230
-		}
231
-	}
228
+                );
229
+            }
230
+        }
231
+    }
232 232
 	
233
-	/**
234
-	 * Initialize the app metadata store, especially the APP_PATH and APP_URL
235
-	 *
236
-	 * @return AppMetadata
237
-	 **/
238
-	public static function createAppMetadata() {
239
-		global $secrets; // FIXME:0 grown-ups don't program like this issue:17
240
-		global $sql; // FIXME:0 grown-ups don't program like this issue:17
241
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
242
-		global $smarty; // FIXME:0 grown-ups don't program like this issue:17
233
+    /**
234
+     * Initialize the app metadata store, especially the APP_PATH and APP_URL
235
+     *
236
+     * @return AppMetadata
237
+     **/
238
+    public static function createAppMetadata() {
239
+        global $secrets; // FIXME:0 grown-ups don't program like this issue:17
240
+        global $sql; // FIXME:0 grown-ups don't program like this issue:17
241
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
242
+        global $smarty; // FIXME:0 grown-ups don't program like this issue:17
243 243
 				
244
-		$metadata = initAppMetadata();
245
-		$metadata['APP_PATH'] = preg_replace('/\/classes$/', '', __DIR__);
246
-		$metadata['APP_URL'] = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on' ? 'http://' : 'https://') . $_SERVER['SERVER_NAME'] . preg_replace("|^{$_SERVER['DOCUMENT_ROOT']}(.*)$|", '$1', $metadata['APP_PATH']);
247
-		$metadata['APP_NAME'] = (string) $secrets->app->name;
248
-		$metadata['APP_ID'] = (string) $secrets->app->id;
249
-		$metadata['CANVAS_INSTANCE_URL_PLACEHOLDER'] = 'https://canvas.instructure.com';
250
-		$smarty->assign('metadata', $metadata);
244
+        $metadata = initAppMetadata();
245
+        $metadata['APP_PATH'] = preg_replace('/\/classes$/', '', __DIR__);
246
+        $metadata['APP_URL'] = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on' ? 'http://' : 'https://') . $_SERVER['SERVER_NAME'] . preg_replace("|^{$_SERVER['DOCUMENT_ROOT']}(.*)$|", '$1', $metadata['APP_PATH']);
247
+        $metadata['APP_NAME'] = (string) $secrets->app->name;
248
+        $metadata['APP_ID'] = (string) $secrets->app->id;
249
+        $metadata['CANVAS_INSTANCE_URL_PLACEHOLDER'] = 'https://canvas.instructure.com';
250
+        $smarty->assign('metadata', $metadata);
251 251
 
252
-		$smarty->addMessage(
253
-			'App metadata initialized',
254
-			'Basic application metadata has been updated, including APP_PATH and APP_URL',
255
-			NotificationMessage::GOOD
256
-		);
252
+        $smarty->addMessage(
253
+            'App metadata initialized',
254
+            'Basic application metadata has been updated, including APP_PATH and APP_URL',
255
+            NotificationMessage::GOOD
256
+        );
257 257
 		
258
-		return $metadata;
259
-	}
258
+        return $metadata;
259
+    }
260 260
 	
261
-	/**
262
-	 * Obtain a Canvas API token, if needed.
263
-	 *
264
-	 * @param scalar $step optional Where are we in the API token negotiation workflow? (defaults to API_DECISION_NEEDED_STEP -- the beginning)
265
-	 * @param boolean $skip optional Skip this step (defaults to FALSE)
266
-	 *
267
-	 * @throws CanvasAPIviaLTI_Installer_Exception If $step is not a pre-defined *_STEP constant
268
-	 **/
269
-	public static function acquireAPIToken($step = self::API_DECISION_NEEDED_STEP, $skip = false) {
270
-		global $secrets; // FIXME:0 grown-ups don't program like this issue:17
271
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
272
-		global $smarty; // FIXME:0 grown-ups don't program like this issue:17
261
+    /**
262
+     * Obtain a Canvas API token, if needed.
263
+     *
264
+     * @param scalar $step optional Where are we in the API token negotiation workflow? (defaults to API_DECISION_NEEDED_STEP -- the beginning)
265
+     * @param boolean $skip optional Skip this step (defaults to FALSE)
266
+     *
267
+     * @throws CanvasAPIviaLTI_Installer_Exception If $step is not a pre-defined *_STEP constant
268
+     **/
269
+    public static function acquireAPIToken($step = self::API_DECISION_NEEDED_STEP, $skip = false) {
270
+        global $secrets; // FIXME:0 grown-ups don't program like this issue:17
271
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
272
+        global $smarty; // FIXME:0 grown-ups don't program like this issue:17
273 273
 		
274
-		if ($skip) {
275
-			if (isset($metadata['CANVAS_API_TOKEN']) || isset($metadata['CANVAS_API_USER'])) {
276
-				$api = new CanvasPest("{$metadata['CANVAS_INSTANCE_URL']}/login/oauth2", $metadata['CANVAS_API_TOKEN']);
277
-				$api->delete('token');
278
-				unset($metadata['CANVAS_API_TOKEN']);
279
-				unset($metadata['CANVAS_API_USER']);
280
-				$smarty->addMessage(
281
-					'Existing admin Canvas API token information expunged',
282
-					'There was already an administrative access token stored in your
274
+        if ($skip) {
275
+            if (isset($metadata['CANVAS_API_TOKEN']) || isset($metadata['CANVAS_API_USER'])) {
276
+                $api = new CanvasPest("{$metadata['CANVAS_INSTANCE_URL']}/login/oauth2", $metadata['CANVAS_API_TOKEN']);
277
+                $api->delete('token');
278
+                unset($metadata['CANVAS_API_TOKEN']);
279
+                unset($metadata['CANVAS_API_USER']);
280
+                $smarty->addMessage(
281
+                    'Existing admin Canvas API token information expunged',
282
+                    'There was already an administrative access token stored in your
283 283
 					 application metadata, and it has now been expunged.'
284
-				);
285
-			} else {
286
-				$smarty->addMessage(
287
-					'No admin Canvas API token acquired',
288
-					'An administrative API token has not been acquired. Users will be asked to
284
+                );
285
+            } else {
286
+                $smarty->addMessage(
287
+                    'No admin Canvas API token acquired',
288
+                    'An administrative API token has not been acquired. Users will be asked to
289 289
 					 acquire their own API tokens on their first use of the LTI.'
290
-				);
291
-			}
292
-		} else {
293
-			switch ($step) {
294
-				case self::API_DECISION_NEEDED_STEP: {
295
-					$smarty->assign('content', '
290
+                );
291
+            }
292
+        } else {
293
+            switch ($step) {
294
+                case self::API_DECISION_NEEDED_STEP: {
295
+                    $smarty->assign('content', '
296 296
 						<form action="' . $metadata['APP_URL'] . '/admin/oauth.php" method="post">
297 297
 							<label for="url"> Canvas Instance URL <input type="text" name="url" id="url" placeholder="' . $metadata['CANVAS_INSTANCE_URL_PLACEHOLDER'] . '" value="' . (isset($metadata['CANVAS_INSTANCE_URL']) ? $metadata['CANVAS_INSTANCE_URL'] : '') . '" /></label>
298 298
 							<label for="token"> API Access Token <input type="text" name="token" id="token" placeholder="Leave blank to acquire a token interactively" /></label>
@@ -307,43 +307,43 @@  discard block
 block discarded – undo
307 307
 							<input type="submit" value="Require users to acquire individual tokens" />
308 308
 						</form>
309 309
 					');
310
-					$smarty->display();
311
-					exit;
312
-				}
313
-				case self::API_DECISION_ENTERED_STEP: {
314
-					$oauth = new OAuthNegotiator();
310
+                    $smarty->display();
311
+                    exit;
312
+                }
313
+                case self::API_DECISION_ENTERED_STEP: {
314
+                    $oauth = new OAuthNegotiator();
315 315
 					
316
-					if ($oauth->isAPIToken()) {
317
-						$metadata['CANVAS_API_TOKEN'] = $oauth->getToken();
316
+                    if ($oauth->isAPIToken()) {
317
+                        $metadata['CANVAS_API_TOKEN'] = $oauth->getToken();
318 318
 						
319
-						$smarty->addMessage(
320
-							'Admin Canvas API token acquired',
321
-							'An administrative API access token has been acquired and stored in your application metadata.',
322
-							NotificationMessage::GOOD
323
-						);
324
-					}
319
+                        $smarty->addMessage(
320
+                            'Admin Canvas API token acquired',
321
+                            'An administrative API access token has been acquired and stored in your application metadata.',
322
+                            NotificationMessage::GOOD
323
+                        );
324
+                    }
325 325
 					
326
-					/* clear the processed step */
327
-					unset($_REQUEST['step']);
326
+                    /* clear the processed step */
327
+                    unset($_REQUEST['step']);
328 328
 					
329
-					break;
330
-				}
331
-				case self::API_TOKEN_PROVIDED_STEP: {
332
-					$smarty->addMessage(
333
-						'Admin Canvas API token provided',
334
-						'You provided an API access token and it has been stored in your application metadata.' 
335
-					);
336
-					break;
337
-				}
338
-				default: {
339
-					throw new CanvasAPIviaLTI_Installer_Exception(
340
-						"Unknown step ($step) in obtaining API token.",
341
-						CanvasAPIviaLTI_Installer_Exception::API_STEP_MISMATCH
342
-					);
343
-				}
344
-			}
345
-		}
346
-	}
329
+                    break;
330
+                }
331
+                case self::API_TOKEN_PROVIDED_STEP: {
332
+                    $smarty->addMessage(
333
+                        'Admin Canvas API token provided',
334
+                        'You provided an API access token and it has been stored in your application metadata.' 
335
+                    );
336
+                    break;
337
+                }
338
+                default: {
339
+                    throw new CanvasAPIviaLTI_Installer_Exception(
340
+                        "Unknown step ($step) in obtaining API token.",
341
+                        CanvasAPIviaLTI_Installer_Exception::API_STEP_MISMATCH
342
+                    );
343
+                }
344
+            }
345
+        }
346
+    }
347 347
 }
348 348
 
349 349
 /**
@@ -352,20 +352,20 @@  discard block
 block discarded – undo
352 352
  * @author Seth Battis <[email protected]>
353 353
  **/
354 354
 class CanvasAPIviaLTI_Installer_Exception extends CanvasAPIviaLTI_Exception {
355
-	const SECRETS_FILE_CREATION = 1;
356
-	const SECRETS_FILE_APP = 2;
357
-	const SECRETS_FILE_MYSQL = 3;
358
-	const LTI_SCHEMA = 4;
359
-	const LTI_PREPARE_DATABASE = 5;
360
-	const LTI_CREATE_TABLE = 6;
361
-	const APP_SCHEMA = 7;
362
-	const APP_PREPARE_DATABASE = 8;
363
-	const APP_CREATE_TABLE = 9;
364
-	const API_STEP_MISMATCH = 10;
365
-	const API_URL = 14;
366
-	const API_TOKEN = 11;
367
-	const HTPASSWD_FILE = 12;
368
-	const HTACCESS_FILE = 13;
355
+    const SECRETS_FILE_CREATION = 1;
356
+    const SECRETS_FILE_APP = 2;
357
+    const SECRETS_FILE_MYSQL = 3;
358
+    const LTI_SCHEMA = 4;
359
+    const LTI_PREPARE_DATABASE = 5;
360
+    const LTI_CREATE_TABLE = 6;
361
+    const APP_SCHEMA = 7;
362
+    const APP_PREPARE_DATABASE = 8;
363
+    const APP_CREATE_TABLE = 9;
364
+    const API_STEP_MISMATCH = 10;
365
+    const API_URL = 14;
366
+    const API_TOKEN = 11;
367
+    const HTPASSWD_FILE = 12;
368
+    const HTACCESS_FILE = 13;
369 369
 }
370 370
 
371 371
 ?>
372 372
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 						}
97 97
 						
98 98
 						$htaccessFile = __DIR__ . '/.htaccess';
99
-						if(!file_put_contents($htaccessFile, "AuthType Basic\nAuthName \"{$secrets->app->name} Admin\"\nAuthUserFile $htpasswdFile\nRequire valid-user\n")) {
99
+						if (!file_put_contents($htaccessFile, "AuthType Basic\nAuthName \"{$secrets->app->name} Admin\"\nAuthUserFile $htpasswdFile\nRequire valid-user\n")) {
100 100
 							throw new CanvasAPIviaLTI_Installer_Exception(
101 101
 								"Failed to create $htaccessFile",
102 102
 								CanvasAPIviaLTI_Installer_Exception::HTACCESS_FILE
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 		} elseif (file_exists($ltiSchema)) {
155 155
 			$queries = explode(";", file_get_contents($ltiSchema));
156 156
 			$created = true;
157
-			foreach($queries as $query) {
157
+			foreach ($queries as $query) {
158 158
 				if (!empty(trim($query))) {
159 159
 					if (!$sql->query($query)) {
160 160
 						throw new CanvasAPIviaLTI_Installer_Exception(
Please login to merge, or discard this patch.
classes/UserAPIToken.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	}
92 92
 	
93 93
 	/**
94
-	 * @return string|boolean The API access token for this user, or FALSE if no token has been acquired
94
+	 * @return string|false The API access token for this user, or FALSE if no token has been acquired
95 95
 	 **/
96 96
 	public function getToken() {
97 97
 		if ($this->token) {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	}
134 134
 	
135 135
 	/**
136
-	 * @return string|boolean The URL of the API for which the user's API token is valid, or FALSE if no token has been acquired
136
+	 * @return string|false The URL of the API for which the user's API token is valid, or FALSE if no token has been acquired
137 137
 	 **/
138 138
 	function getAPIUrl() {
139 139
 		if ($this->apiUrl) {
Please login to merge, or discard this patch.
Indentation   +152 added lines, -152 removed lines patch added patch discarded remove patch
@@ -8,170 +8,170 @@  discard block
 block discarded – undo
8 8
  **/
9 9
 class UserAPIToken {
10 10
 
11
-	const USER_TOKENS_TABLE = 'user_tokens';
11
+    const USER_TOKENS_TABLE = 'user_tokens';
12 12
 	
13
-	/**
14
-	 * @var string $consumerKey The unique ID of the tool consumer from whence the user is making requests to the LTI
15
-	 **/	
16
-	private $consumerKey;
13
+    /**
14
+     * @var string $consumerKey The unique ID of the tool consumer from whence the user is making requests to the LTI
15
+     **/	
16
+    private $consumerKey;
17 17
 	
18
-	/**
19
-	 * @var string $id The unique ID (within the context of a particular Tool Consumer) of a particular user
20
-	 **/
21
-	private $id;
18
+    /**
19
+     * @var string $id The unique ID (within the context of a particular Tool Consumer) of a particular user
20
+     **/
21
+    private $id;
22 22
 	
23
-	/**
24
-	 * @var mysqli $sql A MySQL connection
25
-	 **/
26
-	private $sql;
23
+    /**
24
+     * @var mysqli $sql A MySQL connection
25
+     **/
26
+    private $sql;
27 27
 	
28
-	/**
29
-	 * @var string|null $token This user's API access token (if acquired) or NULL if not yet acquired
30
-	 **/
31
-	private $token = null;
28
+    /**
29
+     * @var string|null $token This user's API access token (if acquired) or NULL if not yet acquired
30
+     **/
31
+    private $token = null;
32 32
 	
33
-	/**
34
-	 * @var string|null $apiUrl The URL of the API for which this user's token is valid, NULL if no token
35
-	 **/
36
-	private $apiUrl = null;
33
+    /**
34
+     * @var string|null $apiUrl The URL of the API for which this user's token is valid, NULL if no token
35
+     **/
36
+    private $apiUrl = null;
37 37
 
38
-	/**
39
-	 * Create a new UserAPIToken to either register a new user in the
40
-	 * USER_TOKENS_TABLE or	look up an existing user.
41
-	 *
42
-	 * @param string $consumerKey The unique ID of the Tool Consumer from whence the user is making requests to the LTI
43
-	 * @param string $userId The unique ID of the user within that Tool Consumer
44
-	 * @param mysqli $mysqli An active MySQL database connection to update USER_TOKEN_TABLE
45
-	 *
46
-	 * @throws UserAPIToken_Exception CONSUMER_KEY_REQUIRED If no consumer key is provided
47
-	 * @throws UserAPIToken_Exception USER_ID_REQUIRED If no user ID is provided
48
-	 * @throws UserAPIToken_Exception MYSQLI_REQUIRED If no MySQL database connection is provided
49
-	 * @throws UserAPIToken_Excpetion MYSQLI_ERROR If the user cannot be found or inserted in USER_TOKEN_TABLE
50
-	 **/
51
-	public function __construct($consumerKey, $userId, $mysqli) {
38
+    /**
39
+     * Create a new UserAPIToken to either register a new user in the
40
+     * USER_TOKENS_TABLE or	look up an existing user.
41
+     *
42
+     * @param string $consumerKey The unique ID of the Tool Consumer from whence the user is making requests to the LTI
43
+     * @param string $userId The unique ID of the user within that Tool Consumer
44
+     * @param mysqli $mysqli An active MySQL database connection to update USER_TOKEN_TABLE
45
+     *
46
+     * @throws UserAPIToken_Exception CONSUMER_KEY_REQUIRED If no consumer key is provided
47
+     * @throws UserAPIToken_Exception USER_ID_REQUIRED If no user ID is provided
48
+     * @throws UserAPIToken_Exception MYSQLI_REQUIRED If no MySQL database connection is provided
49
+     * @throws UserAPIToken_Excpetion MYSQLI_ERROR If the user cannot be found or inserted in USER_TOKEN_TABLE
50
+     **/
51
+    public function __construct($consumerKey, $userId, $mysqli) {
52 52
 		
53
-		if (empty((string) $consumerKey)) {
54
-			throw new UserAPIToken_Exception(
55
-				'A consumer key is required',
56
-				UserAPIToken_Exception::CONSUMER_KEY_REQUIRED
57
-			);
58
-		}
53
+        if (empty((string) $consumerKey)) {
54
+            throw new UserAPIToken_Exception(
55
+                'A consumer key is required',
56
+                UserAPIToken_Exception::CONSUMER_KEY_REQUIRED
57
+            );
58
+        }
59 59
 		
60
-		if (empty((string) $userId)) {
61
-			throw new UserAPIToken_Exception(
62
-				'A user ID is required',
63
-				UserAPIToken_Exception::USER_ID_REQUIRED
64
-			);
65
-		}
60
+        if (empty((string) $userId)) {
61
+            throw new UserAPIToken_Exception(
62
+                'A user ID is required',
63
+                UserAPIToken_Exception::USER_ID_REQUIRED
64
+            );
65
+        }
66 66
 		
67
-		if (!($mysqli instanceof mysqli)) {
68
-			throw new UserAPIToken_Exception(
69
-				'A valid mysqli object is required',
70
-				UserAPIToken_Exception::MYSQLI_REQUIRED
71
-			);
72
-		}
67
+        if (!($mysqli instanceof mysqli)) {
68
+            throw new UserAPIToken_Exception(
69
+                'A valid mysqli object is required',
70
+                UserAPIToken_Exception::MYSQLI_REQUIRED
71
+            );
72
+        }
73 73
 		
74
-		$this->sql = $mysqli;
75
-		$this->consumerKey = $this->sql->real_escape_string($consumerKey);
76
-		$this->id = $this->sql->real_escape_string($userId);
74
+        $this->sql = $mysqli;
75
+        $this->consumerKey = $this->sql->real_escape_string($consumerKey);
76
+        $this->id = $this->sql->real_escape_string($userId);
77 77
 				
78
-		$result = $this->sql->query("SELECT * FROM `" . self::USER_TOKENS_TABLE . "` WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'");
79
-		$row = $result->fetch_assoc();
80
-		if ($row) {
81
-			$this->token = $row['token'];
82
-			$this->apiUrl = $row['api_url'];
83
-		} else {
84
-			if (!$this->sql->query("INSERT INTO `" . self::USER_TOKENS_TABLE . "` (`consumer_key`, `id`) VALUES ('{$this->consumerKey}', '{$this->id}')")) {
85
-				throw new UserAPIToken_Exception(
86
-					"Error inserting a new user: {$this->sql->error}",
87
-					UserAPIToken_Exception::MYSQLI_ERROR
88
-				);
89
-			}
90
-		}
91
-	}
78
+        $result = $this->sql->query("SELECT * FROM `" . self::USER_TOKENS_TABLE . "` WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'");
79
+        $row = $result->fetch_assoc();
80
+        if ($row) {
81
+            $this->token = $row['token'];
82
+            $this->apiUrl = $row['api_url'];
83
+        } else {
84
+            if (!$this->sql->query("INSERT INTO `" . self::USER_TOKENS_TABLE . "` (`consumer_key`, `id`) VALUES ('{$this->consumerKey}', '{$this->id}')")) {
85
+                throw new UserAPIToken_Exception(
86
+                    "Error inserting a new user: {$this->sql->error}",
87
+                    UserAPIToken_Exception::MYSQLI_ERROR
88
+                );
89
+            }
90
+        }
91
+    }
92 92
 	
93
-	/**
94
-	 * @return string|boolean The API access token for this user, or FALSE if no token has been acquired
95
-	 **/
96
-	public function getToken() {
97
-		if ($this->token) {
98
-			return $this->token;
99
-		}
100
-		return false;
101
-	}
93
+    /**
94
+     * @return string|boolean The API access token for this user, or FALSE if no token has been acquired
95
+     **/
96
+    public function getToken() {
97
+        if ($this->token) {
98
+            return $this->token;
99
+        }
100
+        return false;
101
+    }
102 102
 	
103
-	/**
104
-	 * Stores a new API Token into USER_TOKEN_TABLE for this user
105
-	 *
106
-	 * @param string $token A new API access token for this user
107
-	 *
108
-	 * @return boolean Returns TRUE if the token is successfully stored in USER_TOKEN_TABLE, FALSE otherwise
109
-	 *
110
-	 * @throws UserAPIToken_Exception TOKEN_REQUIRED If no token is provided
111
-	 **/
112
-	public function setToken($token) {
113
-		if (empty($token)) {
114
-			throw new UserAPIToken_Exception(
115
-				'A token is required',
116
-				UserAPIToken_Exception::TOKEN_REQUIRED
117
-			);
118
-		}
119
-		if($this->consumerKey && $this->id && $this->sql) {
120
-			$_token = $this->sql->real_escape_string($token);
121
-			if (!$this->sql->query("UPDATE `" . self::USER_TOKENS_TABLE . "` set `token` = '$_token' WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'")) {
122
-				throw new UserAPIToken_Exception(
123
-					"Error updating token: {$this->sql->error}",
124
-					UserAPIToken_Exception::MYSQLI_ERROR
125
-				);
126
-			}
127
-			$this->token = $token;
103
+    /**
104
+     * Stores a new API Token into USER_TOKEN_TABLE for this user
105
+     *
106
+     * @param string $token A new API access token for this user
107
+     *
108
+     * @return boolean Returns TRUE if the token is successfully stored in USER_TOKEN_TABLE, FALSE otherwise
109
+     *
110
+     * @throws UserAPIToken_Exception TOKEN_REQUIRED If no token is provided
111
+     **/
112
+    public function setToken($token) {
113
+        if (empty($token)) {
114
+            throw new UserAPIToken_Exception(
115
+                'A token is required',
116
+                UserAPIToken_Exception::TOKEN_REQUIRED
117
+            );
118
+        }
119
+        if($this->consumerKey && $this->id && $this->sql) {
120
+            $_token = $this->sql->real_escape_string($token);
121
+            if (!$this->sql->query("UPDATE `" . self::USER_TOKENS_TABLE . "` set `token` = '$_token' WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'")) {
122
+                throw new UserAPIToken_Exception(
123
+                    "Error updating token: {$this->sql->error}",
124
+                    UserAPIToken_Exception::MYSQLI_ERROR
125
+                );
126
+            }
127
+            $this->token = $token;
128 128
 			
129
-			return true;
130
-		}
129
+            return true;
130
+        }
131 131
 		
132
-		return false;
133
-	}
132
+        return false;
133
+    }
134 134
 	
135
-	/**
136
-	 * @return string|boolean The URL of the API for which the user's API token is valid, or FALSE if no token has been acquired
137
-	 **/
138
-	function getAPIUrl() {
139
-		if ($this->apiUrl) {
140
-			return $this->apiUrl;
141
-		}
142
-		return false;
143
-	}
135
+    /**
136
+     * @return string|boolean The URL of the API for which the user's API token is valid, or FALSE if no token has been acquired
137
+     **/
138
+    function getAPIUrl() {
139
+        if ($this->apiUrl) {
140
+            return $this->apiUrl;
141
+        }
142
+        return false;
143
+    }
144 144
 	
145
-	/**
146
-	 * Stores a new URL for the API URL for which the user's API access token is valid in USER_TOKEN_TABLE
147
-	 *
148
-	 * @param string $apiUrl The URL of the API
149
-	 *
150
-	 * @return boolean TRUE if the URL of the API is stored in USER_TOKEN_TABLE, FALSE otherwise
151
-	 *
152
-	 * @throws UserAPITokenException API_URL_REQUIRED If no URL is provided
153
-	 **/
154
-	public function setAPIUrl($apiUrl) {
155
-		if (empty($apiUrl)) {
156
-			throw new UserAPIToken_Exception(
157
-				'API URL is required',
158
-				UserAPIToken_Exception::API_URL_REQUIRED
159
-			);
160
-		}
145
+    /**
146
+     * Stores a new URL for the API URL for which the user's API access token is valid in USER_TOKEN_TABLE
147
+     *
148
+     * @param string $apiUrl The URL of the API
149
+     *
150
+     * @return boolean TRUE if the URL of the API is stored in USER_TOKEN_TABLE, FALSE otherwise
151
+     *
152
+     * @throws UserAPITokenException API_URL_REQUIRED If no URL is provided
153
+     **/
154
+    public function setAPIUrl($apiUrl) {
155
+        if (empty($apiUrl)) {
156
+            throw new UserAPIToken_Exception(
157
+                'API URL is required',
158
+                UserAPIToken_Exception::API_URL_REQUIRED
159
+            );
160
+        }
161 161
 		
162
-		if ($this->consumerKey && $this->id && $this->sql) {
163
-			$_apiUrl = $this->sql->real_escape_string($apiUrl);
164
-			if (!$this->sql->query("UPDATE `" . self::USER_TOKENS_TABLE . "` set `api_url` = '$_apiUrl' WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'")) {
165
-				throw new UserAPIToken_Exception(
166
-					"Error updating API URL for user token: {$this->sql->error}",
167
-					UserAPIToken_Exception::MYSQLI_ERROR
168
-				);
169
-			}
170
-			$this->apiUrl = $apiUrl;
171
-			return true;
172
-		}
173
-		return false;
174
-	}
162
+        if ($this->consumerKey && $this->id && $this->sql) {
163
+            $_apiUrl = $this->sql->real_escape_string($apiUrl);
164
+            if (!$this->sql->query("UPDATE `" . self::USER_TOKENS_TABLE . "` set `api_url` = '$_apiUrl' WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'")) {
165
+                throw new UserAPIToken_Exception(
166
+                    "Error updating API URL for user token: {$this->sql->error}",
167
+                    UserAPIToken_Exception::MYSQLI_ERROR
168
+                );
169
+            }
170
+            $this->apiUrl = $apiUrl;
171
+            return true;
172
+        }
173
+        return false;
174
+    }
175 175
 }
176 176
 
177 177
 /**
@@ -180,12 +180,12 @@  discard block
 block discarded – undo
180 180
  * @author Seth Battis <[email protected]>
181 181
  **/
182 182
 class UserAPIToken_Exception extends CanvasAPIviaLTI_Exception {
183
-	const CONSUMER_KEY_REQUIRED = 1;
184
-	const USER_ID_REQUIRED = 2;
185
-	const MYSQLI_REQUIRED = 3;
186
-	const MYSQLI_ERROR = 4;
187
-	const TOKEN_REQUIRED = 5;
188
-	const API_URL_REQUIRED = 6;
183
+    const CONSUMER_KEY_REQUIRED = 1;
184
+    const USER_ID_REQUIRED = 2;
185
+    const MYSQLI_REQUIRED = 3;
186
+    const MYSQLI_ERROR = 4;
187
+    const TOKEN_REQUIRED = 5;
188
+    const API_URL_REQUIRED = 6;
189 189
 }
190 190
 
191 191
 ?>
192 192
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
 				UserAPIToken_Exception::TOKEN_REQUIRED
117 117
 			);
118 118
 		}
119
-		if($this->consumerKey && $this->id && $this->sql) {
119
+		if ($this->consumerKey && $this->id && $this->sql) {
120 120
 			$_token = $this->sql->real_escape_string($token);
121 121
 			if (!$this->sql->query("UPDATE `" . self::USER_TOKENS_TABLE . "` set `token` = '$_token' WHERE `consumer_key` = '{$this->consumerKey}' AND `id` = '{$this->id}'")) {
122 122
 				throw new UserAPIToken_Exception(
Please login to merge, or discard this patch.
import.php 4 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 require_once 'common.inc.php';
13 13
 
14
-use smtech\CanvasPest\CanvasPest;
15 14
 use Battis\BootstrapSmarty\NotificationMessage;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.
Indentation   +253 added lines, -253 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if (php_sapi_name() == 'cli') {
4
-	// TODO there is a more streamlined way of doing this that escapes me just this second
5
-	$_REQUEST['cal'] = $argv[1];
6
-	$_REQUEST['canvas_url'] = $argv[2];
7
-	$_REQUEST['schedule'] = $argv[3];
4
+    // TODO there is a more streamlined way of doing this that escapes me just this second
5
+    $_REQUEST['cal'] = $argv[1];
6
+    $_REQUEST['canvas_url'] = $argv[2];
7
+    $_REQUEST['schedule'] = $argv[3];
8 8
 
9
-	define ('IGNORE_LTI', true);
9
+    define ('IGNORE_LTI', true);
10 10
 }
11 11
 
12 12
 require_once 'common.inc.php';
@@ -18,49 +18,49 @@  discard block
 block discarded – undo
18 18
  * Check to see if a URL exists
19 19
  **/
20 20
 function urlExists($url) {
21
-	$handle = fopen($url, 'r');
22
-	return $handle !== false;
21
+    $handle = fopen($url, 'r');
22
+    return $handle !== false;
23 23
 }
24 24
 
25 25
 /**
26 26
  * compute the calendar context for the canvas object based on its URL
27 27
  **/
28 28
 function getCanvasContext($canvasUrl) {
29
-	global $metadata;
30
-
31
-	// TODO: accept calendar2?contexts links too (they would be an intuitively obvious link to use, after all)
32
-	// FIXME: users aren't working
33
-	// TODO: it would probably be better to look up users by email address than URL
34
-	/* get the context (user, course or group) for the canvas URL */
35
-	$canvasContext = array();
36
-	if (preg_match('%(https?://)?(' . parse_url($metadata['CANVAS_INSTANCE_URL'], PHP_URL_HOST) . '/((about/(\d+))|(courses/(\d+)(/groups/(\d+))?)|(accounts/\d+/groups/(\d+))))%', $_REQUEST['canvas_url'], $matches)) {
37
-		$canvasContext['canonical_url'] = "https://{$matches[2]}"; // https://stmarksschool.instructure.com/courses/953
38
-
39
-		// course or account groups
40
-		if (isset($matches[9]) || isset($matches[11])) {
41
-			$canvasContext['context'] = 'group'; // used to for context_code in events
42
-			$canvasContext['id'] = ($matches[9] > $matches[11] ? $matches[9] : $matches[11]);
43
-			$canvasContext['verification_url'] = "groups/{$canvasContext['id']}"; // used once to look up the object to be sure it really exists
44
-
45
-		// courses
46
-		} elseif (isset($matches[7])) {
47
-			$canvasContext['context'] = 'course';
48
-			$canvasContext['id'] = $matches[7];
49
-			$canvasContext['verification_url'] = "courses/{$canvasContext['id']}";
50
-
51
-		// users
52
-		} elseif (isset($matches[5])) {
53
-			$canvasContext['context'] = 'user';
54
-			$canvasContext['id'] = $matches[5];
55
-			$canvasContext['verification_url'] = "users/{$canvasContext['id']}/profile";
56
-
57
-		// we're somewhere where we don't know where we are
58
-		} else {
59
-			return false;
60
-		}
61
-		return $canvasContext;
62
-	}
63
-	return false;
29
+    global $metadata;
30
+
31
+    // TODO: accept calendar2?contexts links too (they would be an intuitively obvious link to use, after all)
32
+    // FIXME: users aren't working
33
+    // TODO: it would probably be better to look up users by email address than URL
34
+    /* get the context (user, course or group) for the canvas URL */
35
+    $canvasContext = array();
36
+    if (preg_match('%(https?://)?(' . parse_url($metadata['CANVAS_INSTANCE_URL'], PHP_URL_HOST) . '/((about/(\d+))|(courses/(\d+)(/groups/(\d+))?)|(accounts/\d+/groups/(\d+))))%', $_REQUEST['canvas_url'], $matches)) {
37
+        $canvasContext['canonical_url'] = "https://{$matches[2]}"; // https://stmarksschool.instructure.com/courses/953
38
+
39
+        // course or account groups
40
+        if (isset($matches[9]) || isset($matches[11])) {
41
+            $canvasContext['context'] = 'group'; // used to for context_code in events
42
+            $canvasContext['id'] = ($matches[9] > $matches[11] ? $matches[9] : $matches[11]);
43
+            $canvasContext['verification_url'] = "groups/{$canvasContext['id']}"; // used once to look up the object to be sure it really exists
44
+
45
+        // courses
46
+        } elseif (isset($matches[7])) {
47
+            $canvasContext['context'] = 'course';
48
+            $canvasContext['id'] = $matches[7];
49
+            $canvasContext['verification_url'] = "courses/{$canvasContext['id']}";
50
+
51
+        // users
52
+        } elseif (isset($matches[5])) {
53
+            $canvasContext['context'] = 'user';
54
+            $canvasContext['id'] = $matches[5];
55
+            $canvasContext['verification_url'] = "users/{$canvasContext['id']}/profile";
56
+
57
+        // we're somewhere where we don't know where we are
58
+        } else {
59
+            return false;
60
+        }
61
+        return $canvasContext;
62
+    }
63
+    return false;
64 64
 }
65 65
 
66 66
 /**
@@ -70,22 +70,22 @@  discard block
 block discarded – undo
70 70
  **/
71 71
 function filterEvent($event, $calendarCache) {
72 72
 
73
- 	return (
74
-	 	// include this event if filtering is off...
75
- 		$calendarCache['enable_regexp_filter'] == false ||
76
- 		(
77
-			(
78
-				( // if filtering is on, and there's an include pattern test that pattern...
79
-					!empty($calendarCache['include_regexp']) &&
80
-					preg_match("%{$calendarCache['include_regexp']}%", $event->getProperty('SUMMARY'))
81
-				)
82
-			) &&
83
-			!( // if there is an exclude pattern, make sure that this event is NOT excluded
84
-				!empty($calendarCache['exclude_regexp']) &&
85
-				preg_match("%{$calendarCache['exclude_regexp']}%", $event->getProperty('SUMMARY'))
86
-			)
87
-		)
88
-	);
73
+        return (
74
+            // include this event if filtering is off...
75
+            $calendarCache['enable_regexp_filter'] == false ||
76
+         (
77
+            (
78
+                ( // if filtering is on, and there's an include pattern test that pattern...
79
+                    !empty($calendarCache['include_regexp']) &&
80
+                    preg_match("%{$calendarCache['include_regexp']}%", $event->getProperty('SUMMARY'))
81
+                )
82
+            ) &&
83
+            !( // if there is an exclude pattern, make sure that this event is NOT excluded
84
+                !empty($calendarCache['exclude_regexp']) &&
85
+                preg_match("%{$calendarCache['exclude_regexp']}%", $event->getProperty('SUMMARY'))
86
+            )
87
+        )
88
+    );
89 89
 }
90 90
 
91 91
 // TODO: it would be nice to be able to cleanly remove a synched calendar
@@ -97,55 +97,55 @@  discard block
 block discarded – undo
97 97
    object)? */
98 98
 if (isset($_REQUEST['cal']) && isset($_REQUEST['canvas_url'])) {
99 99
 
100
-	if ($canvasContext = getCanvasContext($_REQUEST['canvas_url'])) {
101
-		/* check ICS feed to be sure it exists */
102
-		if(urlExists($_REQUEST['cal'])) {
103
-			/* look up the canvas object -- mostly to make sure that it exists! */
104
-			if ($canvasObject = $api->get($canvasContext['verification_url'])) {
100
+    if ($canvasContext = getCanvasContext($_REQUEST['canvas_url'])) {
101
+        /* check ICS feed to be sure it exists */
102
+        if(urlExists($_REQUEST['cal'])) {
103
+            /* look up the canvas object -- mostly to make sure that it exists! */
104
+            if ($canvasObject = $api->get($canvasContext['verification_url'])) {
105 105
 
106
-				/* calculate the unique pairing ID of this ICS feed and canvas object */
107
-				$pairingHash = getPairingHash($_REQUEST['cal'], $canvasContext['canonical_url']);
108
-				$log = Log::singleton('file', __DIR__ . "/logs/$pairingHash.log");
109
-				postMessage('Sync started', getSyncTimestamp(), NotificationMessage::INFO);
106
+                /* calculate the unique pairing ID of this ICS feed and canvas object */
107
+                $pairingHash = getPairingHash($_REQUEST['cal'], $canvasContext['canonical_url']);
108
+                $log = Log::singleton('file', __DIR__ . "/logs/$pairingHash.log");
109
+                postMessage('Sync started', getSyncTimestamp(), NotificationMessage::INFO);
110 110
 
111
-				/* tell users that it's started and to cool their jets */
112
-				if (php_sapi_name() != 'cli') {
113
-					$smarty->assign('content', '
111
+                /* tell users that it's started and to cool their jets */
112
+                if (php_sapi_name() != 'cli') {
113
+                    $smarty->assign('content', '
114 114
 						<h3>Calendar Import Started</h3>
115 115
 						<p>The calendar import that you requested has begun. You may leave this page at anytime. You can see the progress of the import by visiting <a target="_blank" href="https://' . parse_url($metadata['CANVAS_INSTANCE_URL'], PHP_URL_HOST) . "/calendar?include_contexts={$canvasContext['context']}_{$canvasObject['id']}\">this calendar</a> in Canvas.</p>"
116
-					);
117
-					$smarty->display('page.tpl');
118
-				}
119
-
120
-				/* parse the ICS feed */
121
-				$ics = new vcalendar(
122
-					array(
123
-						'unique_id' => $metadata['APP_ID'],
124
-						'url' => $_REQUEST['cal']
125
-					)
126
-				);
127
-				$ics->parse();
128
-
129
-				/* log this pairing in the database cache, if it doesn't already exist */
130
-				$calendarCacheResponse = $sql->query("
116
+                    );
117
+                    $smarty->display('page.tpl');
118
+                }
119
+
120
+                /* parse the ICS feed */
121
+                $ics = new vcalendar(
122
+                    array(
123
+                        'unique_id' => $metadata['APP_ID'],
124
+                        'url' => $_REQUEST['cal']
125
+                    )
126
+                );
127
+                $ics->parse();
128
+
129
+                /* log this pairing in the database cache, if it doesn't already exist */
130
+                $calendarCacheResponse = $sql->query("
131 131
 					SELECT *
132 132
 						FROM `calendars`
133 133
 						WHERE
134 134
 							`id` = '$pairingHash'
135 135
 				");
136
-				$calendarCache = $calendarCacheResponse->fetch_assoc();
136
+                $calendarCache = $calendarCacheResponse->fetch_assoc();
137 137
 
138
-				/* if the calendar is already cached, just update the sync timestamp */
139
-				if ($calendarCache) {
140
-					$sql->query("
138
+                /* if the calendar is already cached, just update the sync timestamp */
139
+                if ($calendarCache) {
140
+                    $sql->query("
141 141
 						UPDATE `calendars`
142 142
 							SET
143 143
 								`synced` = '" . getSyncTimestamp() . "'
144 144
 							WHERE
145 145
 								`id` = '$pairingHash'
146 146
 					");
147
-				} else {
148
-					$sql->query("
147
+                } else {
148
+                    $sql->query("
149 149
 						INSERT INTO `calendars`
150 150
 							(
151 151
 								`id`,
@@ -168,46 +168,46 @@  discard block
 block discarded – undo
168 168
 								" . ($_REQUEST['enable_regexp_filter'] == VALUE_ENABLE_REGEXP_FILTER ? "'" . $sql->real_escape_string($_REQUEST['exclude_regexp']) . "'" : 'NULL') . "
169 169
 							)
170 170
 					");
171
-				}
171
+                }
172 172
 
173
-				/* refresh calendar information from cache database */
174
-				$calendarCacheResponse = $sql->query("
173
+                /* refresh calendar information from cache database */
174
+                $calendarCacheResponse = $sql->query("
175 175
 					SELECT *
176 176
 						FROM `calendars`
177 177
 						WHERE
178 178
 							`id` = '$pairingHash'
179 179
 				");
180
-				$calendarCache = $calendarCacheResponse->fetch_assoc();
180
+                $calendarCache = $calendarCacheResponse->fetch_assoc();
181 181
 
182
-				/* walk through $master_array and update the Canvas calendar to match the
182
+                /* walk through $master_array and update the Canvas calendar to match the
183 183
 				   ICS feed, caching changes in the database */
184
-				// TODO: would it be worth the performance improvement to just process things from today's date forward? (i.e. ignore old items, even if they've changed...)
185
-				// TODO:0 the best window for syncing would be the term of the course in question, right? issue:12
186
-				// TODO:0 Arbitrarily selecting events in for a year on either side of today's date, probably a better system? issue:12
187
-				foreach ($ics->selectComponents(
188
-					date('Y')-1, // startYear
189
-					date('m'), // startMonth
190
-					date('d'), // startDay
191
-					date('Y')+1, // endYEar
192
-					date('m'), // endMonth
193
-					date('d'), // endDay
194
-					'vevent', // cType
195
-					false, // flat
196
-					true, // any
197
-					true // split
198
-				) as $year) {
199
-					foreach ($year as $month => $days) {
200
-						foreach ($days as $day => $events) {
201
-							foreach ($events as $i => $event) {
202
-
203
-								/* does this event already exist in Canvas? */
204
-								$eventHash = getEventHash($event);
205
-
206
-								/* if the event should be included... */
207
-								if (filterEvent($event, $calendarCache)) {
208
-
209
-									/* have we cached this event already? */
210
-									$eventCacheResponse = $sql->query("
184
+                // TODO: would it be worth the performance improvement to just process things from today's date forward? (i.e. ignore old items, even if they've changed...)
185
+                // TODO:0 the best window for syncing would be the term of the course in question, right? issue:12
186
+                // TODO:0 Arbitrarily selecting events in for a year on either side of today's date, probably a better system? issue:12
187
+                foreach ($ics->selectComponents(
188
+                    date('Y')-1, // startYear
189
+                    date('m'), // startMonth
190
+                    date('d'), // startDay
191
+                    date('Y')+1, // endYEar
192
+                    date('m'), // endMonth
193
+                    date('d'), // endDay
194
+                    'vevent', // cType
195
+                    false, // flat
196
+                    true, // any
197
+                    true // split
198
+                ) as $year) {
199
+                    foreach ($year as $month => $days) {
200
+                        foreach ($days as $day => $events) {
201
+                            foreach ($events as $i => $event) {
202
+
203
+                                /* does this event already exist in Canvas? */
204
+                                $eventHash = getEventHash($event);
205
+
206
+                                /* if the event should be included... */
207
+                                if (filterEvent($event, $calendarCache)) {
208
+
209
+                                    /* have we cached this event already? */
210
+                                    $eventCacheResponse = $sql->query("
211 211
 										SELECT *
212 212
 											FROM `events`
213 213
 											WHERE
@@ -216,11 +216,11 @@  discard block
 block discarded – undo
216 216
 									");
217 217
 
218 218
 
219
-									/* if we already have the event cached in its current form, just update
219
+                                    /* if we already have the event cached in its current form, just update
220 220
 									   the timestamp */
221
-									$eventCache = $eventCacheResponse->fetch_assoc();
222
-									if ($eventCache) {
223
-										$sql->query("
221
+                                    $eventCache = $eventCacheResponse->fetch_assoc();
222
+                                    if ($eventCache) {
223
+                                        $sql->query("
224 224
 											UPDATE `events`
225 225
 												SET
226 226
 													`synced` = '" . getSyncTimestamp() . "'
@@ -228,30 +228,30 @@  discard block
 block discarded – undo
228 228
 													`id` = '{$eventCache['id']}'
229 229
 										");
230 230
 
231
-									/* otherwise, add this new event and cache it */
232
-									} else {
233
-										/* multi-day event instance start times need to be changed to _this_ date */
234
-										$start = new DateTime(iCalUtilityFunctions::_date2strdate($event->getProperty('DTSTART')));
235
-										$end = new DateTime(iCalUtilityFunctions::_date2strdate($event->getProperty('DTEND')));
236
-										if ($event->getProperty('X-RECURRENCE')) {
237
-											$start = new DateTime($event->getProperty('X-CURRENT-DTSTART')[1]);
238
-											$end = new DateTime($event->getProperty('X-CURRENT-DTEND')[1]);
239
-										}
240
-										$start->setTimeZone(new DateTimeZone(LOCAL_TIMEZONE));
241
-										$end->setTimeZone(new DateTimeZone(LOCAL_TIMEZONE));
242
-
243
-										$calendarEvent = $api->post("/calendar_events",
244
-											array(
245
-												'calendar_event[context_code]' => "{$canvasContext['context']}_{$canvasObject['id']}",
246
-												'calendar_event[title]' => preg_replace('%^([^\]]+)(\s*\[[^\]]+\]\s*)+$%', '\\1', strip_tags($event->getProperty('SUMMARY'))),
247
-												'calendar_event[description]' => \Michelf\Markdown::defaultTransform(str_replace('\n', "\n\n", $event->getProperty('DESCRIPTION', 1))),
248
-												'calendar_event[start_at]' => $start->format(CANVAS_TIMESTAMP_FORMAT),
249
-												'calendar_event[end_at]' => $end->format(CANVAS_TIMESTAMP_FORMAT),
250
-												'calendar_event[location_name]' => $event->getProperty('LOCATION')
251
-											)
252
-										);
253
-
254
-										$sql->query("
231
+                                    /* otherwise, add this new event and cache it */
232
+                                    } else {
233
+                                        /* multi-day event instance start times need to be changed to _this_ date */
234
+                                        $start = new DateTime(iCalUtilityFunctions::_date2strdate($event->getProperty('DTSTART')));
235
+                                        $end = new DateTime(iCalUtilityFunctions::_date2strdate($event->getProperty('DTEND')));
236
+                                        if ($event->getProperty('X-RECURRENCE')) {
237
+                                            $start = new DateTime($event->getProperty('X-CURRENT-DTSTART')[1]);
238
+                                            $end = new DateTime($event->getProperty('X-CURRENT-DTEND')[1]);
239
+                                        }
240
+                                        $start->setTimeZone(new DateTimeZone(LOCAL_TIMEZONE));
241
+                                        $end->setTimeZone(new DateTimeZone(LOCAL_TIMEZONE));
242
+
243
+                                        $calendarEvent = $api->post("/calendar_events",
244
+                                            array(
245
+                                                'calendar_event[context_code]' => "{$canvasContext['context']}_{$canvasObject['id']}",
246
+                                                'calendar_event[title]' => preg_replace('%^([^\]]+)(\s*\[[^\]]+\]\s*)+$%', '\\1', strip_tags($event->getProperty('SUMMARY'))),
247
+                                                'calendar_event[description]' => \Michelf\Markdown::defaultTransform(str_replace('\n', "\n\n", $event->getProperty('DESCRIPTION', 1))),
248
+                                                'calendar_event[start_at]' => $start->format(CANVAS_TIMESTAMP_FORMAT),
249
+                                                'calendar_event[end_at]' => $end->format(CANVAS_TIMESTAMP_FORMAT),
250
+                                                'calendar_event[location_name]' => $event->getProperty('LOCATION')
251
+                                            )
252
+                                        );
253
+
254
+                                        $sql->query("
255 255
 											INSERT INTO `events`
256 256
 												(
257 257
 													`calendar`,
@@ -266,102 +266,102 @@  discard block
 block discarded – undo
266 266
 													'" . getSyncTimestamp() . "'
267 267
 												)
268 268
 										");
269
-									}
270
-								}
271
-							}
272
-						}
273
-					}
274
-				}
275
-
276
-				/* clean out previously synced events that are no longer correct */
277
-				$deletedEventsResponse = $sql->query("
269
+                                    }
270
+                                }
271
+                            }
272
+                        }
273
+                    }
274
+                }
275
+
276
+                /* clean out previously synced events that are no longer correct */
277
+                $deletedEventsResponse = $sql->query("
278 278
 					SELECT * FROM `events`
279 279
 						WHERE
280 280
 							`calendar` = '{$calendarCache['id']}' AND
281 281
 							`synced` != '" . getSyncTimestamp() . "'
282 282
 				");
283
-				while ($deletedEventCache = $deletedEventsResponse->fetch_assoc()) {
284
-					try {
285
-						$deletedEvent = $api->delete("/calendar_events/{$deletedEventCache['calendar_event[id]']}",
286
-							array(
287
-								'cancel_reason' => getSyncTimestamp(),
288
-								'as_user_id' => ($canvasContext['context'] == 'user' ? $canvasObject['id'] : '') // TODO: this feels skeevy -- like the empty string will break
289
-							)
290
-						);
291
-					} catch (Pest_Unauthorized $e) {
292
-						/* if the event has been deleted in Canvas, we'll get an error when
283
+                while ($deletedEventCache = $deletedEventsResponse->fetch_assoc()) {
284
+                    try {
285
+                        $deletedEvent = $api->delete("/calendar_events/{$deletedEventCache['calendar_event[id]']}",
286
+                            array(
287
+                                'cancel_reason' => getSyncTimestamp(),
288
+                                'as_user_id' => ($canvasContext['context'] == 'user' ? $canvasObject['id'] : '') // TODO: this feels skeevy -- like the empty string will break
289
+                            )
290
+                        );
291
+                    } catch (Pest_Unauthorized $e) {
292
+                        /* if the event has been deleted in Canvas, we'll get an error when
293 293
 						   we try to delete it a second time. We still need to delete it from
294 294
 						   our cache database, however */
295
-						postMessage('Cache out-of-sync', "calendar_event[{$deletedEventCache['calendar_event[id]']}] no longer exists and will be purged from cache.", NotificationMessage::INFO);
296
-					} catch (Pest_ClientError $e) {
297
-						postMessage(
298
-							'API Client Error',
299
-							'<pre>' . print_r(array(
300
-								'Status' => $PEST->lastStatus(),
301
-								'Error' => $PEST->lastBody(),
302
-								'Verb' => $verb,
303
-								'URL' => $url,
304
-								'Data' => $data
305
-							), false) . '</pre>',
306
-							NotificationMessage::ERROR
307
-						);
308
-						if (php_sapi_name() != 'cli') $smarty->display('page.tpl');
309
-						exit;
310
-					}
311
-					$sql->query("
295
+                        postMessage('Cache out-of-sync', "calendar_event[{$deletedEventCache['calendar_event[id]']}] no longer exists and will be purged from cache.", NotificationMessage::INFO);
296
+                    } catch (Pest_ClientError $e) {
297
+                        postMessage(
298
+                            'API Client Error',
299
+                            '<pre>' . print_r(array(
300
+                                'Status' => $PEST->lastStatus(),
301
+                                'Error' => $PEST->lastBody(),
302
+                                'Verb' => $verb,
303
+                                'URL' => $url,
304
+                                'Data' => $data
305
+                            ), false) . '</pre>',
306
+                            NotificationMessage::ERROR
307
+                        );
308
+                        if (php_sapi_name() != 'cli') $smarty->display('page.tpl');
309
+                        exit;
310
+                    }
311
+                    $sql->query("
312 312
 						DELETE FROM `events`
313 313
 							WHERE
314 314
 								`id` = '{$deletedEventCache['id']}'
315 315
 					");
316
-				}
316
+                }
317 317
 
318
-				/* if this was a scheduled import (i.e. a sync), update that schedule */
319
-				if (isset($_REQUEST['schedule'])) {
320
-					$sql->query("
318
+                /* if this was a scheduled import (i.e. a sync), update that schedule */
319
+                if (isset($_REQUEST['schedule'])) {
320
+                    $sql->query("
321 321
 						UPDATE `schedules`
322 322
 							SET
323 323
 								`synced` = '" . getSyncTimestamp() . "'
324 324
 							WHERE
325 325
 								`id` = '{$_REQUEST['schedule']}'
326 326
 					");
327
-				}
328
-				/* are we setting up a regular synchronization? */
329
-				if (isset($_REQUEST['sync']) && $_REQUEST['sync'] != SCHEDULE_ONCE) {
327
+                }
328
+                /* are we setting up a regular synchronization? */
329
+                if (isset($_REQUEST['sync']) && $_REQUEST['sync'] != SCHEDULE_ONCE) {
330 330
 
331
-					// FIXME:0 CRON SYNC SETUP GOES HERE issue:15 issue:13
331
+                    // FIXME:0 CRON SYNC SETUP GOES HERE issue:15 issue:13
332 332
 
333
-					/* add to the cache database schedule, replacing any schedules for this
333
+                    /* add to the cache database schedule, replacing any schedules for this
334 334
 					   calendar that are already there */
335
-					$schedulesResponse = $sql->query("
335
+                    $schedulesResponse = $sql->query("
336 336
 						SELECT *
337 337
 							FROM `schedules`
338 338
 							WHERE
339 339
 								`calendar` = '{$calendarCache['id']}'
340 340
 					");
341 341
 
342
-					if ($schedule = $schedulesResponse->fetch_assoc()) {
342
+                    if ($schedule = $schedulesResponse->fetch_assoc()) {
343 343
 
344
-						/* only need to worry if the cached schedule is different from the
344
+                        /* only need to worry if the cached schedule is different from the
345 345
 						   new one we just set */
346
-						if ($shellArguments[INDEX_SCHEDULE] != $schedule['schedule']) {
347
-							/* was this the last schedule to require this trigger? */
348
-							$schedulesResponse = $sql->query("
346
+                        if ($shellArguments[INDEX_SCHEDULE] != $schedule['schedule']) {
347
+                            /* was this the last schedule to require this trigger? */
348
+                            $schedulesResponse = $sql->query("
349 349
 								SELECT *
350 350
 									FROM `schedules`
351 351
 									WHERE
352 352
 										`calendar` != '{$calendarCache['id']}' AND
353 353
 										`schedule` == '{$schedule['schedule']}'
354 354
 							");
355
-							/* we're the last one, delete it from crontab */
356
-							if ($schedulesResponse->num_rows == 0) {
357
-								$crontabs = preg_replace("%^.*{$schedule['schedule']}.*" . PHP_EOL . '%', '', shell_exec('crontab -l'));
358
-								$filename = md5(getSyncTimestamp()) . '.txt';
359
-								file_put_contents("/tmp/$filename", $crontabs);
360
-								shell_exec("crontab /tmp/$filename");
361
-								postMessage('Unused schedule', "removed schedule '{$schedule['schedule']}' from crontab", NotificationMessage::INFO);
362
-							}
363
-
364
-							$sql->query("
355
+                            /* we're the last one, delete it from crontab */
356
+                            if ($schedulesResponse->num_rows == 0) {
357
+                                $crontabs = preg_replace("%^.*{$schedule['schedule']}.*" . PHP_EOL . '%', '', shell_exec('crontab -l'));
358
+                                $filename = md5(getSyncTimestamp()) . '.txt';
359
+                                file_put_contents("/tmp/$filename", $crontabs);
360
+                                shell_exec("crontab /tmp/$filename");
361
+                                postMessage('Unused schedule', "removed schedule '{$schedule['schedule']}' from crontab", NotificationMessage::INFO);
362
+                            }
363
+
364
+                            $sql->query("
365 365
 								UPDATE `schedules`
366 366
 									SET
367 367
 										`schedule` = '" . $shellArguments[INDEX_SCHEDULE] . "',
@@ -369,9 +369,9 @@  discard block
 block discarded – undo
369 369
 									WHERE
370 370
 										`calendar` = '{$calendarCache['id']}'
371 371
 							");
372
-						}
373
-					} else {
374
-						$sql->query("
372
+                        }
373
+                    } else {
374
+                        $sql->query("
375 375
 							INSERT INTO `schedules`
376 376
 								(
377 377
 									`calendar`,
@@ -384,46 +384,46 @@  discard block
 block discarded – undo
384 384
 									'" . getSyncTimestamp() . "'
385 385
 								)
386 386
 						");
387
-					}
388
-				}
387
+                    }
388
+                }
389 389
 
390
-				/* if we're ovewriting data (for example, if this is a recurring sync, we
390
+                /* if we're ovewriting data (for example, if this is a recurring sync, we
391 391
 				   need to remove the events that were _not_ synced this in this round */
392
-				if (isset($_REQUEST['overwrite']) && $_REQUEST['overwrite'] == VALUE_OVERWRITE_CANVAS_CALENDAR) {
393
-					// TODO: actually deal with this
394
-				}
395
-
396
-				// TODO: deal with messaging based on context
397
-
398
-				postMessage('Finished sync', getSyncTimestamp(), NotificationMessage::INFO);
399
-				exit;
400
-			} else {
401
-				postMessage(
402
-					'Canvas Object  Not Found',
403
-					'The object whose URL you submitted could not be found.<pre>' . print_r(array(
404
-						'Canvas URL' => $_REQUEST['canvas_url'],
405
-						'Canvas Context' => $canvasContext,
406
-						'Canvas Object' => $canvasObject
407
-					), false) . '</pre>',
408
-					NotificationMessage::ERROR
409
-				);
410
-			}
411
-		} else {
412
-			postMessage(
413
-				'ICS feed  Not Found',
414
-				'The calendar whose URL you submitted could not be found.<pre>' . $_REQUEST['cal'] . '</pre>',
415
-				NotificationMessage::ERROR
416
-			);
417
-		}
418
-	} else {
419
-		postMessage(
420
-			'Invalid Canvas URL',
421
-			'The Canvas URL you submitted could not be parsed.<pre>' . $_REQUEST['canvas_url'] . '</pre>',
422
-			NotificationMessage::ERROR
423
-		);
424
-		if (php_sapi_name() != 'cli') $smarty->display('page.tpl');
425
-		exit;
426
-	}
392
+                if (isset($_REQUEST['overwrite']) && $_REQUEST['overwrite'] == VALUE_OVERWRITE_CANVAS_CALENDAR) {
393
+                    // TODO: actually deal with this
394
+                }
395
+
396
+                // TODO: deal with messaging based on context
397
+
398
+                postMessage('Finished sync', getSyncTimestamp(), NotificationMessage::INFO);
399
+                exit;
400
+            } else {
401
+                postMessage(
402
+                    'Canvas Object  Not Found',
403
+                    'The object whose URL you submitted could not be found.<pre>' . print_r(array(
404
+                        'Canvas URL' => $_REQUEST['canvas_url'],
405
+                        'Canvas Context' => $canvasContext,
406
+                        'Canvas Object' => $canvasObject
407
+                    ), false) . '</pre>',
408
+                    NotificationMessage::ERROR
409
+                );
410
+            }
411
+        } else {
412
+            postMessage(
413
+                'ICS feed  Not Found',
414
+                'The calendar whose URL you submitted could not be found.<pre>' . $_REQUEST['cal'] . '</pre>',
415
+                NotificationMessage::ERROR
416
+            );
417
+        }
418
+    } else {
419
+        postMessage(
420
+            'Invalid Canvas URL',
421
+            'The Canvas URL you submitted could not be parsed.<pre>' . $_REQUEST['canvas_url'] . '</pre>',
422
+            NotificationMessage::ERROR
423
+        );
424
+        if (php_sapi_name() != 'cli') $smarty->display('page.tpl');
425
+        exit;
426
+    }
427 427
 }
428 428
 
429 429
 ?>
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 	$_REQUEST['canvas_url'] = $argv[2];
7 7
 	$_REQUEST['schedule'] = $argv[3];
8 8
 
9
-	define ('IGNORE_LTI', true);
9
+	define('IGNORE_LTI', true);
10 10
 }
11 11
 
12 12
 require_once 'common.inc.php';
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
 	if ($canvasContext = getCanvasContext($_REQUEST['canvas_url'])) {
101 101
 		/* check ICS feed to be sure it exists */
102
-		if(urlExists($_REQUEST['cal'])) {
102
+		if (urlExists($_REQUEST['cal'])) {
103 103
 			/* look up the canvas object -- mostly to make sure that it exists! */
104 104
 			if ($canvasObject = $api->get($canvasContext['verification_url'])) {
105 105
 
@@ -185,10 +185,10 @@  discard block
 block discarded – undo
185 185
 				// TODO:0 the best window for syncing would be the term of the course in question, right? issue:12
186 186
 				// TODO:0 Arbitrarily selecting events in for a year on either side of today's date, probably a better system? issue:12
187 187
 				foreach ($ics->selectComponents(
188
-					date('Y')-1, // startYear
188
+					date('Y') - 1, // startYear
189 189
 					date('m'), // startMonth
190 190
 					date('d'), // startDay
191
-					date('Y')+1, // endYEar
191
+					date('Y') + 1, // endYEar
192 192
 					date('m'), // endMonth
193 193
 					date('d'), // endDay
194 194
 					'vevent', // cType
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -305,7 +305,9 @@  discard block
 block discarded – undo
305 305
 							), false) . '</pre>',
306 306
 							NotificationMessage::ERROR
307 307
 						);
308
-						if (php_sapi_name() != 'cli') $smarty->display('page.tpl');
308
+						if (php_sapi_name() != 'cli') {
309
+						    $smarty->display('page.tpl');
310
+						}
309 311
 						exit;
310 312
 					}
311 313
 					$sql->query("
@@ -421,7 +423,9 @@  discard block
 block discarded – undo
421 423
 			'The Canvas URL you submitted could not be parsed.<pre>' . $_REQUEST['canvas_url'] . '</pre>',
422 424
 			NotificationMessage::ERROR
423 425
 		);
424
-		if (php_sapi_name() != 'cli') $smarty->display('page.tpl');
426
+		if (php_sapi_name() != 'cli') {
427
+		    $smarty->display('page.tpl');
428
+		}
425 429
 		exit;
426 430
 	}
427 431
 }
Please login to merge, or discard this patch.
classes/CanvasAPIviaLTI.php 1 patch
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -7,98 +7,98 @@  discard block
 block discarded – undo
7 7
  **/	
8 8
 class CanvasAPIviaLTI extends LTI_Tool_Provider {
9 9
 	
10
-	/**
11
-	 * Handle launch requests, which start the application running
12
-	 **/
13
-	public function onLaunch() {
14
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
15
-		global $sql; // FIXME:0 grown-ups don't program like this issue:17
10
+    /**
11
+     * Handle launch requests, which start the application running
12
+     **/
13
+    public function onLaunch() {
14
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
15
+        global $sql; // FIXME:0 grown-ups don't program like this issue:17
16 16
 				
17
-		/* is this user in a role that can use this app? */
18
-		if ($this->user->isAdmin()) {
17
+        /* is this user in a role that can use this app? */
18
+        if ($this->user->isAdmin()) {
19 19
 			
20
-			/* set up any needed session variables */
21
-	        $_SESSION['consumer_key'] = $this->consumer->getKey();
22
-	        $_SESSION['resource_id'] = $this->resource_link->getId();
23
-	        $_SESSION['user_consumer_key'] = $this->user->getResourceLink()->getConsumer()->getKey();
24
-	        $_SESSION['user_id'] = $this->user->getId();
25
-	        $_SESSION['isStudent'] = $this->user->isLearner();
26
-	        $_SESSION['isContentItem'] = FALSE;	   
20
+            /* set up any needed session variables */
21
+            $_SESSION['consumer_key'] = $this->consumer->getKey();
22
+            $_SESSION['resource_id'] = $this->resource_link->getId();
23
+            $_SESSION['user_consumer_key'] = $this->user->getResourceLink()->getConsumer()->getKey();
24
+            $_SESSION['user_id'] = $this->user->getId();
25
+            $_SESSION['isStudent'] = $this->user->isLearner();
26
+            $_SESSION['isContentItem'] = FALSE;	   
27 27
 			
28
-			/* do we have an admin API access token? */
29
-			$haveToken = true;
30
-			if (empty($metadata['CANVAS_API_TOKEN'])) {
28
+            /* do we have an admin API access token? */
29
+            $haveToken = true;
30
+            if (empty($metadata['CANVAS_API_TOKEN'])) {
31 31
 				
32
-				/* ...if not, do we have a user API access token for this user? */
33
-				$userToken = new UserAPIToken($_SESSION['user_consumer_key'], $_SESSION['user_id'], $sql);			
34
-				if (empty($userToken->getToken())) {
32
+                /* ...if not, do we have a user API access token for this user? */
33
+                $userToken = new UserAPIToken($_SESSION['user_consumer_key'], $_SESSION['user_id'], $sql);			
34
+                if (empty($userToken->getToken())) {
35 35
 					
36
-					/* ...if this user has no token, let's start by getting one */
37
-					$haveToken = false;
38
-					$this->redirectURL = "{$metadata['APP_URL']}/lti/token_request.php?oauth=request";
39
-				} else {
36
+                    /* ...if this user has no token, let's start by getting one */
37
+                    $haveToken = false;
38
+                    $this->redirectURL = "{$metadata['APP_URL']}/lti/token_request.php?oauth=request";
39
+                } else {
40 40
 					
41
-					/* ...but if the user does have a token, rock on! */
42
-					$_SESSION['isUserToken'] = true;
43
-					$_SESSION['apiToken'] = $userToken->getToken();
44
-					//$_SESSION['apiUrl'] = $userToken->getAPIUrl();
45
-				}
46
-			} else {
41
+                    /* ...but if the user does have a token, rock on! */
42
+                    $_SESSION['isUserToken'] = true;
43
+                    $_SESSION['apiToken'] = $userToken->getToken();
44
+                    //$_SESSION['apiUrl'] = $userToken->getAPIUrl();
45
+                }
46
+            } else {
47 47
 				
48
-				/* ...if we have an admin API token, rock on! */
49
-				$_SESSION['isUserToken'] = false;
50
-				$_SESSION['apiToken'] = $metadata['CANVAS_API_TOKEN'];
51
-				//$_SESSION['apiUrl'] = $metadata['CANVAS_API_URL'];
52
-			}
53
-			$_SESSION['apiUrl'] = 'https://' . $this->user->getResourceLink()->settings['custom_canvas_api_domain'] . '/api/v1';
48
+                /* ...if we have an admin API token, rock on! */
49
+                $_SESSION['isUserToken'] = false;
50
+                $_SESSION['apiToken'] = $metadata['CANVAS_API_TOKEN'];
51
+                //$_SESSION['apiUrl'] = $metadata['CANVAS_API_URL'];
52
+            }
53
+            $_SESSION['apiUrl'] = 'https://' . $this->user->getResourceLink()->settings['custom_canvas_api_domain'] . '/api/v1';
54 54
 			
55
-	        /* pass control off to the app */
56
-	        if ($haveToken) {
57
-		        $this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=launch";
58
-	        }
55
+            /* pass control off to the app */
56
+            if ($haveToken) {
57
+                $this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=launch";
58
+            }
59 59
 
60
-		/* ...otherwise set an appropriate error message and fail */
61
-		} else {
62
-			$this->reason = 'Invalid role';
63
-			$this->isOK = false;
64
-		}
65
-	}
60
+        /* ...otherwise set an appropriate error message and fail */
61
+        } else {
62
+            $this->reason = 'Invalid role';
63
+            $this->isOK = false;
64
+        }
65
+    }
66 66
 	
67
-	/**
68
-	 * Handle errors created while processing the LTI request
69
-	 **/
70
-	public function onError() {
71
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
67
+    /**
68
+     * Handle errors created while processing the LTI request
69
+     **/
70
+    public function onError() {
71
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
72 72
 		
73
-		$this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=error&reason={$this->reason}";
74
-	}
73
+        $this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=error&reason={$this->reason}";
74
+    }
75 75
 	
76
-	/**
77
-	 * Handle dashboard requests (coming in LTI v2.0, I guess)
78
-	 **/
79
-	public function onDashboard() {
80
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
76
+    /**
77
+     * Handle dashboard requests (coming in LTI v2.0, I guess)
78
+     **/
79
+    public function onDashboard() {
80
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
81 81
 		
82
-		$this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=dashboard";
83
-	}
82
+        $this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=dashboard";
83
+    }
84 84
 	
85
-	/**
86
-	 * Handle configure requests (coming in LTI v2.0, I guess)
87
-	 **/
88
-	public function onConfigure() {
89
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
85
+    /**
86
+     * Handle configure requests (coming in LTI v2.0, I guess)
87
+     **/
88
+    public function onConfigure() {
89
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
90 90
 		
91
-		$this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=configure";
92
-	}
91
+        $this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=configure";
92
+    }
93 93
 	
94
-	/**
95
-	 * Handle content-item requests (that is we're a tool provider that adds a button in the content editor)
96
-	 **/
97
-	public function onContentItem() {
98
-		global $metadata; // FIXME:0 grown-ups don't program like this issue:17
94
+    /**
95
+     * Handle content-item requests (that is we're a tool provider that adds a button in the content editor)
96
+     **/
97
+    public function onContentItem() {
98
+        global $metadata; // FIXME:0 grown-ups don't program like this issue:17
99 99
 		
100
-		$this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=content-item";
101
-	}
100
+        $this->redirectURL = "{$metadata['APP_URL']}/app.php?lti-request=content-item";
101
+    }
102 102
 }
103 103
 
104 104
 /**
@@ -107,10 +107,10 @@  discard block
 block discarded – undo
107 107
  * @author Seth Battis <[email protected]>
108 108
  **/
109 109
 class CanvasAPIviaLTI_Exception extends Exception {
110
-	const MISSING_SECRETS_FILE = 1;
111
-	const INVALID_SECRETS_FILE = 2;
112
-	const MYSQL_CONNECTION = 3;
113
-	const LAUNCH_REQUEST = 4;
110
+    const MISSING_SECRETS_FILE = 1;
111
+    const INVALID_SECRETS_FILE = 2;
112
+    const MYSQL_CONNECTION = 3;
113
+    const LAUNCH_REQUEST = 4;
114 114
 }
115 115
 
116 116
 ?>
117 117
\ No newline at end of file
Please login to merge, or discard this patch.
sync.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,15 +15,15 @@
 block discarded – undo
15 15
 ");
16 16
 
17 17
 while($schedule = $schedulesResponse->fetch_assoc()) {
18
-	$calendarResponse = $sql->query("
18
+    $calendarResponse = $sql->query("
19 19
 		SELECT *
20 20
 			FROM `calendars`
21 21
 			WHERE
22 22
 				`id` = '{$schedule['calendar']}'
23 23
 	");
24
-	if ($calendar = $calendarResponse->fetch_assoc()) {
25
-		echo shell_exec('php ' . __DIR__ . '/import.php ' . $calendar['ics_url'] . ' ' . $calendar['canvas_url'] . ' ' . $schedule['id']);
26
-	}
24
+    if ($calendar = $calendarResponse->fetch_assoc()) {
25
+        echo shell_exec('php ' . __DIR__ . '/import.php ' . $calendar['ics_url'] . ' ' . $calendar['canvas_url'] . ' ' . $schedule['id']);
26
+    }
27 27
 }
28 28
 
29 29
 ?>
30 30
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 			`synced` ASC
15 15
 ");
16 16
 
17
-while($schedule = $schedulesResponse->fetch_assoc()) {
17
+while ($schedule = $schedulesResponse->fetch_assoc()) {
18 18
 	$calendarResponse = $sql->query("
19 19
 		SELECT *
20 20
 			FROM `calendars`
Please login to merge, or discard this patch.
app.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 $smarty->assign('category', '');
7 7
 $smarty->assign('formAction', $metadata['APP_URL'] . '/import.php');
8 8
 $smarty->assign('formHidden', array(
9
-	'canvas_url' => $_SESSION['canvasInstanceUrl']. '/courses/' . $_SESSION['toolProvider']->user->getResourceLink()->settings['custom_canvas_course_id']
9
+    'canvas_url' => $_SESSION['canvasInstanceUrl']. '/courses/' . $_SESSION['toolProvider']->user->getResourceLink()->settings['custom_canvas_course_id']
10 10
 ));
11 11
 $smarty->display('course.tpl');
12 12
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 $smarty->assign('category', '');
7 7
 $smarty->assign('formAction', $metadata['APP_URL'] . '/import.php');
8 8
 $smarty->assign('formHidden', array(
9
-	'canvas_url' => $_SESSION['canvasInstanceUrl']. '/courses/' . $_SESSION['toolProvider']->user->getResourceLink()->settings['custom_canvas_course_id']
9
+	'canvas_url' => $_SESSION['canvasInstanceUrl'] . '/courses/' . $_SESSION['toolProvider']->user->getResourceLink()->settings['custom_canvas_course_id']
10 10
 ));
11 11
 $smarty->display('course.tpl');
12 12
 
Please login to merge, or discard this patch.
visualize.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 $smarty->addTemplateDir(__DIR__ . '/templates');
11 11
 
12 12
 if (empty($_REQUEST['url'])) {
13
-	$smarty->display('visualize-form.tpl');
14
-	exit;
13
+    $smarty->display('visualize-form.tpl');
14
+    exit;
15 15
 }
16 16
 
17 17
 $config = new ConfigXML(__DIR__ . '/secrets.xml');
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
 
23 23
 $ics = $cache->getCache($_REQUEST['url']);
24 24
 if (empty($ics)) {
25
-	$ics = new vcalendar(
26
-		array(
27
-			'unique_id' => basename(__FILE__, '.php'),
28
-			'url' => $_REQUEST['url']
29
-		)
30
-	);
31
-	$ics->parse();
32
-	$cache->setCache($_REQUEST['url'], $ics);
25
+    $ics = new vcalendar(
26
+        array(
27
+            'unique_id' => basename(__FILE__, '.php'),
28
+            'url' => $_REQUEST['url']
29
+        )
30
+    );
31
+    $ics->parse();
32
+    $cache->setCache($_REQUEST['url'], $ics);
33 33
 }
34 34
 
35 35
 $smarty->assign('ics', $ics);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,5 +33,5 @@
 block discarded – undo
33 33
 }
34 34
 
35 35
 $smarty->assign('ics', $ics);
36
-$smarty->assign('veventProperties', array('unique' => array('CLASS','CREATED','SUMMARY','DESCRIPTION','DTSTART','X-CURRENT-DTSTART','DTEND','X-CURRENT-DTEND','DURATION','GEO','LAST-MOD','LOCATION','ORGANIZER','PRIORITY','DTSTAMP','SEQ','STATUS','TRANSP','UID','URL','RECURID'),'multiple'=>array('ATTACH','ATTENDEE','CATEGORIES','COMMENT','CONTACT','EXDATE','EXRULE','RSTATUS','RELATED','RESOURCES','RDATE','RRULE','X-PROP')));
36
+$smarty->assign('veventProperties', array('unique' => array('CLASS', 'CREATED', 'SUMMARY', 'DESCRIPTION', 'DTSTART', 'X-CURRENT-DTSTART', 'DTEND', 'X-CURRENT-DTEND', 'DURATION', 'GEO', 'LAST-MOD', 'LOCATION', 'ORGANIZER', 'PRIORITY', 'DTSTAMP', 'SEQ', 'STATUS', 'TRANSP', 'UID', 'URL', 'RECURID'), 'multiple'=>array('ATTACH', 'ATTENDEE', 'CATEGORIES', 'COMMENT', 'CONTACT', 'EXDATE', 'EXRULE', 'RSTATUS', 'RELATED', 'RESOURCES', 'RDATE', 'RRULE', 'X-PROP')));
37 37
 $smarty->display('visualize.tpl');
38 38
\ No newline at end of file
Please login to merge, or discard this patch.
common.inc.php 1 patch
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
  * @return boolean
19 19
  **/
20 20
 function midLaunch() {
21
-	global $metadata; // FIXME:0 grown-ups don't program like this issue:17
22
-	return $metadata['APP_LAUNCH_URL'] === (($_SERVER['HTTPS'] === 'on' ? 'https://' : 'http://') . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
21
+    global $metadata; // FIXME:0 grown-ups don't program like this issue:17
22
+    return $metadata['APP_LAUNCH_URL'] === (($_SERVER['HTTPS'] === 'on' ? 'https://' : 'http://') . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
23 23
 }
24 24
 
25 25
 /**
@@ -31,22 +31,22 @@  discard block
 block discarded – undo
31 31
  * @throws CanvasAPIviaLTI_Exception INVALID_SECRETS_FILE if the SECRETS_FILE exists, but cannot be parsed
32 32
  **/
33 33
 function initSecrets() {
34
-	if (file_exists(SECRETS_FILE)) {
35
-		// http://stackoverflow.com/a/24760909 (oy!)
36
-		if (($secrets = simplexml_load_string(file_get_contents(SECRETS_FILE))) !== false) {
37
-			return $secrets;
38
-		} else {
39
-			throw new CanvasAPIviaLTI_Exception(
40
-				SECRETS_FILE . ' could not be loaded. ',
41
-				CanvasAPIviaLTI_Exception::INVALID_SECRETS_FILE
42
-			);
43
-		}
44
-	} else {
45
-		throw new CanvasAPIviaLTI_Exception(
46
-			SECRETS_FILE . " could not be found.",
47
-			CanvasAPIviaLTI_Exception::MISSING_SECRETS_FILE
48
-		);
49
-	}
34
+    if (file_exists(SECRETS_FILE)) {
35
+        // http://stackoverflow.com/a/24760909 (oy!)
36
+        if (($secrets = simplexml_load_string(file_get_contents(SECRETS_FILE))) !== false) {
37
+            return $secrets;
38
+        } else {
39
+            throw new CanvasAPIviaLTI_Exception(
40
+                SECRETS_FILE . ' could not be loaded. ',
41
+                CanvasAPIviaLTI_Exception::INVALID_SECRETS_FILE
42
+            );
43
+        }
44
+    } else {
45
+        throw new CanvasAPIviaLTI_Exception(
46
+            SECRETS_FILE . " could not be found.",
47
+            CanvasAPIviaLTI_Exception::MISSING_SECRETS_FILE
48
+        );
49
+    }
50 50
 }
51 51
 
52 52
 /**
@@ -59,28 +59,28 @@  discard block
 block discarded – undo
59 59
  * @throws CanvasAPIviaLTI_Exception MYSQL_CONNECTION if a mysqli connection cannot be established
60 60
  **/
61 61
 function initMySql() {
62
-	global $secrets; // FIXME:0 grown-ups don't program like this issue:17
63
-	if (!($secrets instanceof SimpleXMLElement)) {
64
-		$secrets = initSecrets();
65
-	}
66
-
67
-	/* turn off warnings, since we're going to test the connection ourselves */
68
-	set_error_handler(function() {});
69
-	$sql = new mysqli(
70
-		(string) $secrets->mysql->host,
71
-		(string) $secrets->mysql->username,
72
-		(string) $secrets->mysql->password,
73
-		(string) $secrets->mysql->database
74
-	);
75
-	restore_error_handler();
76
-
77
-	if ($sql->connect_error) {
78
-		throw new CanvasAPIviaLTI_Exception(
79
-			$sql->connect_error,
80
-			CanvasAPIviaLTI_Exception::MYSQL_CONNECTION
81
-		);
82
-	}
83
-	return $sql;
62
+    global $secrets; // FIXME:0 grown-ups don't program like this issue:17
63
+    if (!($secrets instanceof SimpleXMLElement)) {
64
+        $secrets = initSecrets();
65
+    }
66
+
67
+    /* turn off warnings, since we're going to test the connection ourselves */
68
+    set_error_handler(function() {});
69
+    $sql = new mysqli(
70
+        (string) $secrets->mysql->host,
71
+        (string) $secrets->mysql->username,
72
+        (string) $secrets->mysql->password,
73
+        (string) $secrets->mysql->database
74
+    );
75
+    restore_error_handler();
76
+
77
+    if ($sql->connect_error) {
78
+        throw new CanvasAPIviaLTI_Exception(
79
+            $sql->connect_error,
80
+            CanvasAPIviaLTI_Exception::MYSQL_CONNECTION
81
+        );
82
+    }
83
+    return $sql;
84 84
 }
85 85
 
86 86
 /**
@@ -89,12 +89,12 @@  discard block
 block discarded – undo
89 89
  * @return \Battis\AppMetadata
90 90
  **/
91 91
 function initAppMetadata() {
92
-	global $secrets; // FIXME:0 grown-ups don't program like this issue:17
93
-	global $sql; // FIXME:0 grown-ups don't program like this issue:17
92
+    global $secrets; // FIXME:0 grown-ups don't program like this issue:17
93
+    global $sql; // FIXME:0 grown-ups don't program like this issue:17
94 94
 
95
-	$metadata = new AppMetadata($sql, (string) $secrets->app->id);
95
+    $metadata = new AppMetadata($sql, (string) $secrets->app->id);
96 96
 
97
-	return $metadata;
97
+    return $metadata;
98 98
 }
99 99
 
100 100
 /**
@@ -105,9 +105,9 @@  discard block
 block discarded – undo
105 105
  * @return void
106 106
  **/
107 107
 function html_var_dump($var) {
108
-	echo '<pre>';
109
-	var_dump($var);
110
-	echo '</pre>';
108
+    echo '<pre>';
109
+    var_dump($var);
110
+    echo '</pre>';
111 111
 }
112 112
 
113 113
 /*****************************************************************************
@@ -121,68 +121,68 @@  discard block
 block discarded – undo
121 121
 
122 122
 /* preliminary interactive only initialization */
123 123
 if (php_sapi_name() != 'cli') {
124
-	session_start();
124
+    session_start();
125 125
 
126
-	/* fire up the templating engine for interactive scripts */
127
-	$smarty = StMarksSmarty::getSmarty();
128
-	$smarty->addTemplateDir(__DIR__ . '/templates', 'starter-canvas-api-via-lti');
129
-	$smarty->setFramed(true);
126
+    /* fire up the templating engine for interactive scripts */
127
+    $smarty = StMarksSmarty::getSmarty();
128
+    $smarty->addTemplateDir(__DIR__ . '/templates', 'starter-canvas-api-via-lti');
129
+    $smarty->setFramed(true);
130 130
 }
131 131
 
132 132
 /* initialization that needs to happen for interactive and CLI scripts */
133 133
 try {
134
-	/* initialize global variables */
135
-	$secrets = initSecrets();
136
-	$sql = initMySql();
137
-	$metadata = initAppMetadata();
134
+    /* initialize global variables */
135
+    $secrets = initSecrets();
136
+    $sql = initMySql();
137
+    $metadata = initAppMetadata();
138 138
 } catch (CanvasAPIviaLTI_Exception $e) {
139
-	if (php_sapi_name() == 'cli') {
140
-		echo 'Initialization Failure [' . $e->getCode() . ']' . PHP_EOL . $e->getMessage() . PHP_EOL;
141
-		exit;
142
-	} else {
143
-		$smarty->addMessage(
144
-			'Initialization Failure [' . $e->getCode() . ']',
145
-			$e->getMessage(),
146
-			NotificationMessage::ERROR
147
-		);
148
-		$smarty->display();
149
-		exit;
150
-	}
139
+    if (php_sapi_name() == 'cli') {
140
+        echo 'Initialization Failure [' . $e->getCode() . ']' . PHP_EOL . $e->getMessage() . PHP_EOL;
141
+        exit;
142
+    } else {
143
+        $smarty->addMessage(
144
+            'Initialization Failure [' . $e->getCode() . ']',
145
+            $e->getMessage(),
146
+            NotificationMessage::ERROR
147
+        );
148
+        $smarty->display();
149
+        exit;
150
+    }
151 151
 }
152 152
 
153 153
 /* interactive initialization only */
154 154
 if ($ready && php_sapi_name() != 'cli') {
155 155
 
156
-	/* allow web apps to use common.inc.php without LTI authentication */
157
-	if (!defined('IGNORE_LTI')) {
158
-
159
-		try {
160
-			if (midLaunch()) {
161
-				$ready = false;
162
-			} elseif (isset($_SESSION['toolProvider'])) {
163
-				$toolProvider = $_SESSION['toolProvider'];
164
-			} else {
165
-				throw new CanvasAPIviaLTI_Exception(
166
-					'The LTI launch request is missing',
167
-					CanvasAPIviaLTI_Exception::LAUNCH_REQUEST
168
-				);
169
-			}
170
-
171
-		} catch (CanvasAPIviaLTI_Exception $e) {
172
-			$ready = false;
173
-		}
174
-	}
175
-
176
-	if ($ready) {
177
-		$smarty->addStylesheet($metadata['APP_URL'] . '/css/canvas-api-via-lti.css', 'starter-canvas-api-via-lti');
178
-		$smarty->addStylesheet($metadata['APP_URL'] . '/css/app.css');
179
-
180
-		if (!midLaunch() || !defined('IGNORE_LTI')) {
181
-			require_once(__DIR__ . '/common-app.inc.php');
182
-		}
183
-	}
156
+    /* allow web apps to use common.inc.php without LTI authentication */
157
+    if (!defined('IGNORE_LTI')) {
158
+
159
+        try {
160
+            if (midLaunch()) {
161
+                $ready = false;
162
+            } elseif (isset($_SESSION['toolProvider'])) {
163
+                $toolProvider = $_SESSION['toolProvider'];
164
+            } else {
165
+                throw new CanvasAPIviaLTI_Exception(
166
+                    'The LTI launch request is missing',
167
+                    CanvasAPIviaLTI_Exception::LAUNCH_REQUEST
168
+                );
169
+            }
170
+
171
+        } catch (CanvasAPIviaLTI_Exception $e) {
172
+            $ready = false;
173
+        }
174
+    }
175
+
176
+    if ($ready) {
177
+        $smarty->addStylesheet($metadata['APP_URL'] . '/css/canvas-api-via-lti.css', 'starter-canvas-api-via-lti');
178
+        $smarty->addStylesheet($metadata['APP_URL'] . '/css/app.css');
179
+
180
+        if (!midLaunch() || !defined('IGNORE_LTI')) {
181
+            require_once(__DIR__ . '/common-app.inc.php');
182
+        }
183
+    }
184 184
 } elseif (php_sapi_name() == 'cli') {
185
-	require_once(__DIR__ . '/common-app.inc.php');
185
+    require_once(__DIR__ . '/common-app.inc.php');
186 186
 }
187 187
 
188 188
 
Please login to merge, or discard this patch.
admin/install-app.inc.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@
 block discarded – undo
29 29
 $metadata['USER_NAVIGATION_LINK_TEXT'] = '@ACCOUNT_NAVIGATION_LINK_TEXT';
30 30
 
31 31
 $smarty->addMessage(
32
-	'App metadata updated',
33
-	'Application metadata has been updated to create config.xml',
34
-	NotificationMessage::GOOD
32
+    'App metadata updated',
33
+    'Application metadata has been updated to create config.xml',
34
+    NotificationMessage::GOOD
35 35
 );
36 36
 
37 37
 ?>
Please login to merge, or discard this patch.