2018-10-02 05:03:20 +00:00
package panel
2017-04-05 14:15:22 +00:00
2017-05-07 08:31:41 +00:00
import (
2017-12-30 05:47:46 +00:00
"database/sql"
2017-09-03 04:50:31 +00:00
"fmt"
"net/http"
"strconv"
2017-05-07 08:31:41 +00:00
2019-04-19 07:25:49 +00:00
c "github.com/Azareal/Gosora/common"
2019-04-29 01:28:55 +00:00
p "github.com/Azareal/Gosora/common/phrases"
2018-10-27 03:21:02 +00:00
"github.com/Azareal/Gosora/query_gen"
2017-07-17 10:23:42 +00:00
"github.com/Azareal/gopsutil/mem"
2018-10-02 05:03:20 +00:00
"github.com/pkg/errors"
2017-06-28 12:05:26 +00:00
)
2017-04-05 14:15:22 +00:00
2018-10-02 05:03:20 +00:00
type dashStmts struct {
todaysPostCount * sql . Stmt
todaysTopicCount * sql . Stmt
todaysTopicCountByForum * sql . Stmt
todaysNewUserCount * sql . Stmt
2019-04-29 01:28:55 +00:00
weeklyTopicCountByForum * sql . Stmt
2018-01-10 03:32:48 +00:00
}
2018-10-02 05:03:20 +00:00
// TODO: Stop hard-coding these queries
func dashMySQLStmts ( ) ( stmts dashStmts , err error ) {
db := qgen . Builder . GetConn ( )
2019-04-29 01:28:55 +00:00
var prepareStmt = func ( table string , ext string , dur string ) * sql . Stmt {
2018-10-02 05:03:20 +00:00
if err != nil {
return nil
}
2019-04-29 01:28:55 +00:00
stmt , ierr := db . Prepare ( "select count(*) from " + table + " where createdAt BETWEEN (utc_timestamp() - interval 1 " + dur + ") and utc_timestamp() " + ext )
2018-10-02 05:03:20 +00:00
err = errors . WithStack ( ierr )
return stmt
2018-01-10 03:32:48 +00:00
}
2018-10-02 05:03:20 +00:00
2019-04-29 01:28:55 +00:00
stmts . todaysPostCount = prepareStmt ( "replies" , "" , "day" )
stmts . todaysTopicCount = prepareStmt ( "topics" , "" , "day" )
stmts . todaysNewUserCount = prepareStmt ( "users" , "" , "day" )
stmts . todaysTopicCountByForum = prepareStmt ( "topics" , " and parentID = ?" , "day" )
stmts . weeklyTopicCountByForum = prepareStmt ( "topics" , " and parentID = ?" , "week" )
2018-10-02 05:03:20 +00:00
return stmts , err
}
// TODO: Stop hard-coding these queries
func dashMSSQLStmts ( ) ( stmts dashStmts , err error ) {
db := qgen . Builder . GetConn ( )
2019-04-29 01:28:55 +00:00
var prepareStmt = func ( table string , ext string , dur string ) * sql . Stmt {
2018-10-02 05:03:20 +00:00
if err != nil {
return nil
}
2019-04-29 01:28:55 +00:00
stmt , ierr := db . Prepare ( "select count(*) from " + table + " where createdAt >= DATEADD(" + dur + ", -1, GETUTCDATE())" + ext )
2018-10-02 05:03:20 +00:00
err = errors . WithStack ( ierr )
return stmt
2018-01-10 03:32:48 +00:00
}
2018-10-02 05:03:20 +00:00
2019-04-29 01:28:55 +00:00
stmts . todaysPostCount = prepareStmt ( "replies" , "" , "DAY" )
stmts . todaysTopicCount = prepareStmt ( "topics" , "" , "DAY" )
stmts . todaysNewUserCount = prepareStmt ( "users" , "" , "DAY" )
stmts . todaysTopicCountByForum = prepareStmt ( "topics" , " and parentID = ?" , "DAY" )
stmts . weeklyTopicCountByForum = prepareStmt ( "topics" , " and parentID = ?" , "WEEK" )
2018-10-02 05:03:20 +00:00
return stmts , err
2018-01-11 08:03:17 +00:00
}
2018-01-10 03:32:48 +00:00
2019-04-29 01:28:55 +00:00
type GE = c . GridElement
2019-04-19 07:25:49 +00:00
func Dashboard ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
2018-10-02 06:56:24 +00:00
basePage , ferr := buildBasePage ( w , r , & user , "dashboard" , "dashboard" )
2017-10-30 09:57:08 +00:00
if ferr != nil {
return ferr
2017-04-05 14:15:22 +00:00
}
2017-05-29 14:52:37 +00:00
2017-07-17 10:23:42 +00:00
// We won't calculate this on the spot anymore, as the system doesn't seem to like it if we do multiple fetches simultaneously. Should we constantly calculate this on a background thread? Perhaps, the watchdog to scale back heavy features under load? One plus side is that we'd get immediate CPU percentages here instead of waiting it to kick in with WebSockets
2017-09-03 04:50:31 +00:00
var cpustr = "Unknown"
2017-07-17 10:23:42 +00:00
var cpuColour string
2017-11-23 05:37:08 +00:00
lessThanSwitch := func ( number int , lowerBound int , midBound int ) string {
switch {
case number < lowerBound :
return "stat_green"
case number < midBound :
return "stat_orange"
}
return "stat_red"
}
2017-05-07 08:31:41 +00:00
var ramstr , ramColour string
memres , err := mem . VirtualMemory ( )
if err != nil {
ramstr = "Unknown"
} else {
2019-04-19 07:25:49 +00:00
totalCount , totalUnit := c . ConvertByteUnit ( float64 ( memres . Total ) )
usedCount := c . ConvertByteInUnit ( float64 ( memres . Total - memres . Available ) , totalUnit )
2017-05-29 14:52:37 +00:00
2017-05-07 08:31:41 +00:00
// Round totals with .9s up, it's how most people see it anyway. Floats are notoriously imprecise, so do it off 0.85
var totstr string
2017-09-03 04:50:31 +00:00
if ( totalCount - float64 ( int ( totalCount ) ) ) > 0.85 {
usedCount += 1.0 - ( totalCount - float64 ( int ( totalCount ) ) )
totstr = strconv . Itoa ( int ( totalCount ) + 1 )
2017-05-07 08:31:41 +00:00
} else {
2017-09-03 04:50:31 +00:00
totstr = fmt . Sprintf ( "%.1f" , totalCount )
2017-05-07 08:31:41 +00:00
}
2017-05-29 14:52:37 +00:00
2017-09-03 04:50:31 +00:00
if usedCount > totalCount {
usedCount = totalCount
2017-05-07 08:31:41 +00:00
}
2017-09-03 04:50:31 +00:00
ramstr = fmt . Sprintf ( "%.1f" , usedCount ) + " / " + totstr + totalUnit
2017-05-29 14:52:37 +00:00
2017-05-07 08:31:41 +00:00
ramperc := ( ( memres . Total - memres . Available ) * 100 ) / memres . Total
2017-11-23 05:37:08 +00:00
ramColour = lessThanSwitch ( int ( ramperc ) , 50 , 75 )
}
greaterThanSwitch := func ( number int , lowerBound int , midBound int ) string {
switch {
case number > midBound :
return "stat_green"
case number > lowerBound :
return "stat_orange"
2017-05-07 08:31:41 +00:00
}
2017-11-23 05:37:08 +00:00
return "stat_red"
2017-05-07 08:31:41 +00:00
}
2017-05-29 14:52:37 +00:00
2017-11-23 05:37:08 +00:00
// TODO: Add a stat store for this?
2017-12-30 05:47:46 +00:00
var intErr error
2018-06-06 00:21:22 +00:00
var extractStat = func ( stmt * sql . Stmt , args ... interface { } ) ( stat int ) {
err := stmt . QueryRow ( args ... ) . Scan ( & stat )
2018-10-02 05:03:20 +00:00
if err != nil && err != sql . ErrNoRows {
2017-12-30 05:47:46 +00:00
intErr = err
}
return stat
2017-05-07 08:31:41 +00:00
}
2017-12-30 05:47:46 +00:00
2018-10-02 05:03:20 +00:00
var stmts dashStmts
switch qgen . Builder . GetAdapter ( ) . GetName ( ) {
case "mysql" :
stmts , err = dashMySQLStmts ( )
case "mssql" :
stmts , err = dashMSSQLStmts ( )
default :
2019-04-19 07:25:49 +00:00
return c . InternalError ( errors . New ( "Unknown database adapter on dashboard" ) , w , r )
2018-10-02 05:03:20 +00:00
}
if err != nil {
2019-04-19 07:25:49 +00:00
return c . InternalError ( err , w , r )
2018-10-02 05:03:20 +00:00
}
2018-10-02 06:56:24 +00:00
// TODO: Allow for more complex phrase structures than just suffixes
2017-12-30 05:47:46 +00:00
var postCount = extractStat ( stmts . todaysPostCount )
2019-04-29 01:28:55 +00:00
var postInterval = p . GetTmplPhrase ( "panel_dashboard_day_suffix" )
2017-11-23 05:37:08 +00:00
var postColour = greaterThanSwitch ( postCount , 5 , 25 )
2017-05-29 14:52:37 +00:00
2017-12-30 05:47:46 +00:00
var topicCount = extractStat ( stmts . todaysTopicCount )
2019-04-29 01:28:55 +00:00
var topicInterval = p . GetTmplPhrase ( "panel_dashboard_day_suffix" )
2017-11-23 05:37:08 +00:00
var topicColour = greaterThanSwitch ( topicCount , 0 , 8 )
2017-05-29 14:52:37 +00:00
2019-04-29 01:28:55 +00:00
var reportCount = extractStat ( stmts . weeklyTopicCountByForum , c . ReportForumID )
var reportInterval = p . GetTmplPhrase ( "panel_dashboard_week_suffix" )
2017-05-29 14:52:37 +00:00
2017-12-30 05:47:46 +00:00
var newUserCount = extractStat ( stmts . todaysNewUserCount )
2019-04-29 01:28:55 +00:00
var newUserInterval = p . GetTmplPhrase ( "panel_dashboard_week_suffix" )
2017-05-29 14:52:37 +00:00
2017-12-30 05:47:46 +00:00
// Did any of the extractStats fail?
if intErr != nil {
2019-04-19 07:25:49 +00:00
return c . InternalError ( intErr , w , r )
2017-12-30 05:47:46 +00:00
}
2018-06-06 00:21:22 +00:00
// TODO: Localise these
2019-04-29 01:28:55 +00:00
var gridElements = [ ] GE {
2018-06-26 04:54:20 +00:00
// TODO: Implement a check for new versions of Gosora
2019-04-29 01:28:55 +00:00
//GE{"dash-version", "v" + version.String(), 0, "grid_istat stat_green", "", "", "Gosora is up-to-date :)"},
GE { "dash-version" , "v" + c . SoftwareVersion . String ( ) , 0 , "grid_istat" , "" , "" , "" } ,
2018-06-26 04:54:20 +00:00
2019-04-29 01:28:55 +00:00
GE { "dash-cpu" , "CPU: " + cpustr , 1 , "grid_istat " + cpuColour , "" , "" , p . GetTmplPhrase ( "panel_dashboard_cpu_desc" ) } ,
GE { "dash-ram" , "RAM: " + ramstr , 2 , "grid_istat " + ramColour , "" , "" , p . GetTmplPhrase ( "panel_dashboard_ram_desc" ) } ,
2017-05-11 13:04:43 +00:00
}
2019-04-29 01:28:55 +00:00
var addElement = func ( element GE ) {
2018-06-06 00:21:22 +00:00
gridElements = append ( gridElements , element )
}
2017-05-29 14:52:37 +00:00
2019-04-19 07:25:49 +00:00
if c . EnableWebsockets {
uonline := c . WsHub . UserCount ( )
gonline := c . WsHub . GuestCount ( )
2017-05-11 13:04:43 +00:00
totonline := uonline + gonline
2019-04-29 01:28:55 +00:00
//reqCount := 0
2017-05-29 14:52:37 +00:00
2017-11-23 05:37:08 +00:00
var onlineColour = greaterThanSwitch ( totonline , 3 , 10 )
var onlineGuestsColour = greaterThanSwitch ( gonline , 1 , 10 )
var onlineUsersColour = greaterThanSwitch ( uonline , 1 , 5 )
2017-05-29 14:52:37 +00:00
2019-04-19 07:25:49 +00:00
totonline , totunit := c . ConvertFriendlyUnit ( totonline )
uonline , uunit := c . ConvertFriendlyUnit ( uonline )
gonline , gunit := c . ConvertFriendlyUnit ( gonline )
2017-05-29 14:52:37 +00:00
2019-04-29 01:28:55 +00:00
addElement ( GE { "dash-totonline" , p . GetTmplPhrasef ( "panel_dashboard_online" , totonline , totunit ) , 3 , "grid_stat " + onlineColour , "" , "" , p . GetTmplPhrase ( "panel_dashboard_online_desc" ) } )
addElement ( GE { "dash-gonline" , p . GetTmplPhrasef ( "panel_dashboard_guests_online" , gonline , gunit ) , 4 , "grid_stat " + onlineGuestsColour , "" , "" , p . GetTmplPhrase ( "panel_dashboard_guests_online_desc" ) } )
addElement ( GE { "dash-uonline" , p . GetTmplPhrasef ( "panel_dashboard_users_online" , uonline , uunit ) , 5 , "grid_stat " + onlineUsersColour , "" , "" , p . GetTmplPhrase ( "panel_dashboard_users_online_desc" ) } )
//addElement(GE{"dash-reqs", strconv.Itoa(reqCount) + " reqs / second", 7, "grid_stat grid_end_group " + topicColour, "", "", "The number of requests over the last 24 hours"})
2017-05-07 08:31:41 +00:00
}
2017-05-29 14:52:37 +00:00
2019-04-29 01:28:55 +00:00
addElement ( GE { "dash-postsperday" , strconv . Itoa ( postCount ) + " posts" + postInterval , 6 , "grid_stat " + postColour , "" , "" , "The number of new posts over the last 24 hours" } )
addElement ( GE { "dash-topicsperday" , strconv . Itoa ( topicCount ) + " topics" + topicInterval , 7 , "grid_stat " + topicColour , "" , "" , "The number of new topics over the last 24 hours" } )
addElement ( GE { "dash-totonlineperday" , "?? online / day" , 8 , "grid_stat stat_disabled" , "" , "" , p . GetTmplPhrase ( "panel_dashboard_coming_soon" ) /*, "The people online over the last 24 hours"*/ } )
2017-05-29 14:52:37 +00:00
2019-04-29 01:28:55 +00:00
addElement ( GE { "dash-searches" , "?? searches / week" , 9 , "grid_stat stat_disabled" , "" , "" , p . GetTmplPhrase ( "panel_dashboard_coming_soon" ) /*"The number of searches over the last 7 days"*/ } )
addElement ( GE { "dash-newusers" , strconv . Itoa ( newUserCount ) + " new users" + newUserInterval , 10 , "grid_stat" , "" , "" , "The number of new users over the last 7 days" } )
addElement ( GE { "dash-reports" , strconv . Itoa ( reportCount ) + " reports" + reportInterval , 11 , "grid_stat" , "" , "" , "The number of reports over the last 7 days" } )
2017-05-29 14:52:37 +00:00
2017-12-30 05:47:46 +00:00
if false {
2019-04-29 01:28:55 +00:00
addElement ( GE { "dash-minperuser" , "2 minutes / user / week" , 12 , "grid_stat stat_disabled" , "" , "" , p . GetTmplPhrase ( "panel_dashboard_coming_soon" ) /*"The average number of number of minutes spent by each active user over the last 7 days"*/ } )
addElement ( GE { "dash-visitorsperweek" , "2 visitors / week" , 13 , "grid_stat stat_disabled" , "" , "" , p . GetTmplPhrase ( "panel_dashboard_coming_soon" ) /*"The number of unique visitors we've had over the last 7 days"*/ } )
addElement ( GE { "dash-postsperuser" , "5 posts / user / week" , 14 , "grid_stat stat_disabled" , "" , "" , p . GetTmplPhrase ( "panel_dashboard_coming_soon" ) /*"The average number of posts made by each active user over the past week"*/ } )
2017-12-30 05:47:46 +00:00
}
2017-05-29 14:52:37 +00:00
2019-04-29 01:28:55 +00:00
return renderTemplate ( "panel" , w , r , basePage . Header , c . Panel { basePage , "panel_dashboard_right" , "panel_dashboard" , gridElements } )
2017-04-05 14:15:22 +00:00
}