Browse Source

1233

master
lichong 9 months ago
parent
commit
5eb588ce52
  1. 50
      api/main.py
  2. 10
      front/src/views/home.vue
  3. 4
      front/src/views/login.vue
  4. 45
      front/src/views/student.vue
  5. 34
      front/src/views/teacher.vue

50
api/main.py

@ -15,43 +15,38 @@ collection = db["users"]
app.config["SECRET_KEY"] = "secret!" app.config["SECRET_KEY"] = "secret!"
socketio = SocketIO(app, cors_allowed_origins="*") socketio = SocketIO(app, cors_allowed_origins="*")
# 存储连接的客户端的房间号 # 存储连接的客户端的房间号
clients = {} clients = []
adminSid = ""
@socketio.on("connect", namespace="/ws/video") @socketio.on("connect", namespace="/ws/video")
def on_connect(): def on_connect():
print("Client connected") global clients
global adminSid
sid = request.sid
# 假设客户端在连接时发送了一个 id
id = request.args.get("id")
isAdmin = request.args.get("isAdmin")
if isAdmin == "1":
adminSid = sid
print(87874, adminSid)
clients.append({"id": id, "sid": sid, "isAdmin": isAdmin})
@socketio.on("disconnect", namespace="/ws/video") @socketio.on("disconnect", namespace="/ws/video")
def on_disconnect(): def on_disconnect():
print("Client disconnected") global clients
# 移除客户端的房间关联 for item in clients:
room = clients.pop(request.sid, None) if item["id"] == request.sid:
if room: clients.remove(item)
leave_room(room) print(f"Client disconnected with id {item['id']}")
@socketio.on("join", namespace="/ws/video") @socketio.on("video", namespace="/ws/video")
def on_join(data):
room = data["room"]
join_room(room)
clients[request.sid] = room
@socketio.on("leave", namespace="/ws/video")
def on_leave(data):
room = data["room"]
leave_room(room)
clients.pop(request.sid, None)
@socketio.on("message", namespace="/ws/video")
def handle_video_frame(message): def handle_video_frame(message):
# 广播视频帧给房间内的所有客户端,除了发送该帧的客户端 # 广播视频帧给老师
room = clients.get(request.sid) global adminSid
if room: socketio.emit("teacherVideo", message, room=adminSid)
emit("message", message, room=room, include_self=False)
# md5加密 # md5加密
@ -139,7 +134,6 @@ def insert_data():
admin = isAdmin(userJson["id"]) admin = isAdmin(userJson["id"])
if admin: if admin:
_id = ObjectId() _id = ObjectId()
print(77337, str(_id))
userItem = { userItem = {
"_id": _id, "_id": _id,
"xuexiaomingcheng": userJson["xuexiaomingcheng"], "xuexiaomingcheng": userJson["xuexiaomingcheng"],
@ -180,7 +174,6 @@ def query_data():
# 获取到POST过来的数据,转为json形式 # 获取到POST过来的数据,转为json形式
userJson = json.loads(resData) userJson = json.loads(resData)
admin = isAdmin(userJson["id"]) admin = isAdmin(userJson["id"])
print(777, userJson, admin)
if admin: if admin:
users = collection.find() users = collection.find()
serialized_data = [] serialized_data = []
@ -269,7 +262,6 @@ def updatePassword():
# 获取到POST过来的数据,转为json形式 # 获取到POST过来的数据,转为json形式
userJson = json.loads(resData) userJson = json.loads(resData)
admin = isAdmin(userJson["id"]) admin = isAdmin(userJson["id"])
print(777, userJson, admin)
if admin: if admin:
collection.update_one( collection.update_one(
{"_id": ObjectId(userJson["userid"])}, {"_id": ObjectId(userJson["userid"])},

10
front/src/views/home.vue

@ -36,11 +36,20 @@ export default {
userName: "", userName: "",
}; };
}, },
watch: {
"$router": {
handler(nev, olv) {
console.log(895, nev, olv)
},
deep: true
}
},
async mounted() { async mounted() {
await this.init(); await this.init();
}, },
methods: { methods: {
async init() { async init() {
console.log(895, this.$route)
if (!localStorage.getItem("userId")) { if (!localStorage.getItem("userId")) {
this.$router.push("/login"); this.$router.push("/login");
} }
@ -60,7 +69,6 @@ export default {
this.$router.push(route); this.$router.push(route);
}, },
}, },
watch: {},
computed: {}, computed: {},
}; };
</script> </script>

4
front/src/views/login.vue

