-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
234 lines (212 loc) · 5.58 KB
/
server.js
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
const express = require("express");
const { ApolloServer } = require("apollo-server-express");
const {
GraphQLSchema,
GraphQLObjectType,
GraphQLString,
GraphQLInt,
GraphQLFloat,
GraphQLList,
GraphQLNonNull,
graphqldate,
} = require("graphql");
const { GraphQLDateTime } = require("graphql-iso-date");
require("dotenv").config();
const pgp = require("pg-promise")();
const connection = {
host: process.env.DB_HOST,
port: process.env.DB_PORT,
database: process.env.DB_NAME,
user: process.env.DB_USERNAME,
password: process.env.DB_PASSWORD,
};
const db = pgp(connection);
async function getHotels() {
try {
const hotels = await db.any("SELECT * FROM hotels");
return hotels;
} catch (e) {
console.log(e);
}
}
async function getReviewsByID(id) {
try {
const reviews = await db.any(
"SELECT * FROM reviews WHERE hotel_id = $1",
id
);
return reviews;
} catch (e) {
console.log(e);
}
}
async function getHotelByReviewID(id) {
try {
const hotel = await db.any(
"SELECT * FROM hotels WHERE hotels.id = (SELECT hotel_id FROM reviews WHERE reviews.id = $1)",
id
);
return hotel;
} catch (e) {
console.log(e);
}
}
async function getReviews() {
try {
const reviews = await db.any("SELECT * FROM reviews");
return reviews;
} catch (e) {
console.log(e);
}
}
async function getHotelLocation(id) {
try {
const location = await db.any(
"SELECT * FROM hotels_locations WHERE hotels_locations.id = (SELECT location FROM hotels WHERE hotels.id = $1)",
[id]
);
console.log(location);
return location;
} catch (e) {
console.log(e);
}
}
async function getHotelOwner(id) {
try {
const owner = await db.any(
"SELECT * FROM owners WHERE owners.id = (SELECT owner_id FROM hotels WHERE hotels.id = $1)",
[id]
);
console.log(owner);
return owner;
} catch (e) {
console.log(e);
}
}
async function getHotelOwners() {
try {
const owners = await db.any("SELECT * FROM owners");
return owners;
} catch (e) {
console.log(e);
}
}
async function getLocations() {
try {
const locations = await db.any("SELECT * FROM hotels_locations");
return locations;
} catch (e) {
console.log(e);
}
}
const HotelType = new GraphQLObjectType({
name: "Hotel",
description: "This represents all available hotel",
fields: () => ({
id: { type: new GraphQLNonNull(GraphQLInt) },
name: { type: new GraphQLNonNull(GraphQLString) },
category: { type: new GraphQLNonNull(GraphQLString) },
price: { type: new GraphQLNonNull(GraphQLInt) },
avg_rating: { type: GraphQLFloat },
updated_at: { type: new GraphQLNonNull(GraphQLDateTime) },
timestamp: { type: new GraphQLNonNull(GraphQLDateTime) },
location: {
type: new GraphQLNonNull(new GraphQLList(LocationType)),
resolve: (hotel) => getHotelLocation(hotel.id),
},
reviews: {
type: new GraphQLList(ReviewType),
resolve: (hotel) => getReviewsByID(hotel.id),
},
owner: {
type: new GraphQLNonNull(new GraphQLList(OwnerType)),
resolve: (hotel) => getHotelOwner(hotel.id),
},
}),
});
const OwnerType = new GraphQLObjectType({
name: "Hotel_owner",
description: "This represents the owner of a hotel",
fields: () => ({
id: { type: new GraphQLNonNull(GraphQLInt) },
first_name: { type: new GraphQLNonNull(GraphQLString) },
last_name: { type: new GraphQLNonNull(GraphQLString) },
}),
});
const LocationType = new GraphQLObjectType({
name: "Hotel_location",
description: "This represents a location of a hotel",
fields: () => ({
id: { type: new GraphQLNonNull(GraphQLInt) },
address: { type: new GraphQLNonNull(GraphQLString) },
city: { type: new GraphQLNonNull(GraphQLString) },
area: { type: GraphQLString },
}),
});
const ReviewType = new GraphQLObjectType({
name: "Review",
description: "This represents all the reviews",
fields: () => ({
id: { type: new GraphQLNonNull(GraphQLInt) },
rating: { type: new GraphQLNonNull(GraphQLInt) },
body: { type: GraphQLString },
hotel: {
type: new GraphQLNonNull(new GraphQLList(HotelType)),
resolve: (review) => getHotelByReviewID(review.id),
},
}),
});
async function getSpecificHotel(id) {
try {
const hotel = await db.query("SELECT * FROM hotels WHERE hotels.id = $1", [
id,
]);
console.log(hotel);
return hotel;
} catch (e) {}
}
const RoutQueryType = new GraphQLObjectType({
name: "Query",
description: "Root Query",
fields: () => ({
hotel: {
type: new GraphQLList(HotelType),
description: "A single hotel",
args: {
id: { type: GraphQLInt },
},
resolve: (_, args) => getSpecificHotel(args.id),
},
hotels: {
type: new GraphQLList(HotelType),
description: "List of hotels",
resolve: () => getHotels(),
},
reviews: {
type: new GraphQLList(ReviewType),
description: "List of reviews",
resolve: () => getReviews(),
},
locations: {
type: new GraphQLList(LocationType),
description: "List of locations",
resolve: () => getLocations(),
},
owners: {
type: new GraphQLList(OwnerType),
description: "List of hotel owners",
resolve: () => getHotelOwners(),
},
}),
});
const schema = new GraphQLSchema({
query: RoutQueryType,
});
const app = express();
const server = new ApolloServer({ schema });
server.applyMiddleware({ app });
app.listen({ port: process.env.PORT || 5000 }, () =>
console.log(
`🚀 Server is running at http://locahost:5000${server.graphqlPath}`
)
);