- go后台限制只能本机登录控制台,控制台给出弹幕审核管理员密码
- 弹幕审核页面要单独做
- post和websocket的URL可能需要修改
- username是唯一标识,应该对应微信号而不是nickname
- 需要修改结束按钮中的跳转URL
/* 前端发往后台 */
POST {
"action": "login",
"content": {
"online": "true" or "false"
}
}
/* 前端发往云端 */
URL: https://sampling.alphamj.cn/signin
POST {
"username": "用户名",
"password": "密码"
}
RETURN {"result": "success", "uid": user.id}
or RETURN {"result": "error", "msg": "相应的错误信息"}
/* 后台发往前端 */
// 用户信息
{
"action": "append-user",
"content": {
"nickname": "Justin Bieber",
"uid": "1234567890",
"avatar": "assets/avatars/avatar0.png"
}
}
// 初始化在线功能和服务权限
{
"action": "initialize",
"content": {
"online": "true", // or "false"
"userType": "vip" // or "normal" or "debug"
}
}
// 发送中奖人和中奖项
{
"action": "who-is-lucky-dog",
"content": {
"uid": "1234567890",
"nickname": "Yeah...",
"itemname": "一等奖"
}
}
/* 前端发往后台 */
// 手动导入的用户信息
{
"action": "manual-import",
"content": {
"username": "string",
// 多个不确定的"string": "string"
}
}
// 切换展示页
{
"action":"switch-page",
"content":"签到墙"
}
// 活动开始时间
{
"action":"activity-start-time",
"content":"2019-3-7-0-3-42"
}
// 活动结束时间
{
"action":"activity-end-time",
"content":"2019-3-7-0-3-42"
}
// 展示活动
{
"action":"show-activity",
"content":""
}
// 隐藏活动
{
"action":"hide-activity",
"content":""
}
// 开始抽奖
{
"action":"start-drawing",
"content":{
"dkind":"cube"
}
}
// 停止抽奖
{
"action":"stop-drawing",
"content":""
}
// 中奖无效
{
"action":"disable-lucky",
"content":{
"itemname":"一等奖",
"uid":"1234567890",
"username":"Yeah..."
}
}
// 背景图片POST,JSON内容在data中
// base64Str这里会是一个很长的字符串
// 服务器收到后应返回 { "success": "true" }
POST {
"type": "POST",
"url": "http://localhost:1923/bg-img",
"data": {
"action": "background-image",
"content": {
"base64Str": "a long string"
}
},
}
// 局部更新消息
{
"action":"part-update",
"content":{
"part":"#danmu-sets",
"danmu-position":"top",
"danmu-speed":"slow",
"font-color":"",
"font-family":"SimHei",
"font-size":"20",
"opacity":"5"
}
}
or
{
"action":"part-update",
"content":{
"part":"#basic-info",
"activity-name":"lalala"
}
}
or
{
"action":"part-update",
"content":{
"part":"#prize-pool",
"draw-mode":"1"
}
}
or
{
"action":"part-update",
"content":{
"part":"#style-theme",
"background-img":"none",
// "none" 表示没有背景图片
// "base64Str" 表示使用之前传过来的base64格式的图片
// 其他内容表示网络URL
"draw-music":"haorizi",
"draw-style":"cube",
"lucky-music":"bingo",
"reward-music":"laciji",
"theme-color":"#5E2727"
}
}
// 弹幕开关
{
"action":"danmu-switch",
"content":false
}
// 弹幕审核开关
{
"action":"danmu-check-switch",
"content":false
}
- bootstrap 4.3.1
- jQuery 2.1.1
- 图标字体:materialdesignicons.min.css
- 日期输入:Ecalendar.jquery.min.js
- 下拉选择:chosen.jquery.js
- Toast提示框:notifyMessage.js
- 颜色选择器:jquery.minicolors.min.css