@ -45,9 +45,7 @@ export default {
}, },
watch: {}, watch: {},
computed: {}, computed: {},
async mounted() { async mounted() { },
await this.init();
},
beforeUnmount() { }, beforeUnmount() { },
methods: { methods: {

45
front/src/views/student.vue

@ -53,6 +53,7 @@ import {
getUser, //user getUser, //user
} from "@/api/student"; } from "@/api/student";
import { ElMessage, ElMessageBox } from 'element-plus' import { ElMessage, ElMessageBox } from 'element-plus'
import io from 'socket.io-client';
export default { export default {
name: "student", name: "student",
components: {}, components: {},
@ -119,8 +120,7 @@ export default {
}, },
], ],
userData: {}, userData: {},
ws: null, socket: null,
videoStream: null,
}; };
}, },
watch: {}, watch: {},
@ -138,21 +138,17 @@ export default {
this.userData = res.list[0] this.userData = res.list[0]
}, },
async initWebSocket() { async initWebSocket() {
this.ws = new WebSocket('ws://127.0.0.1:5000/ws/video'); this.socket = io('http://localhost:5000/ws/video', { query: { id: this.userId, isAdmin: "0" } }); //
this.ws.binaryType = 'arraybuffer'; this.socket.on('connect', () => {
this.ws.onopen = () => { console.log('Connected to server');
console.log(1, 'WebSocket connected'); });
}; this.socket.on('message', (data) => {
this.ws.onerror = (err) => { console.log(78454, data)
console.error(2, 'WebSocket error:', err); });
};
this.ws.onclose = () => {
console.log(3, 'WebSocket disconnected');
};
}, },
async connectTeacher() { async connectTeacher() {
console.log(78744, this.socketMsg) console.log(78744, this.socketMsg)
this.socketMsg.emit('sendMsg', { sid: this.socketMsg.id, id: this.userId, msg: "我有问题" }); this.socket.emit('sendMsg', { sid: this.socketMsg.id, id: this.userId, msg: "我有问题" });
}, },
async startExam() { async startExam() {
try { try {
@ -185,14 +181,21 @@ export default {
let video = this.$refs['videoEL']; let video = this.$refs['videoEL'];
let canvas = document.createElement('canvas'); let canvas = document.createElement('canvas');
let ctx = canvas.getContext('2d'); let ctx = canvas.getContext('2d');
canvas.width = video.videoWidth; canvas.width = video.offsetWidth;
canvas.height = video.videoHeight; canvas.height = video.offsetHeight;
let sendFrame = () => { let sendFrame = () => {
ctx.drawImage(video, 0, 0, canvas.width, canvas.height); ctx.drawImage(video, 0, 0, canvas.width, canvas.height);
canvas.toBlob((blob) => { canvas.toBlob((blob) => {
let arrayBufferView = new Uint8Array(blob); let reader = new FileReader();
that.ws.send(arrayBufferView.buffer); reader.onloadend = () => {
}, 'image/jpeg'); let arrayBuffer = reader.result;
that.socket.emit('video', arrayBuffer,);
};
reader.readAsArrayBuffer(blob);
// let arrayBufferView = new Uint8Array(blob);
// console.log(89444, video)
// that.socket.emit('video', arrayBufferView.buffer);
}, 'image/png');
}; };
setInterval(sendFrame, 1000 / 30); // 30 FPS setInterval(sendFrame, 1000 / 30); // 30 FPS
}, },
@ -202,8 +205,8 @@ export default {
} }
}, },
closeWebSocket() { closeWebSocket() {
if (this.ws && this.ws.readyState === WebSocket.OPEN) { if (this.socket && this.socket.connected) {
this.ws.close(); this.socket.disconnect();
} }
}, },
}, },

34
front/src/views/teacher.vue

@ -202,9 +202,8 @@ export default {
formHeader: [], formHeader: [],
formHeaderLocal: [], formHeaderLocal: [],
formDisabled: false, formDisabled: false,
ws: null, socket: null,
videoStream: null, videoStream: null,
room: 'defaultRoom', //
}; };
}, },
watch: {}, watch: {},
@ -352,21 +351,16 @@ export default {
}, },
// //
async initWebSocket() { async initWebSocket() {
this.ws = new WebSocket(`ws://127.0.0.1:5000/ws/video`); this.socket = io('http://localhost:5000/ws/video',
console.log(787844, this.ws) { query: { id: localStorage.getItem('userId'), isAdmin: "1" } }
this.ws.binaryType = 'arraybuffer'; ); //
this.ws.onopen = () => { this.socket.on('connect', () => {
console.log(4, 'WebSocket connected'); console.log('Connected to server');
this.ws.send(JSON.stringify({ type: 'join', room: this.room })); console.log(879784, this.socket.id)
}; });
this.ws.onerror = (err) => { this.socket.on('teacherVideo', (data) => {
console.error(5, 'WebSocket error:', err);
};
this.ws.onclose = () => {
console.log(6, 'WebSocket disconnected');
};
this.ws.onmessage = (event) => {
// //
const arrayBuffer = event.data; const arrayBuffer = event.data;
const blob = new Blob([arrayBuffer], { type: 'image/jpeg' }); const blob = new Blob([arrayBuffer], { type: 'image/jpeg' });
const urlCreator = window.URL || window.webkitURL; const urlCreator = window.URL || window.webkitURL;
@ -379,7 +373,7 @@ export default {
this.$refs.videoEL1.srcObject = null; // this.$refs.videoEL1.srcObject = null; //
this.$refs.videoEL1.src = imageUrl; // this.$refs.videoEL1.src = imageUrl; //
this.$refs.videoEL1.play(); this.$refs.videoEL1.play();
}; });
}, },
stopVideoStream() { stopVideoStream() {
if (this.videoStream) { if (this.videoStream) {
@ -387,8 +381,8 @@ export default {
} }
}, },
closeWebSocket() { closeWebSocket() {
if (this.ws && this.ws.readyState === WebSocket.OPEN) { if (this.socket && this.socket.connected) {
this.ws.close(); this.socket.disconnect();
} }
}, },
}, },
@ -403,6 +397,6 @@ export default {
position: relative; position: relative;
width: 390px; width: 390px;
height: 390px; height: 390px;
background-color: blueviolet background-color: aliceblue
} }
</style> </style>

Loading…
Cancel
Save