-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
151 lines (122 loc) · 3.67 KB
/
index.js
File metadata and controls
151 lines (122 loc) · 3.67 KB
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
const express = require('express')
const { spawn } = require('child_process')
const app = express()
const path=require("path");
const ejs=require("ejs");
const multer = require('multer')
const upload = multer({
dest: 'data',
limits: {
fileSize: 1000000,
},
fileFilter(req, file, cb) {
if (!file.originalname.match(/\.(png|jpg|jpeg)$/)){
cb(new Error('Please upload an image.'))
}
cb(undefined, true)
}
})
const upload_py = multer({
dest: 'data',
limits: {
fileSize: 1000000,
},
fileFilter(req, file, cb) {
if (!file.originalname.match(/\.(py)$/)){
cb(new Error('Please upload an python file.'))
}
cb(undefined, true)
}
})
app.set('view engine', 'ejs');
app.use(express.static(path.resolve(__dirname,'public')));
app.post('/upload', upload.single('upload'), (req, res) => {
if(req.file){
console.log("File name",req.file.filename)
const python = spawn('python', ['creator.py',`data/`+req.file.filename,'data/Trees/','100','100','public/Mosaic.jpeg'])
python.stdout.on('data', function (data) {
console.log('Pipe data from python script ...')
console.log(data.toString())
})
python.stdout.on('close', function (code) {
console.log('Closed with code ',code)
res.render('pages/image',{data: "Mosaic.jpeg"});
})
}else{
res.status(400).json({msg:"Img Not Received"})
}
})
app.get('/mosaic',(req,res)=>{
console.log("Mosaic Route")
res.render('pages/mosaic');
})
app.get('/age-gender',(req,res)=>{
console.log("Age-Gender Route")
res.render('pages/gad');
})
app.post('/upload-age-gender', upload.single('upload'), (req, res) => {
if(req.file){
console.log("File name",req.file.filename)
const python = spawn('python', ['gad.py',`data/`+req.file.filename])
python.stdout.on('data', function (data) {
try{
console.log('Pipe data from python script ...')
console.log(data.toString())
}catch(dataError){
console.log("DATA ERROR:",dataError)
}
})
python.stdout.on('close', function (code) {
try{
console.log('Closed with code ',code)
res.render('pages/gadImage',{data: "Person.jpeg"});
}catch(closeError){
console.log("CLOSE ERROR:",closeError)
}
})
}else{
res.status(400).json({msg:"Img Not Received"})
}
})
app.get('/auto-stackoverflow',(req,res)=>{
console.log("Age-Gender Route")
res.render('pages/stackOverflow',{data: ""});
})
app.post('/upload-py',upload_py.single('upload'),(req,res)=>{
if(req.file){
console.log("File name",req.file.filename)
const python = spawn('python', ['project3.py',`data/`+req.file.filename])
var output = ""
python.stdout.on('data', function (data) {
try{
console.log('Pipe data from python script ...')
output+=data.toString()
}catch(dataError){
console.log("DATA ERROR:",dataError)
}
})
python.stdout.on('close', function (code) {
try{
console.log('Closed with code ',code)
console.log("FINAL OUTPUT: ",output)
const outputUrl = output.split("'").filter(x=>x.length>5)
console.log(outputUrl.length)
res.render('pages/stackOverflow',{data: outputUrl})
// outputUrl.forEach(url=>res.redirect(301,url))
// res.render('pages/stackOverflow');
}catch(closeError){
console.log("CLOSE ERROR:",closeError)
}
})
}else{
res.status(400).json({msg:"Python file Not Received"})
}
})
app.get('/',(req,res)=>{
console.log("Home Route")
res.render('pages/index');
})
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => {
console.log(`App listening on port ${PORT}!`)
})