Browse Source

125444

master
lichong 8 months ago
parent
commit
11729f20ce
  1. 60
      api/main.py
  2. 8
      front/src/api/teacher.js
  3. 32
      front/src/component/table.vue
  4. 9
      front/src/views/student.vue
  5. 57
      front/src/views/teacher.vue

60
api/main.py

@ -92,9 +92,7 @@ def handle_video_frame(message):
# 使用cv2.imdecode将数组解码为图像 # 使用cv2.imdecode将数组解码为图像
image = cv2.imdecode(np_data, cv2.IMREAD_COLOR) image = cv2.imdecode(np_data, cv2.IMREAD_COLOR)
checkVedioResult(message, image) checkVedioResult(message, image)
socketio.emit( socketio.emit("teacherVideo" + message["userId"], message, to=adminSid)
"teacherVideo" + message["userId"], message, to=adminSid
)
def checkVedioResult(message, image): def checkVedioResult(message, image):
@ -133,20 +131,14 @@ def checkVedioResult(message, image):
for item in clients: for item in clients:
if item["id"] == message["userId"]: if item["id"] == message["userId"]:
sid = item["sid"] sid = item["sid"]
socketio.emit( socketio.emit("studentMsg" + message["userId"], message, to=sid)
"studentMsg" + message["userId"], message, to=sid
)
# print(97444, type) # print(97444, type)
zuobiItem = { zuobiItem = {
"userId": message["userId"], "userId": message["userId"],
"msg": message["data"], "msg": message["data"],
"type": type, "type": type,
"create_at": time.strftime( "create_at": time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time())),
"%Y-%m-%d %H:%M:%S", time.localtime(time.time()) "update_at": time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time())),
),
"update_at": time.strftime(
"%Y-%m-%d %H:%M:%S", time.localtime(time.time())
),
"isExit": 1, "isExit": 1,
} }
addzuobi(zuobiItem) addzuobi(zuobiItem)
@ -158,9 +150,7 @@ def handle_talk(message):
global adminSid global adminSid
# print(f"Received video frame from {message['userId']}") # print(f"Received video frame from {message['userId']}")
message["type"] = "talk" message["type"] = "talk"
socketio.emit( socketio.emit("teacherTalk" + message["userId"], message, to=adminSid)
"teacherTalk" + message["userId"], message, to=adminSid
)
zuobiItem = { zuobiItem = {
"userId": message["userId"], "userId": message["userId"],
"msg": message["data"], "msg": message["data"],
@ -177,9 +167,7 @@ def handle_msg(message):
# 说话实时传输给老师 # 说话实时传输给老师
global adminSid global adminSid
# print(f"Received video frame from {message['userId']}") # print(f"Received video frame from {message['userId']}")
socketio.emit( socketio.emit("teacherMsg" + message["userId"], message, to=adminSid)
"teacherMsg" + message["userId"], message, to=adminSid
)
zuobiItem = { zuobiItem = {
"userId": message["userId"], "userId": message["userId"],
"msg": message["data"], "msg": message["data"],
@ -198,9 +186,7 @@ def handle_answer_msg(message):
if item["id"] == message["userId"]: if item["id"] == message["userId"]:
sid = item["sid"] sid = item["sid"]
message["type"] = "answer" message["type"] = "answer"
socketio.emit( socketio.emit("studentMsg" + message["userId"], message, to=sid)
"studentMsg" + message["userId"], message, to=sid
)
zuobiItem = { zuobiItem = {
"userId": message["userId"], "userId": message["userId"],
"msg": message["data"], "msg": message["data"],
@ -498,7 +484,37 @@ def getzuobi():
} }
# 警告学生
@app.route("/jinggao", methods=["post"])
def jinggao():
resData = request.data
# 获取到POST过来的数据,转为json形式
userJson = json.loads(resData)
studentId = userJson["studentId"]
sid = ""
for item in clients:
if item["id"] == studentId:
sid = item["sid"]
message = {"type": "jinggao", "data": "请遵守考试规则"}
socketio.emit("studentMsg" + studentId, message, to=sid)
zuobiItem = {
"userId": studentId,
"msg": message["data"],
"type": "jinggao",
"create_at": time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time())),
"update_at": time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time())),
"isExit": 1,
}
addzuobi(zuobiItem)
return {
"code": 200,
"msg": "警告成功",
"list": [],
"hasError": False,
}
if __name__ == "__main__": if __name__ == "__main__":
initData() initData()
# app.run(debug=True) # app.run(debug=True)
socketio.run(app, host='0.0.0.0', port=5000, debug=True) socketio.run(app, host="0.0.0.0", port=5000, debug=True)

