Skip to content

Commit 15a4f0c

Browse files
committed
fix: web cookies workflow integration issues and content update
1 parent b38a90b commit 15a4f0c

File tree

11 files changed

+80
-40
lines changed

11 files changed

+80
-40
lines changed

app.js

+16-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,22 @@ app.use(function(req, res, next){
4747
next();
4848
})
4949

50-
app.use(cors());
50+
// app.use(cors());
51+
52+
//Using explicit header settings for cors instead of cors package to make it easier to understand what exaxtly we are doing
53+
app.use(function (req, res, next) {
54+
// Website you wish to allow to connect
55+
res.setHeader('Access-Control-Allow-Origin', 'http://localhost:4200');
56+
// Request methods you wish to allow
57+
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
58+
// Request headers you wish to allow
59+
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type,authorization');
60+
// Set to true if you need the website to include cookies in the requests sent
61+
// to the API (e.g. in case you use sessions)
62+
res.setHeader('Access-Control-Allow-Credentials', true);
63+
// Pass to next layer of middleware
64+
next();
65+
});
5166

5267
app.use("/", homeRouter);
5368
app.use("/jwt", jwtRouter);

frontend/src/app/app.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@
113113
</div>
114114

115115
<nav class="nav justify-content-center py-3 mt-5 nav-footer">
116-
<a class="nav-link" href="#">
116+
<a class="nav-link" href="https://github.com/gitcommitshow/auth-jwt/issues/new">
117117
<i class="fa-solid fa-triangle-exclamation me-1"></i>
118118
{{ "app.reportBug" | transloco }}
119119
</a>
120-
<a class="nav-link" href="#">
120+
<a class="nav-link" href="https://twitter.com/intent/tweet?text=%22Learn%20JWT%20by%20reverse%20engineering%22%20%20%40pradeep_io&url=https://github.com/gitcommitshow/auth-jwt">
121121
<i class="fa-brands fa-twitter me-1"></i>
122122
{{ "app.shareTwitter" | transloco }}
123123
</a>
124-
</nav>
124+
</nav>

frontend/src/app/finish/finish.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h1 class="mb-3 heading">{{ "finish.introduction" | transloco }}</h1>
88

99
<div class="celebrate_twitter">
1010
<i class="fa-brands fa-twitter" style="color: #ffd852;"></i>
11-
<a target="_blank" href="#">{{ "finish.celebrate" | transloco}}</a>
11+
<a target="_blank" href="https://twitter.com/intent/tweet?text=Just%20finished%20totorial%20on%20JWT.%20@pradeep_io&url=https://github.com/gitcommitshow/auth-jwt">{{ "finish.celebrate" | transloco}}</a>
1212
</div>
1313

1414
<div class="row">

frontend/src/app/send-jwt3/send-jwt3.component.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ <h1 class="mb-3">{{ "send-jwt3.introduction" | transloco }}</h1>
55
<hr>
66

77
<div *ngIf="successText" class="rectangle">
8-
<img src="assets/images/icon-check-square.png"/>
9-
<span>{{ successText }}</span>
8+
<pre>{{ successText }}</pre>
109
</div>
1110

1211
<div *ngIf="errorText" class="rectangle error">
13-
<img src="assets/images/icon-error.svg"/>
1412
<span>{{ errorText | transloco | uppercase }}</span>
1513
</div>
1614

frontend/src/app/send-jwt4/send-jwt4.component.html

+4-6
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ <h1 class="mb-3">{{ "send-jwt4.introduction" | transloco }}</h1>
55
<hr>
66

77
<div *ngIf="successText" class="rectangle">
8-
<img src="assets/images/icon-check-square.png"/>
9-
<span>{{ successText }}</span>
8+
<pre>{{ successText }}</pre>
109
</div>
1110

1211
<div *ngIf="errorText" class="rectangle error">
13-
<img src="assets/images/icon-error.svg"/>
14-
<span>{{ errorText | transloco | uppercase }}</span>
12+
<span>{{ errorText | transloco | uppercase }}</span>
1513
</div>
1614

1715
<div class="rectangle1">
@@ -48,8 +46,8 @@ <h1>{{ "send-jwt4.request" | transloco }}</h1>
4846
<img src="assets/images/icon-arrow-right.svg" alt="">
4947
</button>
5048
</p>
51-
52-
<a class="query" target="_blank" href="#">{{ "send-jwt4.queryParameter" | transloco}}</a>
49+
<br/>
50+
<a class="query" target="_blank" href="https://datatracker.ietf.org/doc/html/rfc6265">{{ "send-jwt4.queryParameter" | transloco}}</a>
5351

