Challenges for Angular Auth lesson.
Objective: Implement Angular authentication with Satellizer. Your goal is to have working sign up and log in functionality.
You should be pair programming the entire time you work on these challenges. That means you're using ONE computer at a time, and ONLY the "driver" is allowed to type (you'll switch roles throughout the lab).
-
Whoever is going to be the "driver" first should fork this repo, and clone it into their
develop
folder on their local machine. The "navigator" must close their computer. -
Once you're in your app directory, run
npm install
to install the requirednode_modules
. -
In one Terminal window, run
mongod
, and in another, runnodemon
. -
Navigate to
localhost:3000
in the browser. You should see an empty page and an angry red error message in the Chrome console. -
BEFORE WRITING ANY CODE, open up
models/user.js
,resources/auth.js
, andserver.js
. The driver should go through these files in order and explain what you think each code block and/or function does. -
Now it's the navigator's turn to explain code! Open up
index.hbs
andapp.js
, and go through the same exercise. -
Next, the driver should add a
.env
file to the root directory. Add this line:
TOKEN_SECRET=yoursupersecrettoken
This is the secret your server will use to encode the JWT token for each user. Make sure to restart your Node server after this step.
- Before hooking up the front-end, test your server routes via Postman:
- Send a
GET
request to/api/me
. You should see the message: "Please make sure your request has an Authorization header." - Send a
POST
request to/auth/signup
with a testemail
andpassword
. You should see a token that was generated by the server. - Send a
POST
request to/auth/login
with theemail
andpassword
you just used to create a new user. You should again see a token that was generated by the server.
-
At this point, the "driver" should add the "navigator" as a collaborator on their forked version of the repo. No need to commit anything yet, since you haven't written any code. It's time to switch drivers! The new driver should clone their partner's forked version of the repo into their develop folder. The new navigator must close their computer.
-
The new driver should get setup with
mongod
andnodemon
. You'll also need to create a.env
file with theTOKEN_SECRET
, and restart your Node server. -
Now it's time to implement authentication from the client. First, you need to include Satellizer in your Angular app:
- Add the Satellizer CDN to
index.hbs
. - Add the Satellizer module to your Angular app in
app.js
. - Check that you can navigate between your routes (
/
,/signup
,/login
, and/profile
).
-
Starting on line 35 of
app.js
, start following the instructions in comments to implement authentication with Satellizer. The current driver should implement$scope.isAuthenticated
and$scope.logout
. -
The current driver should add and commit their changes, and push their work up to GitHub. Switch drivers.
-
The new driver should pick up where their partner left off by implementing the functionality outlined in the
AuthCtrl
and theProfileCtrl
. -
At this point, you should be able to sign up a user, log them in, view their profile page, and log them out from the client.
-
It's time to switch drivers again! The current driver should add, commit, and push, and the new driver should pull down the changes.
-
Add a
username
field to the Sign Up form, and add theusername
attribute toUser
model (server-side). Sign up a new user with ausername
. -
On the user profile page, make a form to edit the user's details. The form should initially be hidden, and when the user clicks a button or link to "Edit Profile", the form should show (Hint:
ng-show
). -
When the user submits the form, it should call a function in the
ProfileCtrl
(Hint:ng-submit
). The function should send an$http.put
request to/api/me
. Verify that this works.
-
Switch drivers - you know the drill - add, commit, and push, then the new driver should pull.
-
Create a form on the homepage for the user to add a post (that's right - you're turning your Angular app into a microblog). The form should have input (
post.title
) and textarea (post.content
) fields. Useng-model
to bind the form input values to$scope
. -
Only show the form if there is a
currentUser
logged in. -
Use the
ng-submit
directive to run the functioncreatePost
when the user submits the form. -
createPost
should make an$http.post
request to/api/posts
(which isn't defined yet on the server) with the$scope.post
object. -
The next step is to implement posts on the server. First, create a Mongoose model
Post
(models/post.js
). -
A user should have many posts, so add an attribute to the
User
model calledposts
that references thePost
model:
/*
* models/user.js
*/
var userSchema = new Schema({
...
posts: [{ type: Schema.Types.ObjectId, ref: 'Post' }]
});
- In
server.js
, define two new API routes:
GET /api/posts
should retrieve all the posts from the database.POST /api/posts
should create a new post that belongs to the current user (Hint: Use theauth.ensureAuthenticated
function in the route to find the current user).
- Refresh
localhost:3000
in the browser. Make sure you have a user logged in, and try to create a new post. Check the Chrome developer tools to make sure it's working.
-
Switch drivers one last time.
-
Use
ng-repeat
to display a list of all posts on the homepage. Anyone should be able to see the list of posts, but only logged in users should be able to see the form to create a new post. -
On the user's profile page, display the number of posts the user has written. Hint: You'll need to add
.populate('posts')
to yourGET /api/me
route inserver.js
. -
On the user profile page, the "Joined" date isn't formatted very nicely. Use Angular's built-in date filter to display the date in this format:
January 25, 2016
.