-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
159 lines (139 loc) · 5.54 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
const express = require("express");
const app = express();
const http = require("http").Server(app);
const io = require("socket.io")(http);
const { exec } = require("child_process");
function parseData(stdout, type_of_data) {
var regex = "";
if (type_of_data == "playlist") {
regex = /title: (.*)/g;
} else if (type_of_data == "image") {
regex = /generated_image_output_path: (.*)/g;
}
const matches = stdout.matchAll(regex);
const playlist = [];
for (const match of matches) {
const title = match[1];
const url = match[2];
playlist.push({ title, url });
}
return playlist;
}
io.sockets.on("connection", function (socket) {
console.log("User connected");
// socket.on('message', function(data) {
// console.log(data)
// io.emit('respond', data);
// });
// Handle run script request
socket.on("run_script", (jsonData) => {
// console.log('Received run_script request');
console.log("Received run_script request with JSON data:", jsonData);
console.log(jsonData.hours);
// const parsedData = JSON.parse(jsonData);
// Execute the Python script as a child process
exec(
`python main.py --hours ${jsonData.hours} --genre "${jsonData.genre}" --mood "${jsonData.mood}" --token "${jsonData.access_token}"`,
(error, stdout, stderr) => {
if (error) {
console.error(`Error executing Python script: ${error.message}`);
socket.emit("script_response", { status: 0 });
return;
}
console.log("script response!");
console.log(stdout);
// Emit the script response to the client
socket.emit("script_response", { status: 1 });
}
);
});
socket.on("get_music_list", (jsonData) => {
// console.log('Received run_script request');
console.log("Received get_music_list request with JSON data:", jsonData);
console.log(jsonData.hours);
// const parsedData = JSON.parse(jsonData);
// Execute the Python script as a child process
exec(
`python generate_music_list.py --datetime ${jsonData.datetime} --hours ${jsonData.hours} --genre "${jsonData.genre}" --mood "${jsonData.mood}" --token "${jsonData.access_token}"`,
(error, stdout, stderr) => {
if (error) {
console.error(`Error executing Python script: ${error.message}`);
socket.emit("get_music_list_response", { status: 0 });
return;
}
console.log("script response!");
console.log(parseData(stdout, "playlist"));
console.log(parseData(stdout, "image"));
const fs = require("fs");
const image_path = parseData(stdout, "image");
const image = fs.readFileSync(image_path[0].title, {
encoding: "base64",
});
// Emit the script response to the client
socket.emit("get_music_list_response", {
status: 1,
list_data: parseData(stdout, "playlist"),
image: image,
});
}
);
});
socket.on("create_playlist", (jsonData) => {
// console.log('Received run_script request');
console.log("Received create_playlist request with JSON data:", jsonData);
// const parsedData = JSON.parse(jsonData);
// create a string that can be passed into the python script, space separated, with quotes around each element of jsonData.musicArray
let musicArrayString = "";
for (let i = 0; i < jsonData.musicArray.length; i++) {
musicArrayString += `"${jsonData.musicArray[i]}" `;
}
// Execute the Python script as a child process
exec(
`python create_playlist.py --hours ${jsonData.hours} --genre "${jsonData.genre}" --mood "${jsonData.mood}" --token "${jsonData.access_token}" --music_array ${musicArrayString}`,
(error, stdout, stderr) => {
if (error) {
console.error(`Error executing Python script: ${error.message}`);
socket.emit("create_playlist_response", { status: 0 });
return;
}
console.log("script response!");
console.log("stdout!!!!!!!");
console.log(stdout);
// Emit the script response to the client
socket.emit("create_playlist_response", { status: 1 });
}
);
});
socket.on("create_video", (jsonData) => {
// console.log('Received run_script request');
console.log("Received create_video request with JSON data:", jsonData);
// const parsedData = JSON.parse(jsonData);
// create a string that can be passed into the python script, space separated, with quotes around each element of jsonData.musicArray
let musicArrayString = "";
for (let i = 0; i < jsonData.musicArray.length; i++) {
musicArrayString += `"${jsonData.musicArray[i]}" `;
}
// Execute the Python script as a child process
exec(
`python create_video.py --datetime ${jsonData.datetime} --hours ${jsonData.hours} --genre "${jsonData.genre}" --mood "${jsonData.mood}" --token "${jsonData.access_token}" --music_array ${musicArrayString}`,
(error, stdout, stderr) => {
if (error) {
console.error(`Error executing Python script: ${error.message}`);
socket.emit("create_playlist_response", { status: 0 });
return;
}
console.log("script response!");
console.log("stdout!!!!!!!");
console.log(stdout);
// Emit the script response to the client
socket.emit("create_playlist_response", { status: 1 });
}
);
});
socket.on("disconnect", () => {
console.log("User disconnected");
});
});
const server = http.listen(5000, function () {
console.log("Running on port 5000");
});