- Adam Melvin
- Liam Osler
- Rachel Woodside
- Nova Scotia Legal News is a one-stop shop for court decisions and legal news articles. Recent rulings are pulled from the courts of Nova Scotia and presented to the public in a user friendly manner. We also host articles regarding Nova Scotia law, written by verified journalists and legal professionals.
- Our website also allows users to interact with the law by creating accounts, commenting on decisions/articles, and being able to follow other users.
- On our frontpage we present some recent rulings/articles, as well as a search bar to look for specific articles. We also have an advance search feature that lets users search articles by title, author or contents.
-
Milestone 1: Adam, Liam and Rachel all participated in brainstorming website goals and structure. Adam, Liam and Rachel each wrote up 2-3 user stories. Liam formatted the final planning document and generated prototype images of the webpage.
-
Milestone 2: Adam, Liam and Rachel all participated in the conceptual design of the website. Rachel compiled the design plan into the wireframes and annotated them, with feedback from Adam and Liam.
-
Milestone 3: Liam designed and set up the database and wrote the skeleton code for the website. Rachel implemented the contact form and comment posting features. Liam implemented the user login and user registration. Adam designed and wrote about.php and footer.php. Liam, Rachel and Adam all contributed to troubleshooting and polishing the website.
- Aggregate rulings from the Courts of Nova Scotia, present them in an accessible and easy to read fashion for users from a broad range of demographics.
- Index page "newsfeed" that aggregates sources such as the Courts of Nova Scotia's RSS Feed, CanLII's Nova Scotia RSS Feeds and other local news outlets for stories relevant to the court rulings and legislation in Nova Scotia.
- Means for users to add comments and/or reactions to the content on the Index page.
- Means for users to "follow" a certain topic, ruling, user, or other items.
- Provide a forum for discussions about Nova Scotia court rulings, legislation and legal affairs.
-
- Elevated user privileges
- Manages other user accounts
- Manages moderators and users
-
- Moderates discussion boards
- May hide content as deemed appropriate by the terms of acceptable behaviour outlined in the user agreement to terms and conditions.
- Moderates discussion boards
-
- Anyone can register for account
- Must agree to terms and conditions during registration
- User can upload a profile picture that creates their user icon
- Can follow a topic or a ruling
- Has a userpage that displays the user's activity feed
- Items the user has commented on
- Items the user has reacted to
- Activity feed can be set to public/private according to user preference
- Anyone can register for account
-
- Must be verified by the website (akin to Twitter verification)
- User icon shows a verification symbol
- Same features as registered users, but may also publish opinion pieces/articles/announcements
- Must be verified by the website (akin to Twitter verification)
- PHP
- MySQL
- JavaScript
- CSS
- Libraries:
<?php
include "db/db.php";
include "db/functions.php";
session_name('legalnews');
session_start();
//Before proceeding, ensure that the posted values are valid for entry in to database:
$registrationValid = TRUE;
$email = sanitizeData($_POST["email"]);
$resultCount = 0;
if (strlen($email)>0) {
$querySQL = " SELECT `emailAddress`
FROM `users`
WHERE `emailAddress` = '{$email}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$resultCount+=1;
}
}
//If the email address exists:
if($resultCount > 0){
$registrationValid = FALSE;
}
$username = sanitizeData($_POST["username"]);
$resultCount = 0;
if (strlen($username)>0) {
$querySQL = " SELECT userName, userID
FROM users
WHERE `userName` = '{$username}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$resultCount+=1;
}
}
//If the username address exists:
if($resultCount > 0){
$registrationValid = FALSE;
}
//Otherwise let the user register:
if($registrationValid == TRUE){
$password = sanitizeData($_POST["password"]);
$fName = sanitizeData($_POST["fName"]);
$lName = sanitizeData($_POST["lName"]);
$street = sanitizeData($_POST["street"]);
$city = sanitizeData($_POST["city"]);
$zip = sanitizeData($_POST["zip"]);
$querySQL = " INSERT INTO `users` VALUES
(NULL, MD5(UUID()), '{$username}', '{$fName}', '{$lName}', '{$email}', CURRENT_TIMESTAMP, TRUE, TRUE)";
$result = $dbconn->query($querySQL);
$querySQL = " SELECT userName, userID, privateID
FROM users
WHERE `userName` = '{$username}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$_SESSION["userID"] = $current["userID"];
$privateID = $current["privateID"];
$querySQL = " INSERT INTO `userSaltAndPepper` VALUES
('{$privateID}', LEFT(MD5(UUID()), 8), LEFT(MD5(UUID()), 8))
";
$dbconn->query($querySQL);
$querySQL = " SELECT `userSalt`, `userPepper`, `privateID`
FROM userSaltAndPepper
WHERE `privateID` = '{$privateID}'";
$saltresult = $dbconn->query($querySQL);
while ($saltcurrent = $saltresult->fetch_assoc()){
$userSalt = $saltcurrent["userSalt"];
$userPepper = $saltcurrent["userPepper"];
$querySQL = " INSERT INTO `userHashes` VALUES
('{$privateID}', MD5(CONCAT('{$userSalt}', MD5('{$password}'), '{$userPepper}')))
";
$_SESSION["userName"] = $username;
$dbconn->query($querySQL);
$dbconn->close();
}
}
}
header("Location: index.php");
?>
<div class="col-md-6 mb-6">
<label for="validationPhone">Phone Number</label>
<input type="phone" class="form-control" name = "phone" id="validationPhone" placeholder="Phone Number" pattern="^([0-9]{3})-?\s?([0-9]{3})-?\s?([0-9]{4})$" value="" required>
</div>
<?php
$xmlDoc=new DOMDocument();
$x=$xmlDoc->getElementsByTagName('link');
//get the q parameter from URL
$email = sanitizeData($_GET["email"]);
$resultCount = 0;
//If the query is not empty:
if (strlen($email)>0) {
$querySQL = " SELECT `emailAddress`
FROM `users`
WHERE `emailAddress` = '{$email}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$resultCount+=1;
}
}
if($resultCount > 0){
echo "Email is already taken";
}
else{
echo "Email is valid";
}
?>
<?php
$xmlDoc=new DOMDocument();
$x=$xmlDoc->getElementsByTagName('link');
$username = sanitizeData($_GET["username"]);
$resultCount = 0;
if (strlen($username)>0) {
$querySQL = " SELECT userName, userID
FROM users
WHERE `userName` = '{$username}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$resultCount+=1;
}
}
if($resultCount > 0){
echo "Username is already taken";
}
else{
echo "Username is valid";
}
?>
Three tables will be used for the login process, the users table, the userSaltAndPepper table and the userHashes table. The userHashes table contains the
CREATE TABLE users (
userID int AUTO_INCREMENT,
privateID varchar(255),
userName varchar(255),
firstName varchar(255),
lastName varchar(255),
emailAddress varchar(255),
registrationDate datetime,
verificationStatus bool,
profileVisibility bool,
PRIMARY KEY (userID),
INDEX NAME (privateID)
);
CREATE TABLE userSaltAndPepper(
privateID varchar(255),
userSalt varchar(32),
userPepper varchar(32),
PRIMARY KEY (privateID),
FOREIGN KEY (privateID) REFERENCES users(privateID)
);
CREATE TABLE userHashes(
privateID varchar(255),
passwordHash varchar(32),
PRIMARY KEY (privateID),
FOREIGN KEY (privateID) REFERENCES users(privateID)
);
Note: the user has both a public "userID", which is a simple incremental value used for the purposes of posting content on the website, and for following other users. The user also has a "privateID" which is used only for the password related purposes.
Format for insertion is userID (auto incremented so left as null), privateID (randomized string using UUID()), username, first name, last name, email address, time of registration (uses current_timestamp), the user's verification status (true or false), and the user's provile visibility setting (true or false).
INSERT INTO `users` VALUES
(NULL, MD5(UUID()), "Site Administator", "", "", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE),
(NULL, MD5(UUID()), "Art", "Arthur", "Kirkland", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE),
(NULL, MD5(UUID()), "Frank", "Francis", "Rayford", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE),
(NULL, MD5(UUID()), "Henry", "Henry", "Fleming", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE),
(NULL, MD5(UUID()), "JayP", "Jay", "Porter", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE),
(NULL, MD5(UUID()), "DJ", "Dave", "Jameson", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE),
(NULL, MD5(UUID()), "Windy", "Gail", "Packer", "[email protected]", CURRENT_TIMESTAMP, TRUE, TRUE);
Once the test accounts have been added to the database, we can generate random a salt and pepper value for each of the users. In this case I have trimmeda random UUID to 8 characters using LEFT(MD5(UUID()), 8)
-- Create some random fake salt and pepper values for all the users:
INSERT INTO `userSaltAndPepper`(privateID, userSalt, userPepper)
SELECT privateID, LEFT(MD5(UUID()), 8), LEFT(MD5(UUID()), 8)
FROM `users`;
-- Concat the user salt and peppers together with the word "password" then calculate their MD5 checksum and set it to the user's passwordHash:
INSERT INTO `userHashes`(privateID, passwordHash)
SELECT privateID, MD5(CONCAT(userSalt, "password", userPepper))
FROM `userSaltAndPepper`;
<?php
$usernameInput = sanitizeData($_POST["username"]);
$passwordInput = sanitizeData($_POST["password"]);
echo "User Input:";
echo "<br>";
echo($usernameInput);
echo "<br>";
echo($passwordInput);
$querySQL = " SELECT userName, privateID from users
WHERE userName = '{$usernameInput}'";
$result = $dbconn->query($querySQL);
$rowcount = mysqli_num_rows($result);
echo "<br>";
if($rowcount < 1){
echo("Username or Password Incorrect");
}
else{
while ($current = $result->fetch_assoc()){
$privateID = $current["privateID"];
echo "<br>";
echo("Username found, privateID " );
echo "<br>";
echo($current["userName"] . ", " . $privateID );
echo "<br>";
//Get the user's salt and peppers for password spicing:
$querySQL = " SELECT privateID, userSalt, userPepper from userSaltAndPepper
WHERE privateID = '{$privateID}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$userSalt = $current["userSalt"];
$userPepper = $current["userPepper"] ;
echo "<br>";
echo("privateID, userSalt, userPepper" );
echo "<br>";
echo($current["privateID"] . ", " . $current["userSalt"] . ", " . $current["userPepper"] );
echo "<br>";
echo "<br>";
echo("Salted and peppered password input:" );
$saltAndPepperPasswordInput = $userSalt . $passwordInput . $userPepper;
echo "<br>";
echo($saltAndPepperPasswordInput);
echo "<br>";
echo "<br>";
echo("MD5 checksum of salted and peppered input:" );
echo "<br>";
$saltAndPepperPasswordInputChecksum = md5($saltAndPepperPasswordInput);
echo($saltAndPepperPasswordInputChecksum);
//Get the user's password from the database:
$querySQL = " SELECT privateID, passwordHash from userHashes
WHERE privateID = '{$privateID}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
$passwordHash = $current["passwordHash"];
echo "<br>";
echo "<br>";
echo("Stored user hash:" );
echo "<br>";
echo($passwordHash);
}
}
}
echo "<br>";
echo "<br>";
echo("Parity Check:");
echo "<br>";
if($saltAndPepperPasswordInputChecksum == $passwordHash){
echo "Password is correct";
}else{
echo "Username or Password Incorrect";
}
}
?>
- The user's input is displayed (as shown in the figure above, "Art" is the username and "password" is the password)
- The database is queried for the username, and if it is found the username and the user's privateID are displayed. If the username is not found the string "Username or Password Incorrect" is displayed.
- The user salt and pepper table is queried for the privateID, and the privateID, the userSalt and the userPepper are displayed on the screen.
- The user's salt is concatenated to the password input (in this case just the word "password", as above) and the user's pepper, which is written as
$saltAndPepperPasswordInput = $userSalt . $passwordInput . $userPepper;
in the code above. - This salt and peppered password is hashed with MD5
- The userHash database is queried using the username's corresponding privateID and the stored password hash is displayed.
- A parity check is performed. If the checksum of the salted and peppered input matches the stored password hash, "Password is correct" is displayed. If not "Username or Password is Incorrect" is displayed.
<?php
//Sanitize the username and password input:
$usernameInput = sanitizeData($_POST["username"]);
$passwordInput = sanitizeData($_POST["password"]);
//Query the users table for the username
$querySQL = " SELECT userName, userID, privateID from users
WHERE userName = '{$usernameInput}'";
$result = $dbconn->query($querySQL);
$rowcount = mysqli_num_rows($result);
//If the username isn't found no rows will be returned
if($rowcount < 1){
//If no username found then Set the username or password incorrect value to TRUE
$incorrect = TRUE;
}
else{
//Get the first result as the current item:
while ($current = $result->fetch_assoc()){
//Set the userID, userName and privateID to their own variables:
$userID = $current["userID"];
$userName = $current["userName"];
$privateID = $current["privateID"];
//Get the user's salt and peppers for password spicing:
$querySQL = " SELECT privateID, userSalt, userPepper from userSaltAndPepper
WHERE privateID = '{$privateID}'";
$result = $dbconn->query($querySQL);
//Get the first result as the current item:
while ($current = $result->fetch_assoc()){
//Set the user's salt and peppers to their own variables:
$userSalt = $current["userSalt"];
$userPepper = $current["userPepper"] ;
//Conatenate the salt, password input and the pepper together
$saltAndPepperPasswordInput = $userSalt . $passwordInput . $userPepper;
//Get the MD5 checksum of $saltAndPepperPasswordInput and set it to a variable:
$saltAndPepperPasswordInputChecksum = md5($saltAndPepperPasswordInput);
//Get the user's hashed password (with salt and pepper) from the database:
$querySQL = " SELECT privateID, passwordHash from userHashes
WHERE privateID = '{$privateID}'";
$result = $dbconn->query($querySQL);
while ($current = $result->fetch_assoc()){
//Set the user's hashed password to variable:
$passwordHash = $current["passwordHash"];
}
}
}
//Check if the hashed input matches the user's hashed password:
if($saltAndPepperPasswordInputChecksum == $passwordHash){
//If the password is correct, we can set the SESSION userName and userID values:
$_SESSION["userName"] = $userName;
$_SESSION["userID"] = $userID;
//Redirect the user
header("Location: index.php");
}else{
//If password incorrect then Set the username or password incorrect value to TRUE
$incorrect = TRUE;
}
}
if($incorrect){
?>
<!--HTML CODE to enter a different password or username -->
<?php
}
?>
When the user logs in successfully, the text in the login button is replaced with "My Profile" and an option to "Logout" is shown with an open door icon:
- Title: UXPin URL: https://www.uxpin.com/ Use: Developing and annotating wireframes Date Accessed: 09 Nov 2021 Purpose: Developing and annotating wireframes
- Title: W3Schools HTML Input Types URL: https://www.w3schools.com/html/html_form_input_types.asp Date Accessed: 27 Nov 2021 Purpose: Reviewed use of different types of input to generate an advanced search interface
- Title: Forms Bootstrap URL: https://getbootstrap.com/docs/4.1/components/forms/#checkboxes-and-radios Date Accessed: 27 Nov 2021 Purpose: Referred to existing Bootstrap framework styling mechanisms for radio type inputs
- Title: How To Create A Login System In PHP For Beginners | Procedural MySQLi | PHP Tutorial URL: https://youtube.com/watch?v=gCo6JqGMi30&t=0s Date Accessed: 05 Dec 2021 Purpose: Used some concepts such as prepared statements and error checking
- Title: W3Schools PHP Sessions URL: https://www.w3schools.com/php/php_sessions.asp Date Accessed: 07 Dec 2021 Purpose: Review of PHP session variables
- Title: W3Schools PHP MySQL Insert Multiple Records URL: https://www.w3schools.com/php/php_mysql_insert_multiple.asp Date Accessed: 04 Dec 2021 Purpose: Review of SQL INSERT statements
- Title: Magic Pattern - CSS Backgroun Patterns URL: https://www.magicpattern.design/tools/css-backgrounds Date Accessed: 01 Dec 2021 Purpose: Checking out CSS sstyling possibilities
- Title: How To Submit AJAX Forms with JQuery URL: https://www.digitalocean.com/community/tutorials/submitting-ajax-forms-with-jquery Date Accessed: 27 Nov 2021 Purpose: Review AJAX form submission
- Title: Github - LiamOsler/foodfeed URL: https://github.com/LiamOsler/foodfeed Date Accessed: 23 Nov 2021 Purpose: Referencing previous use of registration/login features.
- Title: Github - LiamOsler/Halifax-Housing-Hackathon URL: https://github.com/LiamOsler/Halifax-Housing-Hackathon/tree/master Date Accessed: 27 Nov 2021 Purpose: Referencing user registration features.
- Title: Password Hashing, Salts, Peppers | Explained! URL: https://www.youtube.com/watch?v=--tnZMuoK3E&ab_channel=Seytonic Date Accessed: 27 Nov 2021 Purpose: Reviewing Salt and Pepper hashing.
- Title: Hashing vs Encryption Differences URL: https://www.youtube.com/watch?v=GI790E1JMgw&ab_channel=ProgrammingwithProfessorSluiter Date Accessed: 27 Nov 2021 Purpose: Reviewing password authentication.