userController.js
4.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import axios from "axios";
import passport from "passport";
import User from "../models/User";
const getQuote = async (req, res) => {
const url = "http://quotes.stormconsultancy.co.uk/random.json";
const quoteData = await axios.get(url).then(function (response) {
return response.data;
});
const quote = quoteData.quote;
const author = quoteData.author;
return { quote, author };
};
const gitTrend = async (req, res) => {
const url =
"https://api.trending-github.com/github/repositories?period=daily";
const trendData = await axios.get(url).then(function (response) {
return response.data;
});
const name0 = trendData[0].name;
const description0 = trendData[0].description;
const Url0 = trendData[0].url;
const stars0 = trendData[0].stars;
const name1 = trendData[1].name;
const description1 = trendData[1].description;
const Url1 = trendData[1].url;
const stars1 = trendData[1].stars;
const name2 = trendData[2].name;
const description2 = trendData[2].description;
const Url2 = trendData[2].url;
const stars2 = trendData[2].stars;
return {
name0,
description0,
Url0,
stars0,
name1,
description1,
Url1,
stars1,
name2,
description2,
Url2,
stars2,
};
};
export const handleHome = async (req, res) => {
const quote = await getQuote();
const trend = await gitTrend();
res.render("home", {
pageTitle: "Home",
quote: quote.quote,
author: quote.author,
name0: trend.name0,
description0: trend.description0,
Url0: trend.Url0,
stars0: trend.stars0,
name1: trend.name1,
description1: trend.description1,
Url1: trend.Url1,
stars1: trend.stars1,
name2: trend.name2,
description2: trend.description2,
Url2: trend.Url2,
stars2: trend.stars2,
});
};
export const getUserDetail = async (req, res) => {
const quote = await getQuote();
const id = req.params.id;
const user = await User.findById(id);
console.log(user.tech);
res.render("userDetail", {
pagetTitle: "User Detail",
quote: quote.quote,
author: quote.author,
user,
});
};
export const getEditProfile = async (req, res) => {
const {
user: { _id: id },
} = req;
try {
const user = await User.findById(id);
if (user.id !== id) {
throw Error();
} else {
res.render("editProfile", { pageTitle: "Edit Profile", user });
}
} catch (error) {
console.log(error);
}
};
export const postEditProfile = async (req, res) => {
const {
user: { _id: id },
body: { name, email, school, blogUrl, tech, career, introduction },
file,
} = req;
try {
const updatedUser = await User.findByIdAndUpdate(
id,
{
avatarUrl: file ? file.path : req.session.passport.user.avatarUrl,
name,
email,
school,
blogUrl,
tech: User.formatTech(tech),
career: User.formatCareer(career),
introduction,
},
{
new: true,
}
);
req.session.passport.user = updatedUser;
//console.log(updatedUser);
res.redirect("/users/edit-profile");
} catch (error) {
console.log(error);
res.redirect("/");
}
};
export const getJoin = (req, res) => {
res.render("join", { pageTitle: "Join" });
};
export const getLogin = (req, res) => {
res.render("login", { pageTitle: "Login" });
};
export const handleUsers = (req, res) => {
res.render("users", { pageTitle: "Users" });
};
export const githubLogin = passport.authenticate("github", {
scope: ["user:email"],
});
export const githubLoginCallback = async (_, __, profile, done) => {
const {
_json: {
id: githubId,
login: githubName,
avatar_url: avatarUrl,
name,
email,
},
} = profile;
try {
const user = await User.findOne({ githubId });
if (user) {
(user.githubId = githubId), (user.githubName = githubName);
await user.save();
return done(null, user);
} else {
const newUser = await User.create({
githubId,
githubName,
avatarUrl,
name,
email,
});
return done(null, newUser);
}
} catch (error) {
return done(error);
}
};
export const postGithubLogin = (req, res) => {
const userId = req.user.id;
res.redirect(`/users/${userId}`);
};
export const logout = (req, res) => {
req.logout();
res.redirect("/");
};