refactor randomquote, improve url redirects and remove username from rq
This commit is contained in:
parent
22ee0598b2
commit
6c27abad32
3 changed files with 70 additions and 51 deletions
|
@ -19,6 +19,9 @@ func (s *Server) getCurrentChannelLogs(c echo.Context) error {
|
||||||
day := time.Now().Day()
|
day := time.Now().Day()
|
||||||
|
|
||||||
redirectURL := fmt.Sprintf("/channelid/%s/%d/%d/%d", channelID, year, month, day)
|
redirectURL := fmt.Sprintf("/channelid/%s/%d/%d/%d", channelID, year, month, day)
|
||||||
|
if len(c.QueryString()) > 0 {
|
||||||
|
redirectURL += "?" + c.QueryString()
|
||||||
|
}
|
||||||
return c.Redirect(http.StatusSeeOther, redirectURL)
|
return c.Redirect(http.StatusSeeOther, redirectURL)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,6 +32,9 @@ func (s *Server) getCurrentChannelLogsByName(c echo.Context) error {
|
||||||
day := time.Now().Day()
|
day := time.Now().Day()
|
||||||
|
|
||||||
redirectURL := fmt.Sprintf("/channel/%s/%d/%d/%d", channel, year, month, day)
|
redirectURL := fmt.Sprintf("/channel/%s/%d/%d/%d", channel, year, month, day)
|
||||||
|
if len(c.QueryString()) > 0 {
|
||||||
|
redirectURL += "?" + c.QueryString()
|
||||||
|
}
|
||||||
return c.Redirect(http.StatusSeeOther, redirectURL)
|
return c.Redirect(http.StatusSeeOther, redirectURL)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
62
api/user.go
62
api/user.go
|
@ -1,13 +1,8 @@
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"compress/gzip"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"math/rand"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -33,6 +28,9 @@ func (s *Server) getCurrentUserLogs(c echo.Context) error {
|
||||||
month := int(time.Now().Month())
|
month := int(time.Now().Month())
|
||||||
|
|
||||||
redirectURL := fmt.Sprintf("/channelid/%s/userid/%s/%d/%d", channelID, userID, year, month)
|
redirectURL := fmt.Sprintf("/channelid/%s/userid/%s/%d/%d", channelID, userID, year, month)
|
||||||
|
if len(c.QueryString()) > 0 {
|
||||||
|
redirectURL += "?" + c.QueryString()
|
||||||
|
}
|
||||||
return c.Redirect(303, redirectURL)
|
return c.Redirect(303, redirectURL)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,6 +42,9 @@ func (s *Server) getCurrentUserLogsByName(c echo.Context) error {
|
||||||
month := int(time.Now().Month())
|
month := int(time.Now().Month())
|
||||||
|
|
||||||
redirectURL := fmt.Sprintf("/channel/%s/user/%s/%d/%d", channel, username, year, month)
|
redirectURL := fmt.Sprintf("/channel/%s/user/%s/%d/%d", channel, username, year, month)
|
||||||
|
if len(c.QueryString()) > 0 {
|
||||||
|
redirectURL += "?" + c.QueryString()
|
||||||
|
}
|
||||||
return c.Redirect(303, redirectURL)
|
return c.Redirect(303, redirectURL)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,53 +121,14 @@ func (s *Server) getRandomQuoteByName(c echo.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) getRandomQuote(c echo.Context) error {
|
func (s *Server) getRandomQuote(c echo.Context) error {
|
||||||
userID := c.Param("userid")
|
|
||||||
channelID := c.Param("channelid")
|
channelID := c.Param("channelid")
|
||||||
|
userID := c.Param("userid")
|
||||||
|
|
||||||
var userLogs []string
|
rawMessage, err := s.fileLogger.ReadRandomMessageForUser(channelID, userID)
|
||||||
var lines []string
|
if err != nil {
|
||||||
|
return c.JSON(http.StatusInternalServerError, err.Error())
|
||||||
if channelID == "" || userID == "" {
|
|
||||||
return c.JSON(http.StatusNotFound, "error finding logs")
|
|
||||||
}
|
}
|
||||||
|
channel, user, message := twitch.ParseMessage(rawMessage)
|
||||||
years, _ := ioutil.ReadDir(s.logPath + "/" + channelID)
|
|
||||||
for _, yearDir := range years {
|
|
||||||
year := yearDir.Name()
|
|
||||||
months, _ := ioutil.ReadDir(s.logPath + "/" + channelID + "/" + year + "/")
|
|
||||||
for _, monthDir := range months {
|
|
||||||
month := monthDir.Name()
|
|
||||||
path := fmt.Sprintf("%s/%s/%s/%s/%s.txt", s.logPath, channelID, year, month, userID)
|
|
||||||
if _, err := os.Stat(path); err == nil {
|
|
||||||
userLogs = append(userLogs, path)
|
|
||||||
} else if _, err := os.Stat(path + ".gz"); err == nil {
|
|
||||||
userLogs = append(userLogs, path+".gz")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if len(userLogs) < 1 {
|
|
||||||
return c.JSON(http.StatusNotFound, "error finding logs")
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, logFile := range userLogs {
|
|
||||||
f, _ := os.Open(logFile)
|
|
||||||
|
|
||||||
scanner := bufio.NewScanner(f)
|
|
||||||
|
|
||||||
if strings.HasSuffix(logFile, ".gz") {
|
|
||||||
gz, _ := gzip.NewReader(f)
|
|
||||||
scanner = bufio.NewScanner(gz)
|
|
||||||
}
|
|
||||||
|
|
||||||
for scanner.Scan() {
|
|
||||||
line := scanner.Text()
|
|
||||||
lines = append(lines, line)
|
|
||||||
}
|
|
||||||
f.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
ranNum := rand.Intn(len(lines))
|
|
||||||
channel, user, message := twitch.ParseMessage(lines[ranNum])
|
|
||||||
|
|
||||||
if shouldRespondWithJson(c) {
|
if shouldRespondWithJson(c) {
|
||||||
|
|
||||||
|
@ -181,7 +143,7 @@ func (s *Server) getRandomQuote(c echo.Context) error {
|
||||||
return c.JSON(http.StatusOK, randomQ)
|
return c.JSON(http.StatusOK, randomQ)
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.String(http.StatusOK, fmt.Sprintf("%s: %s", user.DisplayName, message.Text))
|
return c.String(http.StatusOK, message.Text)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) getUserLogs(c echo.Context) error {
|
func (s *Server) getUserLogs(c echo.Context) error {
|
||||||
|
|
|
@ -6,6 +6,8 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"math/rand"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -45,7 +47,7 @@ func (l *Logger) LogMessageForUser(channel string, user twitch.User, message twi
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Logger) ReadLogForUser(channelID string, userID string, year int, month int) ([]string, error) {
|
func (l *Logger) ReadLogForUser(channelID, userID string, year int, month int) ([]string, error) {
|
||||||
if channelID == "" || userID == "" {
|
if channelID == "" || userID == "" {
|
||||||
return []string{}, fmt.Errorf("Invalid channelID: %s or userID: %s", channelID, userID)
|
return []string{}, fmt.Errorf("Invalid channelID: %s or userID: %s", channelID, userID)
|
||||||
}
|
}
|
||||||
|
@ -89,3 +91,52 @@ func (l *Logger) ReadLogForUser(channelID string, userID string, year int, month
|
||||||
|
|
||||||
return content, nil
|
return content, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (l *Logger) ReadRandomMessageForUser(channelID, userID string) (string, error) {
|
||||||
|
var userLogs []string
|
||||||
|
var lines []string
|
||||||
|
|
||||||
|
if channelID == "" || userID == "" {
|
||||||
|
return "", errors.New("missing channelID or userID")
|
||||||
|
}
|
||||||
|
|
||||||
|
years, _ := ioutil.ReadDir(l.logPath + "/" + channelID)
|
||||||
|
for _, yearDir := range years {
|
||||||
|
year := yearDir.Name()
|
||||||
|
months, _ := ioutil.ReadDir(l.logPath + "/" + channelID + "/" + year + "/")
|
||||||
|
for _, monthDir := range months {
|
||||||
|
month := monthDir.Name()
|
||||||
|
path := fmt.Sprintf("%s/%s/%s/%s/%s.txt", l.logPath, channelID, year, month, userID)
|
||||||
|
if _, err := os.Stat(path); err == nil {
|
||||||
|
userLogs = append(userLogs, path)
|
||||||
|
} else if _, err := os.Stat(path + ".gz"); err == nil {
|
||||||
|
userLogs = append(userLogs, path+".gz")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(userLogs) < 1 {
|
||||||
|
return "", errors.New("no log found")
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, logFile := range userLogs {
|
||||||
|
f, _ := os.Open(logFile)
|
||||||
|
|
||||||
|
scanner := bufio.NewScanner(f)
|
||||||
|
|
||||||
|
if strings.HasSuffix(logFile, ".gz") {
|
||||||
|
gz, _ := gzip.NewReader(f)
|
||||||
|
scanner = bufio.NewScanner(gz)
|
||||||
|
}
|
||||||
|
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
lines = append(lines, line)
|
||||||
|
}
|
||||||
|
f.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
ranNum := rand.Intn(len(lines))
|
||||||
|
|
||||||
|
return lines[ranNum], nil
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue