Initial drop for switching server from Node.Js to Go
This commit is contained in:
parent
21ba447970
commit
cef05a15a4
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
node_modules
|
41
gulpfile.js
41
gulpfile.js
@ -1,41 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
|
||||
* Author: Alex Yatskov <alex@foosoft.net>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
var gulp = require('gulp');
|
||||
var install = require('gulp-install');
|
||||
var nodemon = require('gulp-nodemon');
|
||||
|
||||
|
||||
gulp.task('default', function() {
|
||||
return nodemon({
|
||||
script: 'server/index.js',
|
||||
ext: 'js html'
|
||||
});
|
||||
});
|
||||
|
||||
gulp.task('install', function() {
|
||||
gulp.src([
|
||||
'client/bower.json',
|
||||
'server/package.json',
|
||||
'scrape/package.json'
|
||||
]).pipe(install());
|
||||
});
|
21
package.json
21
package.json
@ -1,21 +0,0 @@
|
||||
{
|
||||
"name": "hscd",
|
||||
"version": "0.0.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@foosoft.net:search"
|
||||
},
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"gulp": "^3.8.8",
|
||||
"gulp-install": "^0.2.0",
|
||||
"gulp-nodemon": "^1.0.4",
|
||||
"jsonfile": "~2.0.0"
|
||||
}
|
||||
}
|
160
server.go
Normal file
160
server.go
Normal file
@ -0,0 +1,160 @@
|
||||
/*
|
||||
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
|
||||
* Author: Alex Yatskov <alex@foosoft.net>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"os"
|
||||
// "encoding/json"
|
||||
"encoding/json"
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
"log"
|
||||
"net/http"
|
||||
"path/filepath"
|
||||
)
|
||||
|
||||
var db *sql.DB
|
||||
|
||||
func executeQuery(rw http.ResponseWriter, req *http.Request) {
|
||||
|
||||
}
|
||||
|
||||
func getCategories(rw http.ResponseWriter, req *http.Request) {
|
||||
rows, err := db.Query("SELECT * FROM categories")
|
||||
if err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
defer rows.Close()
|
||||
|
||||
type Category struct {
|
||||
Description string `json:"description"`
|
||||
Id int `json:"id"`
|
||||
}
|
||||
|
||||
var categories []Category
|
||||
for rows.Next() {
|
||||
var (
|
||||
description string
|
||||
id int
|
||||
)
|
||||
|
||||
if err := rows.Scan(&description, &id); err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
categories = append(categories, Category{description, id})
|
||||
}
|
||||
|
||||
if err := rows.Err(); err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
js, err := json.Marshal(categories)
|
||||
if err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
rw.Header().Set("Content-Type", "application/json")
|
||||
rw.Write(js)
|
||||
}
|
||||
|
||||
func addCategory(rw http.ResponseWriter, req *http.Request) {
|
||||
|
||||
}
|
||||
|
||||
func removeCategory(rw http.ResponseWriter, req *http.Request) {
|
||||
type Request struct {
|
||||
Id int `json:"id"`
|
||||
}
|
||||
|
||||
decoder := json.NewDecoder(req.Body)
|
||||
|
||||
var request Request
|
||||
if err := decoder.Decode(&request); err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
result, err := db.Exec("DELETE FROM categories WHERE id = (?)", request.Id)
|
||||
if err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
affected, err := result.RowsAffected()
|
||||
if err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
type Response struct {
|
||||
Success bool `json:"success"`
|
||||
}
|
||||
|
||||
js, err := json.Marshal(Response{affected > 0})
|
||||
if err != nil {
|
||||
http.Error(rw, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
rw.Header().Set("Content-Type", "application/json")
|
||||
rw.Write(js)
|
||||
}
|
||||
|
||||
func accessReview(rw http.ResponseWriter, req *http.Request) {
|
||||
|
||||
}
|
||||
|
||||
func getStaticPath() (string, error) {
|
||||
if len(os.Args) > 1 {
|
||||
return os.Args[1], nil
|
||||
}
|
||||
|
||||
return filepath.Abs(filepath.Join(filepath.Dir(os.Args[0]), "static"))
|
||||
}
|
||||
|
||||
func main() {
|
||||
dir, err := getStaticPath()
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
||||
db, err = sql.Open("mysql", "hscd@/hscd")
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
defer db.Close()
|
||||
|
||||
http.HandleFunc("/query", executeQuery)
|
||||
http.HandleFunc("/categories", getCategories)
|
||||
http.HandleFunc("/learn", addCategory)
|
||||
http.HandleFunc("/forget", removeCategory)
|
||||
http.HandleFunc("/access", accessReview)
|
||||
http.Handle("/", http.FileServer(http.Dir(dir)))
|
||||
|
||||
log.Fatal(http.ListenAndServe(":3000", nil))
|
||||
}
|
@ -1,78 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
/*
|
||||
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var _ = require('underscore');
|
||||
var express = require('express');
|
||||
var path = require('path');
|
||||
var search = require('./search.js');
|
||||
|
||||
|
||||
function main(staticFiles, port) {
|
||||
var app = express();
|
||||
|
||||
search.loadDb({
|
||||
connectionLimit: 10,
|
||||
database: 'hscd',
|
||||
host: 'localhost',
|
||||
user: 'hscd'
|
||||
});
|
||||
|
||||
app.use('/query', function(req, res) {
|
||||
search.runQuery(req.query, function(results) {
|
||||
res.json(results);
|
||||
});
|
||||
});
|
||||
|
||||
app.use('/categories', function(req, res) {
|
||||
search.getCategories(function(results) {
|
||||
res.json(results);
|
||||
});
|
||||
});
|
||||
|
||||
app.use('/learn', function(req, res) {
|
||||
search.addCategory(req.query, function(results) {
|
||||
res.json(results);
|
||||
});
|
||||
});
|
||||
|
||||
app.use('/forget', function(req, res) {
|
||||
search.removeCategory(req.query, function(results) {
|
||||
res.json(results);
|
||||
});
|
||||
});
|
||||
|
||||
app.use('/access', function(req, res) {
|
||||
search.accessReview(req.query, function(results) {
|
||||
res.json(results);
|
||||
});
|
||||
});
|
||||
|
||||
app.use(express.static(path.join(__dirname, '..', staticFiles)));
|
||||
app.listen(port);
|
||||
}
|
||||
|
||||
if (require.main === module) {
|
||||
main('client', process.env.PORT || 3000);
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
{
|
||||
"name": "hscd_server",
|
||||
"version": "0.0.0",
|
||||
"description": "",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "node server.js"
|
||||
},
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"express": "~4.5.1",
|
||||
"mysql": "^2.5.0",
|
||||
"underscore": "^1.6.0",
|
||||
"geolib": "~2.0.14",
|
||||
"async": "~0.9.0"
|
||||
}
|
||||
}
|
418
server/search.js
418
server/search.js
@ -1,418 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
/*
|
||||
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var _ = require('underscore');
|
||||
var async = require('async');
|
||||
var geolib = require('geolib');
|
||||
var mysql = require('mysql');
|
||||
var pool = null;
|
||||
|
||||
|
||||
function innerProduct(values1, values2) {
|
||||
var result = 0.0;
|
||||
|
||||
for (var feature in values1) {
|
||||
if (feature in values2) {
|
||||
result += values1[feature] * values2[feature];
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function walkMatches(data, features, minScore, callback) {
|
||||
for (var i = 0, count = data.length; i < count; ++i) {
|
||||
var record = data[i];
|
||||
var score = innerProduct(features, record.features);
|
||||
|
||||
if (score >= minScore) {
|
||||
callback(record, score);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function statRecords(data, features, minScore) {
|
||||
var compatibility = 0;
|
||||
var count = 0;
|
||||
|
||||
walkMatches(data, features, minScore, function(record, score) {
|
||||
compatibility += record.compatibility * score;
|
||||
++count;
|
||||
});
|
||||
|
||||
return {
|
||||
compatibility: compatibility,
|
||||
count: count
|
||||
};
|
||||
}
|
||||
|
||||
function findRecords(data, features, minScore) {
|
||||
var results = [];
|
||||
|
||||
walkMatches(data, features, minScore, function(record, score) {
|
||||
results.push({
|
||||
name: record.name,
|
||||
score: score,
|
||||
distanceToUser: record.distanceToUser / 1000.0,
|
||||
distanceToStn: record.distanceToStn / 1000.0,
|
||||
closestStn: record.closestStn,
|
||||
accessCount: record.accessCount,
|
||||
id: record.id
|
||||
});
|
||||
});
|
||||
|
||||
results.sort(function(a, b) {
|
||||
return b.score - a.score;
|
||||
});
|
||||
|
||||
return results;
|
||||
}
|
||||
|
||||
function step(range, steps, callback) {
|
||||
var stepSize = (range.max - range.min) / steps;
|
||||
|
||||
for (var i = 0; i < steps; ++i) {
|
||||
var stepMax = range.max - stepSize * i;
|
||||
var stepMin = stepMax - stepSize;
|
||||
var stepMid = (stepMin + stepMax) / 2;
|
||||
|
||||
callback(stepMid);
|
||||
}
|
||||
}
|
||||
|
||||
function project(data, features, feature, minScore, range, steps) {
|
||||
var sample = _.clone(features);
|
||||
var results = [];
|
||||
|
||||
step(range, steps, function(position) {
|
||||
sample[feature] = position;
|
||||
results.push({
|
||||
sample: position,
|
||||
stats: statRecords(data, sample, minScore)
|
||||
});
|
||||
});
|
||||
|
||||
return results;
|
||||
}
|
||||
|
||||
function buildHints(data, features, feature, minScore, range, steps) {
|
||||
var projection = project(
|
||||
data,
|
||||
features,
|
||||
feature,
|
||||
minScore,
|
||||
range,
|
||||
steps
|
||||
);
|
||||
|
||||
var hints = [];
|
||||
_.each(projection, function(result) {
|
||||
hints.push({
|
||||
sample: result.sample,
|
||||
stats: result.stats
|
||||
});
|
||||
});
|
||||
|
||||
return hints;
|
||||
}
|
||||
|
||||
function loadDb(params) {
|
||||
pool = mysql.createPool(params);
|
||||
}
|
||||
|
||||
function getRecords(context, callback) {
|
||||
pool.query('SELECT * FROM reviews', function(err, rows) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
var records = _.map(rows, function(row) {
|
||||
return {
|
||||
name: row.name,
|
||||
id: row.id,
|
||||
closestStn: row.closestStn,
|
||||
distanceToStn: row.distanceToStn,
|
||||
accessCount: row.accessCount,
|
||||
geo: {
|
||||
latitude: row.latitude,
|
||||
longitude: row.longitude
|
||||
},
|
||||
features: {
|
||||
delicious: row.delicious,
|
||||
accomodating: row.accomodating,
|
||||
affordable: row.affordable,
|
||||
atmospheric: row.atmospheric
|
||||
},
|
||||
};
|
||||
});
|
||||
|
||||
computeRecordGeo(records, context);
|
||||
computeRecordPopularity(records, context, callback);
|
||||
});
|
||||
}
|
||||
|
||||
function computeRecordGeo(records, context) {
|
||||
var distUserMin = Number.MAX_VALUE;
|
||||
var distUserMax = Number.MIN_VALUE;
|
||||
|
||||
_.each(records, function(record) {
|
||||
record.distanceToUser = 0.0;
|
||||
if (context.geo) {
|
||||
record.distanceToUser = geolib.getDistance(record.geo, context.geo);
|
||||
}
|
||||
|
||||
distUserMin = Math.min(distUserMin, record.distanceToUser);
|
||||
distUserMax = Math.max(distUserMax, record.distanceToUser);
|
||||
});
|
||||
|
||||
var distUserRange = distUserMax - distUserMin;
|
||||
|
||||
_.each(records, function(record) {
|
||||
record.features.nearby = -((record.distanceToUser - distUserMin) / distUserRange - 0.5) * 2.0;
|
||||
|
||||
record.features.accessible = 1.0 - (record.distanceToStn / context.walkingDist);
|
||||
record.features.accessible = Math.min(record.features.accessible, 1.0);
|
||||
record.features.accessible = Math.max(record.features.accessible, -1.0);
|
||||
});
|
||||
}
|
||||
|
||||
function computeRecordPopularity(records, context, callback) {
|
||||
async.each(
|
||||
records,
|
||||
function(record, callback) {
|
||||
pool.query(
|
||||
'SELECT * FROM history WHERE reviewId = (?)',
|
||||
[record.id],
|
||||
function(err, rows) {
|
||||
async.map(
|
||||
rows,
|
||||
function(row, callback) {
|
||||
pool.query(
|
||||
'SELECT * FROM historyGroups WHERE historyId = (?)',
|
||||
[row.id],
|
||||
function(err, historyGroupRows) {
|
||||
var reviewFeatures = {};
|
||||
_.each(historyGroupRows, function(historyGroupRow) {
|
||||
reviewFeatures[historyGroupRow.categoryId] = historyGroupRow.categoryValue;
|
||||
});
|
||||
|
||||
var groupScore = innerProduct(context.profile, reviewFeatures);
|
||||
callback(err, groupScore);
|
||||
}
|
||||
);
|
||||
},
|
||||
function(err, groupScores) {
|
||||
var scoreAvg = 0;
|
||||
if (groupScores.length > 0) {
|
||||
var scoreSum = _.reduce(groupScores, function(a, b) { return a + b; });
|
||||
scoreAvg = scoreSum / groupScores.length;
|
||||
}
|
||||
|
||||
record.compatibility = scoreAvg;
|
||||
callback(err);
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
},
|
||||
function(err) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
callback(records);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
function fixupProfile(profile) {
|
||||
var fixed = {};
|
||||
_.each(JSON.parse(profile || '{}'), function(value, key) {
|
||||
if (parseFloat(value) !== 0) {
|
||||
fixed[key] = value;
|
||||
}
|
||||
});
|
||||
|
||||
return fixed;
|
||||
}
|
||||
|
||||
function fixupFeatures(features) {
|
||||
var keys = [
|
||||
'delicious',
|
||||
'accomodating',
|
||||
'affordable',
|
||||
'atmospheric',
|
||||
'nearby',
|
||||
'accessible'
|
||||
];
|
||||
|
||||
if (!features) {
|
||||
features = {};
|
||||
}
|
||||
|
||||
var fixed = {};
|
||||
_.each(keys, function(key) {
|
||||
fixed[key] = features[key] || 0;
|
||||
});
|
||||
|
||||
return fixed;
|
||||
}
|
||||
|
||||
function getCategories(callback) {
|
||||
pool.query('SELECT * FROM categories', function(err, rows) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
var categories = _.map(rows, function(row) {
|
||||
return {
|
||||
id: row.id,
|
||||
description: row.description
|
||||
};
|
||||
});
|
||||
|
||||
callback(categories);
|
||||
});
|
||||
}
|
||||
|
||||
function addCategory(query, callback) {
|
||||
var description = query.description.trim();
|
||||
|
||||
if (description) {
|
||||
pool.query('INSERT INTO categories(description) VALUES(?)', [description], function(err, info) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
callback({
|
||||
id: info.insertId,
|
||||
description: description,
|
||||
success: true
|
||||
});
|
||||
});
|
||||
}
|
||||
else {
|
||||
callback({success: false});
|
||||
}
|
||||
}
|
||||
|
||||
function removeCategory(query, callback) {
|
||||
pool.query('DELETE FROM categories WHERE id = (?)', [query.id], function(err, info) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
callback({success: info.affectedRows > 0});
|
||||
});
|
||||
}
|
||||
|
||||
function accessReview(query, callback) {
|
||||
query.profile = fixupProfile(query.profile);
|
||||
|
||||
pool.query('SELECT url FROM reviews WHERE id = (?) LIMIT 1', [query.id], function(err, rows) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
var results = {
|
||||
success: rows.length > 0
|
||||
};
|
||||
|
||||
if (results.success) {
|
||||
results.url = 'http://www.tripadvisor.com' + rows[0].url;
|
||||
|
||||
pool.query('UPDATE reviews SET accessCount = accessCount + 1 WHERE id = (?)', [query.id], function(err, info) {
|
||||
if (_.keys(query.profile).length > 0) {
|
||||
pool.query('INSERT INTO history(date, reviewId) VALUES(NOW(), ?)', [query.id], function(err, info) {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
|
||||
for (var categoryId in query.profile) {
|
||||
pool.query(
|
||||
'INSERT INTO historyGroups(categoryId, categoryValue, historyId) VALUES(?, ?, ?)',
|
||||
[categoryId, query.profile[categoryId], info.insertId]
|
||||
);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
callback(results);
|
||||
});
|
||||
}
|
||||
|
||||
function runQuery(query, callback) {
|
||||
query.profile = fixupProfile(query.profile);
|
||||
query.features = fixupFeatures(query.features);
|
||||
|
||||
var context = {
|
||||
geo: query.geo,
|
||||
profile: query.profile,
|
||||
walkingDist: query.walkingDist * 1000.0
|
||||
};
|
||||
|
||||
getRecords(context, function(data) {
|
||||
var searchResults = findRecords(
|
||||
data,
|
||||
query.features,
|
||||
query.minScore
|
||||
);
|
||||
|
||||
var graphColumns = {};
|
||||
for (var feature in query.features) {
|
||||
var searchHints = buildHints(
|
||||
data,
|
||||
query.features,
|
||||
feature,
|
||||
query.minScore,
|
||||
query.range,
|
||||
query.hintSteps
|
||||
);
|
||||
|
||||
graphColumns[feature] = {
|
||||
value: query.features[feature],
|
||||
hints: searchHints,
|
||||
steps: query.hintSteps
|
||||
};
|
||||
}
|
||||
|
||||
callback({
|
||||
columns: graphColumns,
|
||||
items: searchResults.slice(0, query.maxResults),
|
||||
count: searchResults.length
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
loadDb: loadDb,
|
||||
runQuery: runQuery,
|
||||
getCategories: getCategories,
|
||||
addCategory: addCategory,
|
||||
removeCategory: removeCategory,
|
||||
accessReview: accessReview
|
||||
};
|
0
client/.gitignore → static/.gitignore
vendored
0
client/.gitignore → static/.gitignore
vendored
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
Loading…
Reference in New Issue
Block a user