-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
232 lines (197 loc) · 7.24 KB
/
main.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package main
import (
"context"
"fmt"
"log"
"net/http"
"os"
"time"
"github.com/TylerConlee/TicketPulse/db"
"github.com/TylerConlee/TicketPulse/handlers"
"github.com/TylerConlee/TicketPulse/middlewares"
"github.com/TylerConlee/TicketPulse/models"
"github.com/TylerConlee/TicketPulse/services"
"github.com/gorilla/mux"
"github.com/joho/godotenv"
)
var sseServer = middlewares.NewSSEServer()
type Services struct {
SlackService *services.SlackService
DashboardService *services.DashboardService
}
var Service *Services
var database db.Database
func main() {
// Initialize the application
initDatabase()
loadEnvVariables()
// Initialize the SlackService and DashboardService before setting up routes
startZenPollingChan := make(chan struct{})
startSlackPollingChan := make(chan struct{})
slackService, dashboardService := initializeServices(startZenPollingChan, startSlackPollingChan)
Service = &Services{
SlackService: slackService,
DashboardService: dashboardService,
}
// Set up the router
r := setupRouter()
// SSE endpoint
r.Handle("/events", sseServer)
// Start the HTTP server
startServer(r)
}
func initDatabase() {
// Assuming .env or another configuration method provides the DB filepath
dbPath := os.Getenv("DB_FILEPATH")
if dbPath == "" {
log.Fatal("DB_FILEPATH environment variable is not set.")
}
database = db.InitDB(dbPath)
models.SetDatabase(database)
}
func loadEnvVariables() {
err := godotenv.Load()
if err != nil {
if os.Getenv("GOOGLE_CLIENT_ID") == "" || os.Getenv("GOOGLE_CLIENT_SECRET") == "" {
log.Fatal("GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET must be set")
}
}
}
func initializeServices(startZenPollingChan, startSlackPollingChan chan struct{}) (*services.SlackService, *services.DashboardService) {
ctx := context.Background()
// Periodically check configuration and start polling when ready
go checkZenPolling(startZenPollingChan)
go checkSlackPolling(startSlackPollingChan)
// Wait for both channels to close
<-startSlackPollingChan
<-startZenPollingChan
log.Println("Initializing services...")
// Initialize SlackService
slackService, err := services.NewSlackService(database, sseServer)
if err != nil {
log.Fatalf("Failed to initialize Slack service: %v", err)
}
// Start Slack Socket Mode
go slackService.StartSocketMode()
// Initialize DashboardService
dashboardService := services.NewDashboardService(database)
// Start Zendesk polling with the SlackService
go services.StartZendeskPolling(ctx, database, sseServer, slackService) // <-- Start Zendesk polling here
return slackService, dashboardService
}
func checkZenPolling(startPollingChan chan struct{}) {
for {
if checkZendeskConfig() {
close(startPollingChan)
log.Println("Polling channel closed, starting Zendesk polling")
break
}
log.Println("Waiting for complete configuration...")
time.Sleep(30 * time.Second)
}
}
func checkSlackPolling(startPollingChan chan struct{}) {
for {
err := checkSlackConfig()
if err == nil {
close(startPollingChan)
log.Println("Polling channel closed, starting Slack polling")
break
}
log.Println("Waiting for complete Slack configuration...")
time.Sleep(30 * time.Second)
}
}
func checkZendeskConfig() bool {
requiredConfigs := []string{"zendesk_subdomain", "zendesk_email", "zendesk_api_key"}
for _, key := range requiredConfigs {
if value, err := models.GetConfiguration(database, key); err != nil || value == "" {
return false
}
}
botToken, err := models.GetConfiguration(database, "slack_bot_token")
if err != nil || botToken == "" {
return false
}
return true
}
func checkSlackConfig() error {
botToken, err := models.GetConfiguration(database, "slack_bot_token")
if err != nil || botToken == "" {
return fmt.Errorf("Slack bot token is missing")
}
appToken, err := models.GetConfiguration(database, "slack_app_token")
if err != nil || appToken == "" {
return fmt.Errorf("Slack app token is missing")
}
return nil
}
func setupRouter() *mux.Router {
r := mux.NewRouter()
appHandler := handlers.NewAppHandler(database)
// Public routes
r.HandleFunc("/login", serveLoginPage).Methods("GET")
r.HandleFunc("/auth/google/login", appHandler.GoogleLoginHandler).Methods("GET")
r.HandleFunc("/auth/google/callback", appHandler.GoogleCallbackHandler).Methods("GET")
r.HandleFunc("/unauthorized", serveUnauthorizedPage).Methods("GET")
// Protected routes
protected := setupProtectedRoutes(r)
// Admin routes
setupAdminRoutes(protected)
// Static file server
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static/"))))
return r
}
func serveLoginPage(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "templates/login.html")
}
func serveUnauthorizedPage(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "templates/unauthorized.html")
}
func setupProtectedRoutes(r *mux.Router) *mux.Router {
protected := r.PathPrefix("/").Subrouter()
protected.Use(handlers.AuthMiddleware)
protected.Use(middlewares.NotificationMiddleware)
appHandler := handlers.NewAppHandler(database)
protected.HandleFunc("/dashboard", func(w http.ResponseWriter, r *http.Request) {
appHandler.DashboardHandler(w, r, Service.DashboardService)
}).Methods("GET")
protected.HandleFunc("/profile", func(w http.ResponseWriter, r *http.Request) {
appHandler.ProfileHandler(w, r, Service.SlackService)
}).Methods("GET", "POST")
protected.HandleFunc("/profile/add-tag", func(w http.ResponseWriter, r *http.Request) {
appHandler.ProfileHandler(w, r, Service.SlackService)
}).Methods("POST")
protected.HandleFunc("/profile/delete-tag/{id}", func(w http.ResponseWriter, r *http.Request) {
appHandler.ProfileHandler(w, r, Service.SlackService)
}).Methods("POST")
protected.HandleFunc("/profile/update-summary-settings", func(w http.ResponseWriter, r *http.Request) {
appHandler.ProfileHandler(w, r, Service.SlackService)
}).Methods("POST")
protected.HandleFunc("/profile/update-profile", func(w http.ResponseWriter, r *http.Request) {
appHandler.ProfileHandler(w, r, Service.SlackService)
}).Methods("POST")
protected.HandleFunc("/profile/summary/now", func(w http.ResponseWriter, r *http.Request) {
appHandler.OnDemandSummaryHandler(w, r, Service.SlackService)
}).Methods("GET")
protected.HandleFunc("/logout", appHandler.LogoutHandler).Methods("GET")
return protected
}
func setupAdminRoutes(protected *mux.Router) {
adminHandler := handlers.NewAppHandler(database)
admin := protected.PathPrefix("/admin").Subrouter()
admin.Use(handlers.AdminMiddleware)
admin.HandleFunc("/users", adminHandler.UserManagementHandler).Methods("GET")
admin.HandleFunc("/users/edit/{id}", adminHandler.EditUserHandler).Methods("GET", "POST")
admin.HandleFunc("/users/delete/{id}", adminHandler.DeleteUserHandler).Methods("POST")
admin.HandleFunc("/users/new", adminHandler.NewUserHandler).Methods("GET", "POST")
admin.HandleFunc("/tags", adminHandler.TagManagementHandler).Methods("GET")
admin.HandleFunc("/tag/delete/{id}", adminHandler.DeleteTagAlertHandler).Methods("POST")
admin.HandleFunc("/configuration", adminHandler.ConfigurationHandler).Methods("GET", "POST")
}
func startServer(r *mux.Router) {
log.Println("Starting server on :8080...")
if err := http.ListenAndServe(":8080", r); err != nil {
log.Fatal("Server failed:", err)
}
}