-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworker.js
172 lines (150 loc) · 4.8 KB
/
worker.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
// Copyright 2017, Google, Inc.
// 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.
'use strict';
// Activate Google Cloud Trace and Debug when in production
if (process.env.NODE_ENV === 'production') {
require('@google-cloud/trace-agent').start();
require('@google-cloud/debug-agent').start();
}
const request = require('request');
const waterfall = require('async').waterfall;
const express = require('express');
const config = require('./config');
const logging = require('./lib/logging');
const images = require('./lib/images');
const background = require('./lib/background');
const model = require(`./books/model-${config.get('DATA_BACKEND')}`);
// When running on Google App Engine Managed VMs, the worker needs
// to respond to HTTP requests and can optionally supply a health check.
const app = express();
app.use(logging.requestLogger);
app.get('/_ah/health', (req, res) => {
res.status(200).send('ok');
});
// Keep count of how many books this worker has processed
let bookCount = 0;
app.get('/', (req, res) => {
res.send(`This worker has processed ${bookCount} books.`);
});
app.use(logging.errorLogger);
function subscribe () {
// Subscribe to Cloud Pub/Sub and receive messages to process books.
// The subscription will continue to listen for messages until the process
// is killed.
return background.subscribe((err, data) => {
// Any errors received are considered fatal.
if (err) {
throw err;
}
if (data.action === 'processBook') {
logging.info(`Received request to process book ${data.bookId}`);
processBook(data.bookId);
} else {
logging.warn('Unknown request', data);
}
});
}
if (module === require.main) {
const server = app.listen(config.get('PORT'), () => {
const port = server.address().port;
console.log(`App listening on port ${port}`);
});
subscribe();
}
// Processes a book by reading its existing data, attempting to find
// more information, and updating the database with the new information.
function processBook (bookId, callback) {
waterfall([
// Load the current data
(cb) => {
model.read(bookId, cb);
},
// Find the information from Google
findBookInfo,
// Save the updated data
(updated, cb) => {
model.update(updated.id, updated, false, cb);
}
], (err) => {
if (err) {
logging.error('Error occurred', err);
if (callback) {
callback(err);
}
return;
}
logging.info(`Updated book ${bookId}`);
bookCount += 1;
if (callback) {
callback();
}
});
}
// Tries to find additional information about a book and updates
// the book's data. Also uploads a cover image to Cloud Storage
// if available.
function findBookInfo (book, cb) {
queryBooksApi(book.title, (err, r) => {
if (!err && !r.items) {
err = 'Not found';
}
if (err) {
cb(err);
return;
}
const top = r.items[0];
book.title = top.volumeInfo.title;
book.author = (top.volumeInfo.authors || []).join(', ');
book.publishedDate = top.volumeInfo.publishedDate;
book.description = book.description || top.volumeInfo.description;
// If there is already an image for the book or if there's no
// thumbnails, go ahead and return.
if (book.imageUrl || !top.volumeInfo.imageLinks) {
cb(null, book);
return;
}
// Otherwise, try to fetch them and upload to cloud storage.
const imageUrl =
top.volumeInfo.imageLinks.thumbnail ||
top.volumeInfo.imageLinks.smallThumbnail;
const imageName = `${book.id}.jpg`;
images.downloadAndUploadImage(
imageUrl, imageName, (err, publicUrl) => {
if (!err) {
book.imageUrl = publicUrl;
}
cb(null, book);
});
});
}
// Calls out to the Google Books API to get additional
// information about a given book.
function queryBooksApi (query, cb) {
request(
`https://www.googleapis.com/books/v1/volumes?q=${encodeURIComponent(query)}`,
(err, resp, body) => {
if (err || resp.statusCode !== 200) {
cb(err || `Response returned ${resp.statusCode}`);
return;
}
cb(null, JSON.parse(body));
}
);
}
app.mocks = {
processBook: processBook,
findBookInfo: findBookInfo,
queryBooksApi: queryBooksApi
};
// Proxyquire requires this *exact* line, hence the "app.mocks" above
module.exports = app;