added new ends

This commit is contained in:
Olu Amey
2021-09-26 11:31:06 -04:00
parent ddb49976bb
commit c177cd980a
+60 -57
View File
@@ -3,77 +3,80 @@ const app = require('express')();
const PORT = 5101;
var mysql = require('mysql2');
//const cors = require('cors');
//const app = express();
//const { Pool, Client } = require('pg');
//app.use(cors());
//app.use(express.json());
// Database connection details;
/*const cn = {
host: '10.20.30.60', // 'localhost' is the default;
port: 5432, // 5432 is the default;
database: 'mermsemr_dev',
user: 'mermsemr',
password: 'mermsemr'
};
const connectionString = 'postgresql://mermsemr:mermsemr@10.20.30.60:5432/mermsemr_dev'
const pool = new Pool({
connectionString,
})
// pool.query('SELECT NOW()', (err, res) => {
// console.log(err, res)
// pool.end()
// })
const client = new Client({
connectionString,
})
client.connect()
*/
/*
mysql -u root -p -h 10.10.33.60
SET GLOBAL validate_password.policy=LOW;
CREATE USER 'wroot'@'10.0.0.52' IDENTIFIED BY 'wroot@#Chi3fW0rks.52';
GRANT ALL PRIVILEGES ON coregrade_blog.* TO 'wroot'@'10.0.0.52';
GRANT ALL PRIVILEGES ON blog_mermsemr_com.* TO 'wroot'@'10.0.0.52';
*/
var con = mysql.createConnection({
host: "10.10.33.60", // ip address of server running mysql
user: "wroot", // user name to your mysql database
password: "wroot@#Chi3fW0rks.52", // corresponding password
database: "blog_mermsemr_com" // use this database to querying context
});
var con = mysql.createConnection({
host: "10.10.33.60", // ip address of server running mysql
user: "wroot", // user name to your mysql database
password: "wroot@#Chi3fW0rks.52", // corresponding password
database: "blog_mermsemr_com" // use this database to querying context
});
app.get('/', function (req, res) {
app.get('/', function (req, res) {
let findPostsQry = `SELECT p1.id AS id, p1.*, wm2.meta_value FROM wp_mermsemrposts p1
LEFT JOIN wp_mermsemrpostmeta wm1 ON
(wm1.post_id = p1.id AND wm1.meta_value IS NOT NULL AND wm1.meta_key = '_thumbnail_id' )
LEFT JOIN wp_mermsemrpostmeta wm2 ON
(wm1.meta_value = wm2.post_id AND wm2.meta_key = '_wp_attached_file' AND wm2.meta_value IS NOT NULL )
WHERE p1.post_status='publish' AND p1.post_type='post'
ORDER BY p1.post_date DESC LIMIT 9`;
let findPostsQry = `SELECT p1.id AS id, p1.*, wm2.meta_value FROM wp_mermsemrposts p1
LEFT JOIN wp_mermsemrpostmeta wm1 ON
(wm1.post_id = p1.id AND wm1.meta_value IS NOT NULL AND wm1.meta_key = '_thumbnail_id' )
LEFT JOIN wp_mermsemrpostmeta wm2 ON
(wm1.meta_value = wm2.post_id AND wm2.meta_key = '_wp_attached_file' AND wm2.meta_value IS NOT NULL )
WHERE p1.post_status='publish' AND p1.post_type='post'
ORDER BY p1.post_date DESC LIMIT 9`;
con.query(findPostsQry, function (err, result, fields) {
// if any error while executing above query, throw error
if (err) throw err;
// if there is no error, you have the result
console.log(result);
res.status(200).json( [{payload: result}]);
});
})
con.query(findPostsQry, function (err, result, fields) {
// if any error while executing above query, throw error
if (err) throw err;
// if there is no error, you have the result
console.log(result);
res.status(200).json( [{payload: result}]);
});
})
app.get('/wp/coregrade', function (req, res) {
let findPostsQry = `SELECT p1.id AS id, p1.*, wm2.meta_value FROM wp_mermsemrposts p1
LEFT JOIN wp_mermsemrpostmeta wm1 ON
(wm1.post_id = p1.id AND wm1.meta_value IS NOT NULL AND wm1.meta_key = '_thumbnail_id' )
LEFT JOIN wp_mermsemrpostmeta wm2 ON
(wm1.meta_value = wm2.post_id AND wm2.meta_key = '_wp_attached_file' AND wm2.meta_value IS NOT NULL )
WHERE p1.post_status='publish' AND p1.post_type='post'
ORDER BY p1.post_date DESC LIMIT 9`;
con.query(findPostsQry, function (err, result, fields) {
// if any error while executing above query, throw error
if (err) throw err;
// if there is no error, you have the result
console.log(result);
res.status(200).json( [{payload: result}]);
});
})
app.get('/wp/chiefsoft', function (req, res) {
let findPostsQry = `SELECT p1.id AS id, p1.*, wm2.meta_value FROM wp_mermsemrposts p1
LEFT JOIN wp_mermsemrpostmeta wm1 ON
(wm1.post_id = p1.id AND wm1.meta_value IS NOT NULL AND wm1.meta_key = '_thumbnail_id' )
LEFT JOIN wp_mermsemrpostmeta wm2 ON
(wm1.meta_value = wm2.post_id AND wm2.meta_key = '_wp_attached_file' AND wm2.meta_value IS NOT NULL )
WHERE p1.post_status='publish' AND p1.post_type='post'
ORDER BY p1.post_date DESC LIMIT 9`;
con.query(findPostsQry, function (err, result, fields) {
// if any error while executing above query, throw error
if (err) throw err;
// if there is no error, you have the result
console.log(result);
res.status(200).json( [{payload: result}]);
});
})
app.listen(PORT,