Difference between revisions of "Module 2"

From CSE330 Wiki
Jump to navigationJump to search
 
(147 intermediate revisions by 11 users not shown)
Line 1: Line 1:
In Module 2, you will learn about HTML, CSS, and PHP.
+
__NOTOC__
 +
Module 2 introduces you to Linux, a command-line environment, the Apache web server, and PHP.  You will create and configure your own cloud instance, install Apache and related software, and then form groups to make a simple file sharing site.
  
This article contains your assignments for Module 2.
+
<span style="font-size:1.3em; line-height:1.2em; color:blue;">'''DO NOT WAIT UNTIL THE LAST MINUTE TO START ON THIS (or any) MODULE!'''  The most common reason students perform poorly in this class is procrastination.  You have been warned.</span>
  
<span style="font-size:1.2em; line-height:1.2em;">'''DO NOT WAIT UNTIL THE LAST MINUTE TO START ON THIS (or any) MODULE!''' The most common reason students perform poorly in this class is due to procrastination. You have been warned.</span>
+
== Using the Wiki ==
 +
{{RequiredInstructions|content=
 +
Text enclosed by <syntaxhighlight lang="bash" inline><</syntaxhighlight> and <syntaxhighlight lang="bash" inline>></syntaxhighlight> should be replaced by content unique to you.
 +
 
 +
'''Example'''
 +
 
 +
<source lang="bash">
 +
$ sudo useradd -r -m -c "<My Full Name>" <usernameHere>
 +
</source>
 +
becomes
 +
<source lang="bash">
 +
$ sudo useradd -r -m -c "Zach Cohn" zcohn
 +
</source>
 +
}}
 +
 
 +
== Reading ==
 +
 
 +
The following articles on the online class wiki textbook contain information that will help you complete the assignments.
 +
 
 +
''To jump right into setting up your EC2 Instance, Begin with [[SSH]]''
 +
 
 +
* [[Linux]]
 +
* [[Bash]]
 +
* [[Amazon Web Services]]
 +
* [[SSH]]
 +
* [[Apache]]
 +
* [[PHP]]
 +
* [[Workflow]]
 +
* [[VS Code]]
 +
* [[Web Application Security, Part 1]]
 +
* [[FAQ - Mod 2]]
  
 
== Individual Assignments ==
 
== Individual Assignments ==
  
=== Learning HTML and CSS ===
+
{{RequiredInstructions|content=
 +
 
 +
<span style="color:red">There are a lot of wiki pages that you need to read in order to complete the individual portion of Module 2.  The wiki pages contain an assortment of required steps, optional steps, and information.  To make things easier, we have highlighted the ''required steps'' with a red bar, like you see on the left of this message.  Do not skip anything marked with a red bar, or else you will not have a perfectly configured instance.</span>
 +
 
 +
}}
 +
 
 +
=== Learn About Linux ===
 +
 
 +
Linux is an open-source operating system based on UNIX. Linux is highly versatile and is used in a wide range of applications.
 +
 
 +
If you are not a Linux guru, read the Linux guide to get started: [[Linux]]
 +
 
 +
=== Windows Users Only: Enable Windows Subsystem for Linux (WSL) or Install Cygwin ===
 +
 
 +
 
 +