5452
</div>
5553

frontend/src/app/send-jwt4/send-jwt4.component.scss

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.rectangle {
22
width: 667px;
3-
height: 53px;
3+
height: fit-content;
44
padding: 16.5px 223.1px 15.5px 19.9px;
55
border-radius: 12px;
66
border: solid 1px rgba(0, 195, 15, 0.75);
@@ -20,6 +20,11 @@
2020
}
2121
}
2222

23+
.rectangle.error {
24+
border: solid 1px rgba(255, 5, 5, 0.75);
25+
background-color: rgba(209, 66, 31, 0.15);
26+
}
27+
2328
.rectangle1 {
2429
width: 668px;
2530
height: 529px;

frontend/src/app/send-jwt4/send-jwt4.component.ts

+27-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Component, OnInit } from '@angular/core';
33
import { Router } from '@angular/router';
44
import { DemoService } from '../shared/services/demo.service';
55
import { StepService } from '../shared/services/step.service';
6+
import { environment } from '../../environments/environment'
67

78
@Component({
89
selector: 'app-send-jwt4',
@@ -11,6 +12,7 @@ import { StepService } from '../shared/services/step.service';
1112
})
1213
export class SendJwt4Component implements OnInit {
1314

15+
AUTH_SERVER = `${environment.server}`;
1416
successText = "";
1517
errorText = "";
1618

@@ -26,17 +28,18 @@ export class SendJwt4Component implements OnInit {
2628
}
2729

2830
getAuthorizePage(){
29-
this.router.navigate(['authorize'])
31+
window.open(this.AUTH_SERVER+"/demo/authorize", "_blank");
32+
// this.router.navigate(['authorize'])
3033
}
3134

3235
getProtectedUserData(){
33-
this.demoService.remote().webCookies().subscribe({
36+
this.demoService.remote().sendTokenViaWebCookies().subscribe({
3437
next: (success: any)=>{
3538
console.log("success")
3639
this.errorText = ""
3740
this.successText = JSON.stringify(success, null, 4)
3841
},
39-
complete: () => console.log("Sent token in header"),
42+
complete: () => console.log("Sent token in cookies"),
4043
error: (error: HttpErrorResponse) => {
4144
this.successText = ""
4245
this.errorText = error.statusText || "Unsuccessful"
@@ -46,15 +49,31 @@ export class SendJwt4Component implements OnInit {
4649
}
4750

4851
getUser(){
49-
this.demoService.remote().getUser().subscribe((user)=>{
50-
console.log(user)
52+
var token: any = localStorage.getItem('token');
53+
var headers = new HttpHeaders()
54+
.set("Content-Type", "application\/json")
55+
if(token) headers.set("Authorization", token);
56+
this.demoService.remote().getUserViaHeaderOrCookies(headers).subscribe({
57+
next: (success: any)=>{
58+
console.log("success")
59+
this.errorText = ""
60+
this.successText = JSON.stringify(success, null, 4)
61+
},
62+
complete: () => console.log("Sent token in header/cookies"),
63+
error: (error: HttpErrorResponse) => {
64+
this.successText = ""
65+
this.errorText = error.statusText || "Unsuccessful"
66+
console.error('error:', error)
67+
}
5168
})
5269
}
5370

5471
logOut(){
55-
this.demoService.remote().logOut().subscribe(success=>{
56-
console.log(success)
57-
})
72+
let popup = window.open(this.AUTH_SERVER+"/demo/logout", "_blank");
73+
setTimeout(() => popup?.close(), 1000);
74+
// this.demoService.remote().logOut().subscribe(success=>{
75+
// console.log(success)
76+
// })
5877
}
5978

6079
backStep() {

frontend/src/app/shared/services/demo.service.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,20 @@ export class DemoService {
3838
return httpRequest.get<any>(url, {headers: headers});
3939
},
4040
login(body: any): Observable<any> {
41+
//NOT TO BE USED. Otherwise, cookies won't set correctly
4142
let url = REMOTE_SERVER+ENDPOINTS.login
4243
return httpRequest.post<any>(url, body);
4344
},
4445
sendTokenViaWebCookies(): Observable<any> {
4546
let url = REMOTE_SERVER+ENDPOINTS.webCookies
46-
return httpRequest.get<any>(url);
47+
return httpRequest.get<any>(url, { withCredentials: true });
4748
},
48-
getUser(): Observable<any> {
49+
getUserViaHeaderOrCookies(headers: any): Observable<any> {
4950
let url = REMOTE_SERVER+ENDPOINTS.getUser
50-
return httpRequest.get<any>(url);
51+
return httpRequest.get<any>(url, { headers: headers, withCredentials: true });
5152
},
5253
logOut(): Observable<any> {
54+
//NOT TO BE USED. Otherwise, cookies won't reset correctly
5355
let url = REMOTE_SERVER+ENDPOINTS.logOut
5456
return httpRequest.get<any>(url);
5557
}

frontend/src/assets/i18n/en.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126

127127
"send-jwt1": {
128-
"introduction": "2. Send JWT to backend with request to access to resources",
128+
"introduction": "2. Send JWT to backend requesting protected resources",
129129
"ways": "There are 4 ways you can send JWT to backend",
130130
"authenticated": "you have been successfully authenticated",
131131
"request": "Send JWT in request parameter",
@@ -138,7 +138,7 @@
138138
},
139139

140140
"send-jwt2": {
141-
"introduction": "2. Send JWT to backend with request to access to resources",
141+
"introduction": "2. Send JWT to backend requesting protected resources",
142142
"ways": "There are 4 ways you can send JWT to backend",
143143
"authenticated": "you have been successfully authenticated",
144144
"request": "Send token in form body",
@@ -152,7 +152,7 @@
152152
},
153153

154154
"send-jwt3": {
155-
"introduction": "2. Send JWT to backend with request to access to resources",
155+
"introduction": "2. Send JWT to backend requesting protected resources",
156156
"ways": "There are 4 ways you can send JWT to backend",
157157
"authenticated": "you have been successfully authenticated",
158158
"request": "Send token in request header",
@@ -169,7 +169,7 @@
169169
"closeBracket": "}"
170170
},
171171
"send-jwt4": {
172-
"introduction": "2. Send JWT to backend with request to access to resources",
172+
"introduction": "2. Send JWT to backend requesting protected resources",
173173
"ways": "There are 4 ways you can send JWT to backend",
174174
"request": "Send token via cookies",
175175
"request1": "Anything stored in cookies is sent with the request by default. So there's nothing special that you need to do in this case as long as the backend server had set the cookie header when it generted the token.",
@@ -178,7 +178,7 @@
178178
"step2": "Get protected user data",
179179
"step3" : "User data link accessible via token in authorization header with fall back to cookies",
180180
"step4" : "Logout",
181-
"queryParameter": "Read about standards to send token via headers",
181+
"queryParameter": "Read about securely storing cookies",
182182
"body": "Next: Choosing the best method",
183183
"authenticated": "you have been successfully authenticated"
184184
},

routes/demo.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,16 @@ router.get('/protected/web-cookies', DemoAuthService.isAuthenticated, function(r
111111

112112
router.get('/user', DemoAuthService.isAuthenticated, function(req, res) {
113113
if (req.wantsJson) {
114-
return res.send(
115-
`<pre>
116-
{
117-
success: true,
118-
user: ${JSON.stringify(req.user)}
119-
}</pre>
120-
<a href="/demo/logout">Logout</a>
121-
`)
114+
return res.status(200).send({ success: true, user: req.user, statusText: "Authorized" })
122115
}
123-
return res.send({ success: true, user: req.user })
116+
res.send(
117+
`<pre>
118+
{
119+
success: true,
120+
user: ${JSON.stringify(req.user)}
121+
}</pre>
122+
<a href="/demo/logout">Logout</a>
123+
`)
124124
})
125125

126126
router.get('/logout', [], function(req, res) {

views/demo/authorize.ejs

+3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kognise/water.css@latest/dist/dark.min.css">
2+
<h1>Welcome to the authorization server</h1>
23
<h2>Sign in</h2>
34
<form id="login-form" action="/demo/oauth/token" method="POST">
45
<input value="user" name="username" type="text" placeholder="Username e.g. user"> <br/>
56
<input value="pass" name="password" type="password" placeholder="Password e.g. pass"> <br/>
67
<input type="submit" value="Login"> <br/><br/>
8+
<p>After successful login, a cookie <code>access_token</code> will be set in your browser.
9+
<br/>So next time, when you make a request to authorization server, <br/>this cookie <code>access_token</code> will be sent to the auth server.</p>
710
</form>
811
<script>
912
// Cross-origin communication about the login info

0 commit comments

Comments
 (0)