-
Notifications
You must be signed in to change notification settings - Fork 1
/
streams.go
143 lines (133 loc) · 3.53 KB
/
streams.go
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
package main
import (
"database/sql"
"errors"
"fmt"
"net/http"
"github.com/gin-gonic/gin"
)
type Stream struct {
Id int `json:"streamId"`
IsValid int `json:"isValidStream"`
StreamKey string `json:"streamKey"`
}
type StreamController struct {
DB *DatabaseUtility
}
func (sc *StreamController) VerifyStream(c *gin.Context) {
key := c.DefaultPostForm("name", "")
if key == "" {
c.JSON(http.StatusBadRequest, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "Something went wrong getting the stream key!",
})
return
}
result, err := sc.DB.ToggleStream(1, key)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{SUCCESS_KEY: false, RESPONSE_MESSAGE_KEY: err.Error()})
return
}
rowsAffected, _ := result.RowsAffected()
isValidKey := rowsAffected == 1
switch {
case isValidKey:
c.JSON(http.StatusOK, gin.H{
SUCCESS_KEY: true,
RESPONSE_MESSAGE_KEY: "Stream key is good!",
})
case !isValidKey:
c.JSON(http.StatusNotFound, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "No stream key here!",
})
}
}
func (sc *StreamController) GetStreams(c *gin.Context) {
streams := make([]Stream, 0)
rows, err := sc.DB.GetStreams()
defer rows.Close()
if err != nil {
switch {
case errors.Is(err, sql.ErrNoRows):
c.JSON(http.StatusNotFound, gin.H{SUCCESS_KEY: false, RESPONSE_MESSAGE_KEY: err.Error()})
default:
c.JSON(http.StatusBadRequest, gin.H{SUCCESS_KEY: false, RESPONSE_MESSAGE_KEY: err.Error()})
}
return
}
for rows.Next() {
var (
id, isValid int
streamKey string
)
err := rows.Scan(&id, &isValid, &streamKey)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{SUCCESS_KEY: false, RESPONSE_MESSAGE_KEY: err.Error()})
return
}
stream := Stream{id, isValid, streamKey}
streams = append(streams, stream)
}
c.JSON(http.StatusOK, gin.H{SUCCESS_KEY: true, "streams": streams})
}
func (sc *StreamController) CreateKey(c *gin.Context) {
guid := generateGUID()
_, err := sc.DB.CreateNewStream(guid)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: fmt.Sprintf("Failed to insert new record, %s", err.Error()),
})
}
c.JSON(http.StatusOK, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "Insert new stream ok!",
})
}
func (sc *StreamController) DeleteStream(c *gin.Context) {
id := c.Param("id")
if id == "" {
c.JSON(http.StatusBadRequest, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "Something went wrong getting the stream id!",
})
return
}
_, err := sc.DB.DeleteStream(id)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: fmt.Sprintf("Failed to delete existing record, %s", err.Error()),
})
}
c.JSON(http.StatusOK, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "Deleted stream!",
})
}
func (sc *StreamController) EndStream(c *gin.Context) {
key := c.DefaultPostForm("name", "")
if key == "" {
c.JSON(http.StatusBadRequest, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "Something went wrong getting the stream key!",
})
return
}
result, _ := sc.DB.ToggleStream(0, key)
rowsAffected, _ := result.RowsAffected()
isValidKey := rowsAffected == 1
switch {
case isValidKey:
c.JSON(http.StatusOK, gin.H{
SUCCESS_KEY: true,
RESPONSE_MESSAGE_KEY: "Stream key is good!",
})
case !isValidKey:
c.JSON(http.StatusNotFound, gin.H{
SUCCESS_KEY: false,
RESPONSE_MESSAGE_KEY: "No stream key here!",
})
}
}