You will need WSL or Cygwin in order to log into and configure your EC2 instance. Cygwin is already installed on the CEC machines. If you're using Windows 10, you can use WSL, which is an officially-supported way of accessing a Linux terminal on Windows. If not, you'll have to use Cygwin. Instructions for installing either on your personal machine are located in [[Workflow#Cygwin|the Workflow guide]].
 +
 
 +
Mac OS X users should located the "Terminal" application, which is installed by default; you will need this in the coming steps.
  
You need to '''become familiar with HTML and CSS'''.  Read the HTML and CSS guide to get started: [[HTML and CSS]]
+
=== Create an AWS EC2 Instance ===
  
=== Installing PHP ===
+
Once you understand [[Linux]], you need to set up your Amazon EC2 Instance.  Use the AWS article to guide you through the process: [[Amazon Web Services]]
 +
 
 +
=== Configure SSH ===
 +
 
 +
Follow the instructions in [[SSH#SSH Configuration|the SSH guide]] to do the following:
 +
 
 +
# Create your own SSH key pair
 +
# Log in as the default user to your EC2 instance
 +
# Create a new user
 +
# Give the new user your SSH public key
 +
 
 +
From now on, when you need to log into your EC2 instance as an administrator, just pop up a terminal and run:
 +
 
 +
 
 +
$ ssh <your-instance-username>@<ec2-xx-xx-xx-xx.compute-1.amazonaws.com>
 +
 
 +
 
 +
 
 +
To save from typing this command in every time you want to access your server, you can set an '''alias''' in your terminal.
 +
 
 +
In the '''Mac''' terminal, vim ~/.zshrc and input the following command:
 +
$ alias aws='ssh <your-instance-username>@<ec2-xx-xx-xx-xx.compute-1.amazonaws.com>'
 +
Now, whenever you type aws in your terminal, it will type your ssh command.
 +
 
 +
In '''Cygwin''', vim ~/.bash_profile and input the following:
 +
export aws="ssh <your-instance-username>@<ec2-xx-xx-xx-xx.compute-1.amazonaws.com>"
 +
And you run this command by typing '''$aws'''
 +
Also note that you may have to restart your terminal for this to take effect, or put the command in your ~/.bashrc file
 +
 
 +
=== Install Essential Packages ===
 +
 
 +
Recall that software installation in Linux instances is usually handled through a package manager, like '''yum'''.  For more information, refer to [[Linux#Repository-Based Package Managers|the Linux guide]].
 +
 
 +
To make sure everything is working properly, '''install your first package(s) according to the ''Essential Packages'' subsection in the Linux guide.'''
 +
 
 +
=== Set the Timezone ===
 +
 
 +
'''Set your server to use US Central time (America/Chicago).'''  Instructions are in the Linux guide: [[Linux#Synchronizing Date and Time]]
 +
 
 +
=== Set Up the Apache Web Server ===
 +
 
 +
You need to '''install the Apache web server on your EC2 instance'''.  Refer to [[Apache|the Apache guide]].
 +
 
 +
In order for your web server to be accessible, you need to '''open up Port 80 on your EC2 instance'''.  Instructions are in the AWS guide: [[Amazon Web Services#Enabling Web Access to your EC2 Instance]]
 +
 
 +
'''Enable the UserDir module in Apache.'''  Instructions are in the Apache guide: [[Apache#The UserDir Module]]
 +
 
 +
=== Install PHP ===
  
 
You need to '''install PHP on your EC2 server'''.  Instructions are at the top of the PHP guide: [[PHP]]
 
You need to '''install PHP on your EC2 server'''.  Instructions are at the top of the PHP guide: [[PHP]]
Line 17: Line 112:
 
You need to '''configure PHP to show errors'''.  Instructions are immediately below installation in the PHP guide.
 
You need to '''configure PHP to show errors'''.  Instructions are immediately below installation in the PHP guide.
  
=== Learning the PHP Language ===
+
=== Learn about the PHP Language ===
  
 
Before you can continue, you will need to make yourself acquainted with PHP language components.  Read the PHP guide for an overview: [[PHP#PHP Language Components]]
 
Before you can continue, you will need to make yourself acquainted with PHP language components.  Read the PHP guide for an overview: [[PHP#PHP Language Components]]
  
=== Calculator 1 ===
+
=== Set Up your Workspace ===
 +
 
 +
You are now ready to set up the workspace that you will be using for the rest of the semester.  Follow the instructions in [[Workflow]] to:
 +
 
 +
# Make an account on GitHub
 +
# Setup a repo using GitHub Classroom
 +
# Clone your CSE 330 repo from GitHub
 +
# Install a text editor such as '''VSCode''' to write your assignments with
 +
# Either install an FTP client, or use SFTP through command line, to transfer files from your local machine to your instance
 +
 
 +
=== Calculator ===
  
'''Make a calculator that uses PHP to multiply two variables provided in the URL and displays the result on a page.'''
+
'''Make a calculator using PHP and an HTML form.'''  The form should have two number inputs.  The form should submit a GET request either back to the same page or to a different results page.  The calculator should support addition, subtraction, multiplication, and division by means of a radio button group on the page. (Consider edge cases!)
  
=== Calculator 2 ===
+
=== Git Tutorial ===
  
'''Make a second calculator.  This one should have an HTML form for the two inputs.'''  It can either POST back to the same page, or to a different result page. In addition to multiplication, this page should support addition, subtraction, and division, by means of a radio button group on the page.
+
Complete all of the levels of the Main and Remote sections of [https://learngitbranching.js.org/ this Git tutorial]. After you finish the tutorial, take two screenshots showing the completion of all of the levels of the Main and Remote sections. Place these two screenshots in your Module 2 Individual repo.
  
 
== Group Project ==
 
== Group Project ==
  
You will work in pairs on this project.
+
You will work in pairs (that means you and one other person) on this project.
  
'''Important Reminder:''' frequently commit your work to your subversion repository as a backup!
+
<span style="font-size:1.3em; line-height:1.2em; color:blue;">In this module, and all future modules, the group portion builds off of material you learn in the individual portion.  You should therefore complete the individual portions prior to working on the group portions.  (Trust us: it will make your life easier!)</span>
  
=== Simple File Management Site ===
+
'''Important Reminder:''' frequently commit your work to your repository as a backup!
  
You will be making a simple file management site that supports uploading, viewing, and deleting files associated with various usernames.  Details:
+
=== Simple File Sharing Site ===
  
* You should have a file named '''users.txt''' stored in a secure place on your filesystem.  It should have one username per line.
+
You will be making a simple file sharing site that supports uploading, viewing, and deleting files associated with various users.  Details:
* Users need to specify their username before they can sign into your site.  You should check to see if their username is present in '''users.txt'''.  (Passwords add an extra layer of complexity that we will cover in a later module.)
+
 
* Use PHP Session variables to keep track of the user who is logged in.
+
* You should have a file named '''users.txt''' stored in a secure place on your filesystem.  It should have at least three usernames, with one username per line.
* Once in the system, you will present the available files for that user. The user then can delete these files, display/open them, or upload new files.
+
*: Passwords add an extra layer of complexity (encryption) that we will cover in Module 3.  You will not earn credit for implementing passwords as your creative portion for this module.
* A user should be able to see only his/her own files.
+
* Users of the file sharing site should be able to enter their username and then log in.
* When a user logs out, all files should be inaccessible until logging back in.
+
*: You may implement logins using session variables, or you may implement them using a GET parameter that is passed between pages. You will need to always use sessions starting in Module 3.
* You need to support at least 3 different users.
+
* Users should see a list of all files associated with their username after the log in.
** Registering new users is NOT necessary (although you may do so for part of the creative portion)
+
* Users should be able to view, upload, and delete files associated with their username.
* The url should NOT reveal internal file structure (including file names, so don't just link to the actual file on the web page!)
+
* The URI should NOT reveal the internal file structure of your web site.
 
** Example of what not to do:  http://www.example.com/download.php?file=/home/paul/file.txt
 
** Example of what not to do:  http://www.example.com/download.php?file=/home/paul/file.txt
 
** Another bad example:  http://www.example.com/~user/file.txt
 
** Another bad example:  http://www.example.com/~user/file.txt
 +
** Good example: http://www.example.com/view.php?user=music&name=file.txt
 
*: In general, don't reveal any internal information about the site.
 
*: In general, don't reveal any internal information about the site.
* Food for thought: Given that Apache processes (with the exception of the main process) do not run as root, but rather as the user apache, how can you allow both your user account and the php scripts to read and write the necessary files?
+
*: '''Food for thought:''' Given that Apache processes (with the exception of the main process) do not run as root, but rather as the user apache, how can you allow both your user account and the php scripts to read and write the  
* Creative portion: add an extra function to the site.
+
*:necessary files?
** It must be non-trivial, and involve learning outside the instructions provided in the class materials
+
*:: ''Hint:'' You shouldn't be storing the user-uploaded files in public_html (that is only the place for your own web-page files),
** This idea needs to be approved by the TAs/Professor. Discuss it with at least one TA or the professor before proceeding.
+
*::''Hint number 2:''  you will need to use chown to change permissions to let user apache have permissions on the user-files (that '''are not''' in the public_html folder). If you don't know what this does or how to do this, look at the [[Apache]] page
 +
* You should customize your file sharing site by implementing an additional feature or two as part of the '''creative portion'''.
  
 
You will probably find the PHP guide on this wiki to be helpful: [[PHP#Other PHP Tips]]
 
You will probably find the PHP guide on this wiki to be helpful: [[PHP#Other PHP Tips]]
  
=== Web Security ===
+
=== Web Security and Validation ===
  
'''Your project needs to demonstrate that thought was put into web security.''' For more information, see this week's Web Application Security guide: [[Web Application Security, Part 1]]
+
Your project needs to demonstrate that thought was put into web security and best practice.  For more information, see this week's Web Application Security guide: [[Web Application Security, Part 1]]
  
In particular, '''your file upload application should be CSRF-safe'''.  That is, '''you should pass tokens when uploading and deleting files''' in order to prevent request forgeries.
+
In particular:
  
== Tips on Editing Files ==
+
* '''Your application needs to follow the conventions of FIEO (Filter Input and Escape Output)'''.  Things you should filter include file names, usernames, and so on.
 +
* '''Your project must pass the W3C Validator with no errors or warnings'''.  For more information, see the HTML and CSS guide: [[HTML and CSS#Validation]]
  
You have several choices when it somes down to actually editing files on your web site.
+
== Grading ==
  
* You can use a command-line text editor, like '''vi''', '''emacs''', or '''nano'''
+
We will be grading the following aspects of your work.  There are 120 points total.
* You can use a GUI text editor, like Notepad++
 
* You can use a full GUI IDE, like Eclipse
 
  
The choice is really what you prefer.  Using the GUI certainly has advantages over a command-line interface, but it's sometimes faster to edit files directly on your server.  Either way, you should frequently commit changes to your repository.
 
  
If you use an IDE, you should consider using the Aptana Studio plugin for Eclipse.  Aptana Studio gives you tools for developing in HTML, CSS, JavaScript, and PHP.  To install it in Eclipse:
 
  
# In Eclipse, go to '''Install New Software...'''
+
'''Assignments (including code) must be committed to GitHub by the end of class on the due date. Commit early and often. Failing to commit by the end of class on the due date will result in a 0.  
# Add the following URL: http://update.aptana.com/update/studio/
 
# Load the packages and install Aptana Studio.
 
# Restart Eclipse.
 
# In the Aptana Studio welcome screen, go to Plugins
 
# Install the Aptana Studio PHP plugin
 
# Restart Eclipse again.
 
  
If you don't want to use Eclipse, Notepad++ is a nice choice.  You may want to download it and save it to your H: drive. http://notepad-plus-plus.org/
+
_____________
  
'''Note:''' Remember that you can use a SSH filesystem client to make local files automatically update on your serverFore more information, see [[Web Server Configuration#SSHFS|the Web Server Configuration guide]] from Module 1.
+
# '''Cloud Instance and Web Server (30 Points):'''
 +
#* You can SSH into your instance using your own custom username and SSH key. Put a screenshot in your repository of your terminal SSH-ing into your instance (15 points)
 +
#* Your custom username is able to perform SUDO commands. Put a screenshot in your repository of you successfully executing a command with sudo (5 points)
 +
#* The time zone is correct on your instance. Put a screenshot in your repository of the results of the `date` command (5 points)
 +
#* The UserDir Apache module is working. Place a file in /home/<username>/public_html and link to the file in your README.md (5 points)
 +
# '''PHP Calculator (15 Points):'''
 +
#* The calculator is able to perform all four functions with floating point numbers (2 points each, 8 points in total)
 +
#* Each function is given as a radio button choice (4 points)
 +
#* The calculator page passes the W3C HTML validator (3 points)
 +
#* '''''Make sure you have a README.md file in your individual repo with the link to your calculator on your instance.''''' See the Creative Portion section for more information about .md files.
 +
# '''Git Tutorial (20 Points):'''
 +
#* Two screenshots showing the completion of all of the levels of the Main and Remote sections placed in your individual assignment repository.
 +
# '''File Sharing Site (40 Points):'''
 +
#* '''''File Management (25 Points):'''''
 +
#** Users should not be able to see any files until they enter a username and log in (4 points)
 +
#**: ''Remember that users.txt should be stored in a secure location on your filesystem.  That is, '''you should not be able to type any URL into your browser and see the raw users.txt file!'''''
 +
#** Users can see a list of all files they have uploaded (4 points)
 +
#** Users can open files they have previously uploaded (5 points)
 +
#**: ''Note: Users should be able to open not only plain text files but also other file formats: images, spreadsheets, etc.''
 +
#** Users can upload files (4 points)
 +
#**: ''Note: Like users.txt, uploaded files should be stored in a secure location on your filesystem.  That is, '''do not keep your uploads directory underneath a directory served by Apache!'''''
 +
#** Users can delete filesIf a file is "deleted", it should actually be removed from the filesystem (4 points)
 +
#** The directory structure is hidden. Users should not be able to access or view files by manipulating a URL. (2 points)
 +
#** Users can log out (2 points)
 +
#**: ''Note: If using session variables, you must ''actually'' log out the user by destroying their session; i.e., don't just redirect them to the login screen.''
 +
#* '''''Best Practices (10 Points):'''''
 +
#** Code is well formatted and easy to read, with proper commenting (4 points)
 +
#** The site follows the FIEO philosophy (3 points)
 +
#** All pages pass the W3C validator (3 points)
 +
#* '''''Usability (5 Points):'''''
 +
#** Site is intuitive to use and navigate (4 points)
 +
#** Site is visually appealing (1 point)
 +
# '''Creative Portion (15 Points)''' (see below)
 +
#* '''''Make sure you have a README.md file in your group repo with the following:'''''
 +
#** An .md file is a plain text file called a markdown file  [https://guides.github.com/features/mastering-markdown/ ] . 
 +
#***The contents of your README.md file are shown on your repo, making it easier for us to grade
 +
#*** You may style the page with bolding, hyperlings, images, block quotes and lists
 +
#*** [http://dillinger.io/ This online markdown editor] makes it easy to learn this format 
 +
#** The link to your file sharing site. '''''We need this to grade your work.'''''
 +
#** A brief description of what you did for your creative portion
 +
#** Any additional login details needed for the TA
  
== Grading ==
+
=== Creative Portion ===
 +
 
 +
This module and all future modules will require that you invest some time into creating additional features for your group project.  Plan to invest at the very least 60 minutes of your time into the creative portion.  In the above rubric, viewing files is worth five and uploading is worth four. The creative portion is worth fifteen points; it should be a very sizable part of your project.
  
<span style="font-size:2em; line-height:2em;">'''Due Date: _____ (both individual and group)'''</span>
+
* The creative portion is an opportunity for you to learn the material of your own interest.
 +
* You will not earn credit for a creative-portion feature that simply rehashes something you've already done in a previous module.
  
{|
+
If you need ideas for a creative portion, or if you want to know whether or not your creative portion idea is "hard enough", ask a TA.
!Assignment
 
!Points
 
|-
 
|Birthday Card
 
|1
 
|-
 
|Calculator 1
 
|1
 
|-
 
|Calculator 2
 
|2
 
|-
 
!colspan="2"|Group Portion:
 
|-
 
|Multi-User Login
 
|1
 
|-
 
|Logout Mechanism
 
|1
 
|-
 
|Can't Access Other Users' Files
 
|1
 
|-
 
|Can't See File/Directory Structure
 
|1
 
|-
 
|Can Upload New Files
 
|1
 
|-
 
|Can View/Download Files
 
|1
 
|-
 
|Can Delete Files
 
|1
 
|-
 
|Cross-Site Request Forgery Safe
 
|1
 
|-
 
|Creative Portion
 
|2
 
|}
 
  
 
[[Category:Module 2]]
 
[[Category:Module 2]]
 
[[Category:Modules]]
 
[[Category:Modules]]

Latest revision as of 06:14, 3 September 2024

Module 2 introduces you to Linux, a command-line environment, the Apache web server, and PHP. You will create and configure your own cloud instance, install Apache and related software, and then form groups to make a simple file sharing site.

DO NOT WAIT UNTIL THE LAST MINUTE TO START ON THIS (or any) MODULE! The most common reason students perform poorly in this class is procrastination. You have been warned.

Using the Wiki

Text enclosed by < and > should be replaced by content unique to you.

Example

$ sudo useradd -r -m -c "<My Full Name>" <usernameHere>

becomes

$ sudo useradd -r -m -c "Zach Cohn" zcohn

Reading

The following articles on the online class wiki textbook contain information that will help you complete the assignments.

To jump right into setting up your EC2 Instance, Begin with SSH

Individual Assignments

There are a lot of wiki pages that you need to read in order to complete the individual portion of Module 2. The wiki pages contain an assortment of required steps, optional steps, and information. To make things easier, we have highlighted the required steps with a red bar, like you see on the left of this message. Do not skip anything marked with a red bar, or else you will not have a perfectly configured instance.

Learn About Linux

Linux is an open-source operating system based on UNIX. Linux is highly versatile and is used in a wide range of applications.

If you are not a Linux guru, read the Linux guide to get started: Linux

Windows Users Only: Enable Windows Subsystem for Linux (WSL) or Install Cygwin

You will need WSL or Cygwin in order to log into and configure your EC2 instance. Cygwin is already installed on the CEC machines. If you're using Windows 10, you can use WSL, which is an officially-supported way of accessing a Linux terminal on Windows. If not, you'll have to use Cygwin. Instructions for installing either on your personal machine are located in the Workflow guide.

Mac OS X users should located the "Terminal" application, which is installed by default; you will need this in the coming steps.

Create an AWS EC2 Instance

Once you understand Linux, you need to set up your Amazon EC2 Instance. Use the AWS article to guide you through the process: Amazon Web Services

Configure SSH

Follow the instructions in the SSH guide to do the following:

  1. Create your own SSH key pair
  2. Log in as the default user to your EC2 instance
  3. Create a new user
  4. Give the new user your SSH public key

From now on, when you need to log into your EC2 instance as an administrator, just pop up a terminal and run:


$ ssh <your-instance-username>@<ec2-xx-xx-xx-xx.compute-1.amazonaws.com>


To save from typing this command in every time you want to access your server, you can set an alias in your terminal.

In the Mac terminal, vim ~/.zshrc and input the following command:

$ alias aws='ssh <your-instance-username>@<ec2-xx-xx-xx-xx.compute-1.amazonaws.com>'

Now, whenever you type aws in your terminal, it will type your ssh command.

In Cygwin, vim ~/.bash_profile and input the following:

export aws="ssh <your-instance-username>@<ec2-xx-xx-xx-xx.compute-1.amazonaws.com>"

And you run this command by typing $aws Also note that you may have to restart your terminal for this to take effect, or put the command in your ~/.bashrc file

Install Essential Packages

Recall that software installation in Linux instances is usually handled through a package manager, like yum. For more information, refer to the Linux guide.

To make sure everything is working properly, install your first package(s) according to the Essential Packages subsection in the Linux guide.

Set the Timezone

Set your server to use US Central time (America/Chicago). Instructions are in the Linux guide: Linux#Synchronizing Date and Time

Set Up the Apache Web Server

You need to install the Apache web server on your EC2 instance. Refer to the Apache guide.

In order for your web server to be accessible, you need to open up Port 80 on your EC2 instance. Instructions are in the AWS guide: Amazon Web Services#Enabling Web Access to your EC2 Instance

Enable the UserDir module in Apache. Instructions are in the Apache guide: Apache#The UserDir Module

Install PHP

You need to install PHP on your EC2 server. Instructions are at the top of the PHP guide: PHP

You need to configure PHP to show errors. Instructions are immediately below installation in the PHP guide.

Learn about the PHP Language

Before you can continue, you will need to make yourself acquainted with PHP language components. Read the PHP guide for an overview: PHP#PHP Language Components

Set Up your Workspace

You are now ready to set up the workspace that you will be using for the rest of the semester. Follow the instructions in Workflow to:

  1. Make an account on GitHub
  2. Setup a repo using GitHub Classroom
  3. Clone your CSE 330 repo from GitHub
  4. Install a text editor such as VSCode to write your assignments with
  5. Either install an FTP client, or use SFTP through command line, to transfer files from your local machine to your instance

Calculator

Make a calculator using PHP and an HTML form. The form should have two number inputs. The form should submit a GET request either back to the same page or to a different results page. The calculator should support addition, subtraction, multiplication, and division by means of a radio button group on the page. (Consider edge cases!)

Git Tutorial

Complete all of the levels of the Main and Remote sections of this Git tutorial. After you finish the tutorial, take two screenshots showing the completion of all of the levels of the Main and Remote sections. Place these two screenshots in your Module 2 Individual repo.

Group Project

You will work in pairs (that means you and one other person) on this project.

In this module, and all future modules, the group portion builds off of material you learn in the individual portion. You should therefore complete the individual portions prior to working on the group portions. (Trust us: it will make your life easier!)

Important Reminder: frequently commit your work to your repository as a backup!

Simple File Sharing Site

You will be making a simple file sharing site that supports uploading, viewing, and deleting files associated with various users. Details:

  • You should have a file named users.txt stored in a secure place on your filesystem. It should have at least three usernames, with one username per line.
    Passwords add an extra layer of complexity (encryption) that we will cover in Module 3. You will not earn credit for implementing passwords as your creative portion for this module.
  • Users of the file sharing site should be able to enter their username and then log in.
    You may implement logins using session variables, or you may implement them using a GET parameter that is passed between pages. You will need to always use sessions starting in Module 3.
  • Users should see a list of all files associated with their username after the log in.
  • Users should be able to view, upload, and delete files associated with their username.
  • The URI should NOT reveal the internal file structure of your web site.
    In general, don't reveal any internal information about the site.
    Food for thought: Given that Apache processes (with the exception of the main process) do not run as root, but rather as the user apache, how can you allow both your user account and the php scripts to read and write the
    necessary files?
    Hint: You shouldn't be storing the user-uploaded files in public_html (that is only the place for your own web-page files),
    Hint number 2: you will need to use chown to change permissions to let user apache have permissions on the user-files (that are not in the public_html folder). If you don't know what this does or how to do this, look at the Apache page
  • You should customize your file sharing site by implementing an additional feature or two as part of the creative portion.

You will probably find the PHP guide on this wiki to be helpful: PHP#Other PHP Tips

Web Security and Validation

Your project needs to demonstrate that thought was put into web security and best practice. For more information, see this week's Web Application Security guide: Web Application Security, Part 1

In particular:

  • Your application needs to follow the conventions of FIEO (Filter Input and Escape Output). Things you should filter include file names, usernames, and so on.
  • Your project must pass the W3C Validator with no errors or warnings. For more information, see the HTML and CSS guide: HTML and CSS#Validation

Grading

We will be grading the following aspects of your work. There are 120 points total.


Assignments (including code) must be committed to GitHub by the end of class on the due date. Commit early and often. Failing to commit by the end of class on the due date will result in a 0.

_____________

  1. Cloud Instance and Web Server (30 Points):
    • You can SSH into your instance using your own custom username and SSH key. Put a screenshot in your repository of your terminal SSH-ing into your instance (15 points)
    • Your custom username is able to perform SUDO commands. Put a screenshot in your repository of you successfully executing a command with sudo (5 points)
    • The time zone is correct on your instance. Put a screenshot in your repository of the results of the `date` command (5 points)
    • The UserDir Apache module is working. Place a file in /home/<username>/public_html and link to the file in your README.md (5 points)
  2. PHP Calculator (15 Points):
    • The calculator is able to perform all four functions with floating point numbers (2 points each, 8 points in total)
    • Each function is given as a radio button choice (4 points)
    • The calculator page passes the W3C HTML validator (3 points)
    • Make sure you have a README.md file in your individual repo with the link to your calculator on your instance. See the Creative Portion section for more information about .md files.
  3. Git Tutorial (20 Points):
    • Two screenshots showing the completion of all of the levels of the Main and Remote sections placed in your individual assignment repository.
  4. File Sharing Site (40 Points):
    • File Management (25 Points):
      • Users should not be able to see any files until they enter a username and log in (4 points)
        Remember that users.txt should be stored in a secure location on your filesystem. That is, you should not be able to type any URL into your browser and see the raw users.txt file!
      • Users can see a list of all files they have uploaded (4 points)
      • Users can open files they have previously uploaded (5 points)
        Note: Users should be able to open not only plain text files but also other file formats: images, spreadsheets, etc.
      • Users can upload files (4 points)
        Note: Like users.txt, uploaded files should be stored in a secure location on your filesystem. That is, do not keep your uploads directory underneath a directory served by Apache!
      • Users can delete files. If a file is "deleted", it should actually be removed from the filesystem (4 points)
      • The directory structure is hidden. Users should not be able to access or view files by manipulating a URL. (2 points)
      • Users can log out (2 points)
        Note: If using session variables, you must actually log out the user by destroying their session; i.e., don't just redirect them to the login screen.
    • Best Practices (10 Points):
      • Code is well formatted and easy to read, with proper commenting (4 points)
      • The site follows the FIEO philosophy (3 points)
      • All pages pass the W3C validator (3 points)
    • Usability (5 Points):
      • Site is intuitive to use and navigate (4 points)
      • Site is visually appealing (1 point)
  5. Creative Portion (15 Points) (see below)
    • Make sure you have a README.md file in your group repo with the following:
      • An .md file is a plain text file called a markdown file [1] .
        • The contents of your README.md file are shown on your repo, making it easier for us to grade
        • You may style the page with bolding, hyperlings, images, block quotes and lists
        • This online markdown editor makes it easy to learn this format
      • The link to your file sharing site. We need this to grade your work.
      • A brief description of what you did for your creative portion
      • Any additional login details needed for the TA

Creative Portion

This module and all future modules will require that you invest some time into creating additional features for your group project. Plan to invest at the very least 60 minutes of your time into the creative portion. In the above rubric, viewing files is worth five and uploading is worth four. The creative portion is worth fifteen points; it should be a very sizable part of your project.

  • The creative portion is an opportunity for you to learn the material of your own interest.
  • You will not earn credit for a creative-portion feature that simply rehashes something you've already done in a previous module.

If you need ideas for a creative portion, or if you want to know whether or not your creative portion idea is "hard enough", ask a TA.