8
front/src/api/teacher.js

@ -59,3 +59,11 @@ export function getzuobi(data = {}) {
data: { id: localStorage.getItem("userId"), ...data }, data: { id: localStorage.getItem("userId"), ...data },
}); });
} }
//警告学生
export function jinggao(data = {}) {
return _axios({
url: `/v1/jinggao`,
method: "POST",
data: { id: localStorage.getItem("userId"), ...data },
});
}

32
front/src/component/table.vue

@ -38,23 +38,43 @@
</template> </template>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column fixed="right" align="center" label="Operations" width="110"> <el-table-column fixed="right" align="center" label="Operations" width="180">
<template #default="scope"> <template #default="scope">
<el-tooltip content="查看详细信息" placement="top">
<el-button link type="primary" text @click="detailInfo(scope.row)"> <el-button link type="primary" text @click="detailInfo(scope.row)">
<el-icon> <el-icon>
<InfoFilled /> <InfoFilled />
</el-icon> </el-icon>
</el-button> </el-button>
</el-tooltip>
<el-tooltip content="编辑信息" placement="top">
<el-button link type="primary" text @click="editInfo(scope.row)"> <el-button link type="primary" text @click="editInfo(scope.row)">
<el-icon> <el-icon>
<Edit /> <Edit />
</el-icon> </el-icon>
</el-button> </el-button>
</el-tooltip>
<el-tooltip content="更改密码" placement="top">
<el-button link type="primary" text @click="updateMima(scope.row)"> <el-button link type="primary" text @click="updateMima(scope.row)">
<el-icon> <el-icon>
<WalletFilled /> <WalletFilled />
</el-icon> </el-icon>
</el-button> </el-button>
</el-tooltip>
<el-tooltip content="警告学生" placement="top">
<el-button link type="primary" text @click="jingaoxuesheng(scope.row)">
<el-icon>
<WarnTriangleFilled />
</el-icon>
</el-button>
</el-tooltip>
<el-tooltip content="显示作弊详情" placement="top">
<el-button link type="primary" text @click="showzuobi(scope.row)">
<el-icon>
<QuestionFilled />
</el-icon>
</el-button>
</el-tooltip>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -63,7 +83,7 @@
import _ from "lodash" import _ from "lodash"
export default { export default {
name: "app", name: "app",
emits: ["detailInfo", "editInfo"], emits: ["detailInfo", "editInfo", "updateMima", "jingaoxuesheng", "showzuobi"],
props: { props: {
refName: { refName: {
typeof: String, typeof: String,
@ -100,7 +120,13 @@ export default {
}, },
updateMima(item) { updateMima(item) {
this.$emit("updateMima", item); this.$emit("updateMima", item);
} },
jingaoxuesheng(item) {
this.$emit("jingaoxuesheng", item);
},
showzuobi(item) {
this.$emit("showzuobi", item);
},
}, },
watch: {}, watch: {},
computed: {}, computed: {},

9
front/src/views/student.vue

@ -211,7 +211,7 @@ export default {
}); });
console.log(78444, `studentMsg${this.userId}`) console.log(78444, `studentMsg${this.userId}`)
this.socket.on(`studentMsg${this.userId}`, (data) => { this.socket.on(`studentMsg${this.userId}`, (data) => {
console.log(78875454477, data) console.log(777, data)
let msg = _.get(data, ['data'], "") let msg = _.get(data, ['data'], "")
let answer = _.split(msg, "@@@") let answer = _.split(msg, "@@@")
let type = _.get(data, ['type'], "") let type = _.get(data, ['type'], "")
@ -220,6 +220,13 @@ export default {
message: `老师回答:${answer[1]}`, message: `老师回答:${answer[1]}`,
type: "success", type: "success",
}); });
} else if (type === "jinggao") {
ElMessage({
message: `${msg}`,
type: "error",
duration: 0,
showClose: true,
});
} else { } else {
if (type !== 'normal') { if (type !== 'normal') {
ElMessage({ ElMessage({

57
front/src/views/teacher.vue

@ -14,7 +14,8 @@
</div> </div>
<div> <div>
<vueTable ref="userTableParent" :refName="refName" :tableHeader="tableHeader" :tableData="tableData" <vueTable ref="userTableParent" :refName="refName" :tableHeader="tableHeader" :tableData="tableData"
@detailInfo="detailInfo" @editInfo="editInfo" @updateMima="updateMima"> @detailInfo="detailInfo" @editInfo="editInfo" @updateMima="updateMima" @jingaoxuesheng="jingaoxuesheng"
@showzuobi="showzuobi">
</vueTable> </vueTable>
<el-card> <el-card>
<template #header> <template #header>
@ -58,6 +59,32 @@
</div> </div>
</template> </template>
</el-dialog> </el-dialog>
<el-dialog v-model="showzuobiObj.show" :title="showzuobiObj.title" width="80%" draggable>
<div>
<el-table :data="zuobiListData" height="600">
<el-table-column prop="type" label="作弊类型"></el-table-column>
<el-table-column prop="msg" label="作弊信息" show-overflow-tooltip>
<template #default="scope">
<el-image
v-if="['many_humans', 'leave', 'normal', 'raise_hand', 'speak', 'stand', 'turn_head', 'use_phone'].indexOf(scope.row.type) !== -1 && _.trim(scope.row.msg)"
style="width: 20px; height: 20px;" :src="scope.row.msg" fit="fill" :preview-src-list="[scope.row.msg]"
preview-teleported>
</el-image>
<span v-else-if="scope.row.type !== 'answer'">{{ scope.row.msg }}</span>
<span v-else>{{ _.split(scope.row.msg, "@")[1] || '' }}</span>
</template>
</el-table-column>
<el-table-column prop="create_at" label="作弊时间"></el-table-column>
</el-table>
</div>
<template #footer v-if="!formDisabled">
<div class="dialog-footer">
<el-button @click="closeDialog(showzuobiObj)" type="info" plain>
取消
</el-button>
</div>
</template>
</el-dialog>
</template> </template>
<script> <script>
import vueTable from "../component/table.vue"; import vueTable from "../component/table.vue";
@ -70,6 +97,7 @@ import {
getUser, //user getUser, //user
updatePassword,// updatePassword,//
getzuobi,// getzuobi,//
jinggao,//
} from "@/api/teacher"; } from "@/api/teacher";
import io from "socket.io-client"; import io from "socket.io-client";
import { ElMessage, ElMessageBox } from 'element-plus' import { ElMessage, ElMessageBox } from 'element-plus'
@ -220,6 +248,12 @@ export default {
show: false, show: false,
title: "新增用户", title: "新增用户",
}, },
showzuobiObj: {
show: false,
title: "查看作弊信息",
},
zuobiObjLocal: {},
zuobiListData: [],
formData: {}, formData: {},
formDataLocal: {}, formDataLocal: {},
formHeader: [], formHeader: [],
@ -231,6 +265,7 @@ export default {
canvasObj: {}, canvasObj: {},
zuobiInterval: null, zuobiInterval: null,
teacherEcharts: null, teacherEcharts: null,
}; };
}, },
watch: {}, watch: {},
@ -364,6 +399,25 @@ export default {
this.formHeader = _.cloneDeep(_.filter(this.formHeaderLocal, o => o.prop !== "mima")) this.formHeader = _.cloneDeep(_.filter(this.formHeaderLocal, o => o.prop !== "mima"))
this.formData = { ...item }; this.formData = { ...item };
}, },
//
async jingaoxuesheng(item) {
let res = await jinggao({ studentId: item._id });
ElMessage({ message: `${item.xueshengxingming}${res.msg}`, type: "success" });
},
//
showzuobi(item) {
if (_.isEmpty(this.zuobiObjLocal)) {
ElMessage({ message: `稍等一会`, type: "info" });
} else {
this.showzuobiObj = {
show: true,
title: `查看${item.xueshengxingming}的作弊信息`,
}
this.zuobiListData = JSON.parse(JSON.stringify(this.zuobiObjLocal[item._id]))
console.log(888, this.zuobiListData)
}
},
// //
editInfo(item) { editInfo(item) {
this.addDialog = { this.addDialog = {
@ -520,6 +574,7 @@ export default {
let res = await getzuobi() let res = await getzuobi()
let zuobiList = res.list let zuobiList = res.list
let zuobiObj = _.groupBy(zuobiList, 'userId') let zuobiObj = _.groupBy(zuobiList, 'userId')
this.zuobiObjLocal = JSON.parse(JSON.stringify(zuobiObj))
let allZuobi = {} let allZuobi = {}
let dataLocal = [] let dataLocal = []
for (let key in zuobiObj) { for (let key in zuobiObj) {

Loading…
Cancel
Save