forked from GoogleCloudPlatform/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
144 lines (119 loc) · 3.84 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
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
const path = require('path');
const grpc = require('@grpc/grpc-js');
const pino = require('pino');
const protoLoader = require('@grpc/proto-loader');
const charge = require('./charge');
const logger = pino({
name: 'paymentservice-server',
messageKey: 'message',
formatters: {
level (logLevelString, logLevelNum) {
return { severity: logLevelString }
}
}
});
const PAYMENTSERVICE = "paymentservice";
// NOTE: logLevel must be a GELF valid severity value (WARN or ERROR), INFO if not specified
function emitLog(event, logLevel) {
var timestamp = new Date().toISOString();
switch (logLevel) {
case "ERROR":
logger.error(timestamp + " - ERROR - " + PAYMENTSERVICE + " - " + event);
break;
case "WARN":
logger.warn(timestamp + " - WARN - " + PAYMENTSERVICE + " - " + event);
break;
default:
logger.info(timestamp + " - INFO - " + PAYMENTSERVICE + " - " + event);
break;
}
}
class HipsterShopServer {
constructor(protoRoot, port = HipsterShopServer.PORT) {
this.port = port;
this.packages = {
hipsterShop: this.loadProto(path.join(protoRoot, 'demo.proto')),
health: this.loadProto(path.join(protoRoot, 'grpc/health/v1/health.proto'))
};
this.server = new grpc.Server();
this.loadAllProtos(protoRoot);
}
/**
* Handler for PaymentService.Charge.
* @param {*} call { ChargeRequest }
* @param {*} callback fn(err, ChargeResponse)
*/
static ChargeServiceHandler(call, callback) {
try {
var SessionID = call.metadata.get("requestid");
var ServiceName = call.metadata.get("servicename");
emitLog("Received request from " + ServiceName + " (request_id: " + SessionID[0] + ")", "INFO");
logger.info(`PaymentService#Charge invoked with request ${JSON.stringify(call.request)}`);
const response = charge(call.request);
emitLog("Answered request from " + ServiceName + " (request_id: " + SessionID[0] + ")", "INFO");
callback(null, response);
} catch (err) {
console.warn(err);
callback(err);
}
}
static CheckHandler(call, callback) {
callback(null, { status: 'SERVING' });
}
listen() {
const server = this.server
const port = this.port
server.bindAsync(
`[::]:${port}`,
grpc.ServerCredentials.createInsecure(),
function () {
logger.info(`PaymentService gRPC server started on port ${port}`);
server.start();
}
);
}
loadProto(path) {
const packageDefinition = protoLoader.loadSync(
path,
{
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true
}
);
return grpc.loadPackageDefinition(packageDefinition);
}
loadAllProtos(protoRoot) {
const hipsterShopPackage = this.packages.hipsterShop.hipstershop;
const healthPackage = this.packages.health.grpc.health.v1;
this.server.addService(
hipsterShopPackage.PaymentService.service,
{
charge: HipsterShopServer.ChargeServiceHandler.bind(this)
}
);
this.server.addService(
healthPackage.Health.service,
{
check: HipsterShopServer.CheckHandler.bind(this)
}
);
}
}
HipsterShopServer.PORT = process.env.PORT;
module.exports = HipsterShopServer;