-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
1527 lines (1308 loc) · 39.2 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"bytes"
"crypto/rand"
"database/sql"
"encoding/base64"
"encoding/json"
"fmt"
"html/template"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"sort"
"strconv"
"strings"
"time"
"encoding/xml"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
_ "github.com/mattn/go-sqlite3"
"golang.org/x/crypto/bcrypt"
)
type Person struct {
XMLName xml.Name `xml:"person"`
Name string `xml:",chardata"`
Role string `xml:"role,attr"`
Group string `xml:"group,attr,omitempty"`
Img string `xml:"img,attr,omitempty"`
Href string `xml:"href,attr,omitempty"`
Episodes []string // List of episode titles this person is associated with
}
type Podcast struct {
ID int `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
Author string `json:"author"`
OwnerName string `json:"ownerName"`
Image string `json:"image"`
Link string `json:"link"`
FeedURL string `json:"url"`
Hosts []Person `json:"hosts"`
}
type Host struct {
ID int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Link string `json:"link"`
Img string `json:"img"`
CreatedAt time.Time `json:"createdAt"`
Podcasts []PodcastAssociation `json:"podcasts,omitempty"`
}
type PodcastAssociation struct {
PodcastID int `json:"podcastId"`
Title string `json:"podcastTitle"`
Role string `json:"role"`
Status string `json:"status"`
}
type Admin struct {
ID int
Username string
Password string
}
var (
db *sql.DB
templates *template.Template
store = sessions.NewCookieStore([]byte("secret-key"))
ntfyURL = os.Getenv("NTFY_URL") // e.g., "https://ntfy.sh"
ntfyTopic = os.Getenv("NTFY_TOPIC") // e.g., "podpeople-notifications"
)
func corsMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Allow requests from ntfy domains
w.Header().Set("Access-Control-Allow-Origin", "*") // Or specific ntfy domain
w.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE")
w.Header().Set("Access-Control-Allow-Headers", "Accept, Content-Type, Content-Length, Accept-Encoding, Authorization")
// Handle preflight requests
if r.Method == "OPTIONS" {
w.WriteHeader(http.StatusOK)
return
}
next.ServeHTTP(w, r)
})
}
func main() {
var err error
db, err = sql.Open("sqlite3", "/app/podpeople-data/podpeopledb.sqlite")
if err != nil {
log.Fatal(err)
}
defer db.Close()
initDB()
funcMap := template.FuncMap{
"lower": strings.ToLower,
}
templates = template.Must(template.New("").Funcs(funcMap).ParseGlob("templates/*.html"))
r := mux.NewRouter()
r.Use(corsMiddleware)
// Public routes
r.HandleFunc("/", homeHandler)
r.HandleFunc("/podcast/{id}", podcastHandler)
r.HandleFunc("/podcast/", podcastHandler)
r.HandleFunc("/add-host", addHostHandler).Methods("POST")
r.HandleFunc("/search-hosts", searchHostsHandler)
r.HandleFunc("/get-host-details", getHostDetailsHandler)
r.HandleFunc("/delete-host/{id}", adminAuthMiddleware(deleteHostHandler)).Methods("DELETE")
r.HandleFunc("/proxy-image", proxyImageHandler)
r.HandleFunc("/edit-host", adminAuthMiddleware(editHostHandler)).Methods("PUT")
// Admin routes
r.HandleFunc("/admin/login", adminLoginHandler).Methods("GET", "POST")
r.HandleFunc("/admin/dashboard", adminAuthMiddleware(adminDashboardHandler))
r.HandleFunc("/admin/approve/{id}", adminAuthMiddleware(approveHostHandler)).Methods("POST")
r.HandleFunc("/admin/reject/{id}", adminAuthMiddleware(rejectHostHandler)).Methods("POST")
r.HandleFunc("/admin/auto-approve/{key}", autoApproveHandler).Methods("POST")
r.HandleFunc("/admin/add-admin", adminAuthMiddleware(addAdminHandler)).Methods("POST")
r.HandleFunc("/admin/edit-admin", adminAuthMiddleware(editAdminHandler)).Methods("PUT")
r.HandleFunc("/admin/delete-admin/{id}", adminAuthMiddleware(deleteAdminHandler)).Methods("DELETE")
// API routes
r.HandleFunc("/api/podcast/{id}", getPodcastFromIndexAPI)
r.HandleFunc("/api/hosts/{id}", getHostsAPI)
r.HandleFunc("/api/download-database", downloadDatabaseHandler)
r.HandleFunc("/api/recent-hosts", getRecentHostsHandler)
// Update the debug route to use the new schema
r.HandleFunc("/debug/hosts", func(w http.ResponseWriter, r *http.Request) {
query := `
SELECT DISTINCT h.id, h.name, hp.role, hp.status, p.title
FROM hosts h
JOIN host_podcasts hp ON h.id = hp.host_id
JOIN podcasts p ON p.id = hp.podcast_id
WHERE hp.status = 'approved'
ORDER BY h.name
`
rows, err := db.Query(query)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer rows.Close()
var hosts []struct {
ID int `json:"id"`
Name string `json:"name"`
Role string `json:"role"`
Status string `json:"status"`
PodcastTitle string `json:"podcastTitle"`
}
for rows.Next() {
var h struct {
ID int `json:"id"`
Name string `json:"name"`
Role string `json:"role"`
Status string `json:"status"`
PodcastTitle string `json:"podcastTitle"`
}
err := rows.Scan(&h.ID, &h.Name, &h.Role, &h.Status, &h.PodcastTitle)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
hosts = append(hosts, h)
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(hosts)
})
// Docs Routes
r.HandleFunc("/docs/what-is-this-for", func(w http.ResponseWriter, r *http.Request) {
templates.ExecuteTemplate(w, "docs_what_is_this_for.html", nil)
})
r.HandleFunc("/docs/adding-hosts", func(w http.ResponseWriter, r *http.Request) {
templates.ExecuteTemplate(w, "docs_adding_hosts.html", nil)
})
r.HandleFunc("/docs/integration", func(w http.ResponseWriter, r *http.Request) {
templates.ExecuteTemplate(w, "docs_integration.html", nil)
})
r.HandleFunc("/docs/self-host", func(w http.ResponseWriter, r *http.Request) {
templates.ExecuteTemplate(w, "docs_self_host.html", nil)
})
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("./static"))))
fmt.Println("Server is running on http://localhost:8085")
log.Fatal(http.ListenAndServe(":8085", r))
}
func initDB() {
_, err := db.Exec(`
CREATE TABLE IF NOT EXISTS hosts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
role TEXT,
description TEXT,
link TEXT,
img TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE IF NOT EXISTS podcasts (
id INTEGER PRIMARY KEY,
title TEXT NOT NULL,
feed_url TEXT
);
CREATE TABLE IF NOT EXISTS host_podcasts (
host_id INTEGER,
podcast_id INTEGER,
role TEXT NOT NULL,
status TEXT DEFAULT 'pending',
approval_key TEXT UNIQUE,
approval_key_expires_at DATETIME,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (host_id, podcast_id),
FOREIGN KEY (host_id) REFERENCES hosts(id),
FOREIGN KEY (podcast_id) REFERENCES podcasts(id)
);
CREATE TABLE IF NOT EXISTS admins (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT UNIQUE,
password TEXT
);
-- Add IF NOT EXISTS to index creation
CREATE INDEX IF NOT EXISTS idx_host_podcasts_host_id ON host_podcasts(host_id);
CREATE INDEX IF NOT EXISTS idx_host_podcasts_podcast_id ON host_podcasts(podcast_id);
CREATE INDEX IF NOT EXISTS idx_host_podcasts_status ON host_podcasts(status);
`)
if err != nil {
log.Fatal(err)
}
// Check if any admin user exists
var count int
err = db.QueryRow("SELECT COUNT(*) FROM admins").Scan(&count)
if err != nil {
log.Fatal(err)
}
if count == 0 {
// No admin exists, create one
username := os.Getenv("ADMIN_USERNAME")
password := os.Getenv("ADMIN_PASSWORD")
if username == "" || password == "" {
// Use default values if environment variables are not set
username = "admin"
password = "admin"
log.Println("Warning: Using default admin credentials. Please change them immediately.")
}
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
if err != nil {
log.Fatal(err)
}
_, err = db.Exec("INSERT INTO admins (username, password) VALUES (?, ?)", username, string(hashedPassword))
if err != nil {
log.Fatal(err)
}
log.Printf("Admin user '%s' created successfully\n", username)
}
}
func generateApprovalKey() (string, error) {
bytes := make([]byte, 32) // 256 bits of randomness
if _, err := rand.Read(bytes); err != nil {
return "", err
}
return base64.URLEncoding.EncodeToString(bytes), nil
}
func createHostApprovalKey(hostID int) (string, error) {
key, err := generateApprovalKey()
if err != nil {
return "", err
}
// Set expiration time to 24 hours from now
expiresAt := time.Now().Add(24 * time.Hour)
// Update all pending associations for this host
_, err = db.Exec(`
UPDATE host_podcasts
SET approval_key = ?, approval_key_expires_at = ?
WHERE host_id = ? AND status = 'pending'`,
key, expiresAt, hostID)
if err != nil {
return "", err
}
return key, nil
}
func adminAuthMiddleware(next http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
session, _ := store.Get(r, "session")
if auth, ok := session.Values["authenticated"].(bool); !ok || !auth {
http.Redirect(w, r, "/admin/login", http.StatusSeeOther)
return
}
next.ServeHTTP(w, r)
}
}
func adminLoginHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
templates.ExecuteTemplate(w, "admin_login.html", nil)
return
}
username := r.FormValue("username")
password := r.FormValue("password")
var admin Admin
err := db.QueryRow("SELECT id, username, password FROM admins WHERE username = ?", username).Scan(&admin.ID, &admin.Username, &admin.Password)
if err != nil {
http.Error(w, "Invalid credentials", http.StatusUnauthorized)
return
}
err = bcrypt.CompareHashAndPassword([]byte(admin.Password), []byte(password))
if err != nil {
http.Error(w, "Invalid credentials", http.StatusUnauthorized)
return
}
session, _ := store.Get(r, "session")
session.Values["authenticated"] = true
session.Save(r, w)
http.Redirect(w, r, "/admin/dashboard", http.StatusSeeOther)
}
func adminDashboardHandler(w http.ResponseWriter, r *http.Request) {
// Get pending hosts
query := `
SELECT h.id, h.name, h.description, h.link, h.img,
hp.role, hp.podcast_id, p.title
FROM hosts h
JOIN host_podcasts hp ON h.id = hp.host_id
JOIN podcasts p ON p.id = hp.podcast_id
WHERE hp.status = 'pending'`
rows, err := db.Query(query)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer rows.Close()
var pendingHosts []Host
for rows.Next() {
var h Host
var role string
var podcastID int
var podcastTitle string
err := rows.Scan(
&h.ID,
&h.Name,
&h.Description,
&h.Link,
&h.Img,
&role,
&podcastID,
&podcastTitle,
)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
h.Podcasts = []PodcastAssociation{{
PodcastID: podcastID,
Title: podcastTitle,
Role: role,
Status: "pending",
}}
pendingHosts = append(pendingHosts, h)
}
// Get admin users
adminRows, err := db.Query("SELECT id, username FROM admins ORDER BY username")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer adminRows.Close()
var admins []Admin
for adminRows.Next() {
var admin Admin
err := adminRows.Scan(&admin.ID, &admin.Username)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
admins = append(admins, admin)
}
// In adminDashboardHandler, right before executing the template:
log.Printf("Found %d pending hosts and %d admins", len(pendingHosts), len(admins))
// Create combined data structure
data := struct {
PendingHosts []Host `json:"pendingHosts"`
Admins []Admin `json:"admins"`
}{
PendingHosts: pendingHosts,
Admins: admins,
}
templates.ExecuteTemplate(w, "admin_dashboard", data)
}
func approveHostHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
session, _ := store.Get(r, "session")
if auth, ok := session.Values["authenticated"].(bool); !ok || !auth {
http.Error(w, "Unauthorized", http.StatusUnauthorized)
return
}
vars := mux.Vars(r)
hostID, err := strconv.Atoi(vars["id"])
if err != nil {
http.Error(w, "Invalid host ID", http.StatusBadRequest)
return
}
// Update the status in host_podcasts table
_, err = db.Exec(`
UPDATE host_podcasts
SET status = 'approved'
WHERE host_id = ?
AND status = 'pending'`,
hostID)
if err != nil {
http.Error(w, "Failed to approve host", http.StatusInternalServerError)
return
}
http.Redirect(w, r, "/admin/dashboard", http.StatusSeeOther)
}
// New handler for one-time approval links
func autoApproveHandler(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
key := vars["key"]
result, err := db.Exec(`
UPDATE host_podcasts
SET status = 'approved',
approval_key = NULL,
approval_key_expires_at = NULL
WHERE approval_key = ?
AND approval_key_expires_at > CURRENT_TIMESTAMP
AND status = 'pending'`,
key)
if err != nil {
http.Error(w, "Failed to process approval", http.StatusInternalServerError)
return
}
rows, err := result.RowsAffected()
if err != nil || rows == 0 {
http.Error(w, "Invalid or expired approval key", http.StatusBadRequest)
return
}
w.WriteHeader(http.StatusOK)
}
func rejectHostHandler(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
hostID, err := strconv.Atoi(vars["id"])
if err != nil {
http.Error(w, "Invalid host ID", http.StatusBadRequest)
return
}
_, err = db.Exec("DELETE FROM hosts WHERE id = ?", hostID)
if err != nil {
http.Error(w, "Failed to reject host", http.StatusInternalServerError)
return
}
http.Redirect(w, r, "/admin/dashboard", http.StatusSeeOther)
}
func sendNotificationToAdmin(host Host) {
// Generate approval key
approvalKey, err := createHostApprovalKey(host.ID)
if err != nil {
log.Printf("Error generating approval key: %v", err)
return
}
baseURL := os.Getenv("BASE_URL")
if baseURL == "" {
log.Printf("BASE_URL not set, defaulting to http://localhost:8085")
baseURL = "http://localhost:8085"
}
// Build podcast associations string
var podcastInfo string
for _, p := range host.Podcasts {
podcastInfo += fmt.Sprintf("\nPodcast: %s (Role: %s)", p.Title, p.Role)
}
message := fmt.Sprintf(`New host submission requires approval:
Host: %s
%s
Description: %s`,
host.Name,
podcastInfo,
host.Description,
)
notificationURL := fmt.Sprintf("%s/%s", ntfyURL, ntfyTopic)
req, err := http.NewRequest("POST", notificationURL, bytes.NewBufferString(message))
if err != nil {
log.Printf("Error creating notification request: %v", err)
return
}
// Set the one-time approval link
approvalURL := fmt.Sprintf("%s/admin/auto-approve/%s", baseURL, approvalKey)
req.Header.Set("Title", "New Host Submission 🎙️")
req.Header.Set("Priority", "default")
req.Header.Set("Tags", "new,microphone,user")
req.Header.Set("Click", fmt.Sprintf("%s/admin/dashboard", baseURL))
if host.Img != "" {
req.Header.Set("Attach", host.Img)
}
// Set one-time approval action
req.Header.Set("Actions", fmt.Sprintf("http, Approve, %s, method=POST", approvalURL))
// Send the notification
client := &http.Client{
Timeout: 10 * time.Second,
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
}
resp, err := client.Do(req)
if err != nil {
log.Printf("Error sending notification: %v", err)
return
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := ioutil.ReadAll(resp.Body)
log.Printf("Error response from ntfy: %s, %s", resp.Status, string(body))
return
}
log.Printf("Successfully sent notification for host: %s", host.Name)
}
func homeHandler(w http.ResponseWriter, r *http.Request) {
templates.ExecuteTemplate(w, "home.html", nil)
}
func podcastHandler(w http.ResponseWriter, r *http.Request) {
var podcastID string
vars := mux.Vars(r)
if id, ok := vars["id"]; ok {
podcastID = id
} else {
podcastID = r.URL.Query().Get("id")
}
if podcastID == "" {
http.Error(w, "Missing podcast ID", http.StatusBadRequest)
return
}
podcast, err := getPodcastDetails(podcastID)
if err != nil {
log.Printf("Error getting podcast details: %v", err)
http.Error(w, fmt.Sprintf("Error getting podcast details: %v", err), http.StatusInternalServerError)
return
}
var hosts []Host
if len(podcast.Hosts) == 0 {
// If no <podcast:person> tags were found, fetch approved hosts from the database
hosts, err = getApprovedHostsForPodcast(podcastID)
if err != nil {
log.Printf("Error getting hosts: %v", err)
http.Error(w, fmt.Sprintf("Error getting hosts: %v", err), http.StatusInternalServerError)
return
}
} else {
// Convert Person structs to Host structs
for _, person := range podcast.Hosts {
host := Host{
Name: person.Name,
Img: person.Img,
Link: person.Href,
Podcasts: []PodcastAssociation{{
PodcastID: podcast.ID,
Title: podcast.Title,
Role: person.Role,
Status: "approved",
}},
}
hosts = append(hosts, host)
}
}
// Check if the user is an admin
session, _ := store.Get(r, "session")
isAdmin := false
if auth, ok := session.Values["authenticated"].(bool); ok && auth {
isAdmin = true
}
data := struct {
Podcast Podcast
Hosts []Host
PersonTags bool
IsAdmin bool
}{
Podcast: podcast,
Hosts: hosts,
PersonTags: len(podcast.Hosts) > 0,
IsAdmin: isAdmin,
}
err = templates.ExecuteTemplate(w, "podcast.html", data)
if err != nil {
log.Printf("Error executing template: %v", err)
http.Error(w, fmt.Sprintf("Error rendering page: %v", err), http.StatusInternalServerError)
}
}
func getApprovedHostsForPodcast(podcastID string) ([]Host, error) {
query := `
SELECT h.id, h.name, h.description, h.link, h.img, hp.role
FROM hosts h
JOIN host_podcasts hp ON h.id = hp.host_id
WHERE hp.podcast_id = ?
AND hp.status = 'approved'`
rows, err := db.Query(query, podcastID)
if err != nil {
return nil, err
}
defer rows.Close()
var hosts []Host
for rows.Next() {
var h Host
var role string
err := rows.Scan(&h.ID, &h.Name, &h.Description, &h.Link, &h.Img, &role)
if err != nil {
return nil, err
}
// Create podcast association for this host
h.Podcasts = []PodcastAssociation{{
PodcastID: parseInt(podcastID),
Role: role,
Status: "approved",
}}
hosts = append(hosts, h)
}
return hosts, nil
}
func isValidImageURL(url string) bool {
client := http.Client{
Timeout: 5 * time.Second,
}
resp, err := client.Head(url)
if err != nil {
return false
}
defer resp.Body.Close()
return resp.StatusCode == http.StatusOK && strings.HasPrefix(resp.Header.Get("Content-Type"), "image/")
}
func addHostHandler(w http.ResponseWriter, r *http.Request) {
err := r.ParseForm()
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
podcastID, _ := strconv.Atoi(r.Form.Get("podcastId"))
imgURL := r.Form.Get("img")
if imgURL != "" && !isValidImageURL(imgURL) {
imgURL = ""
}
// Start transaction
tx, err := db.Begin()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer tx.Rollback()
// Check if host exists
var hostID int
name := r.Form.Get("name")
err = tx.QueryRow("SELECT id FROM hosts WHERE name = ?", name).Scan(&hostID)
if err == sql.ErrNoRows {
// Create new host
result, err := tx.Exec(`
INSERT INTO hosts (name, description, link, img)
VALUES (?, ?, ?, ?)`,
name, r.Form.Get("description"), r.Form.Get("link"), imgURL)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
hostID64, _ := result.LastInsertId()
hostID = int(hostID64)
} else if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// Get podcast details and ensure it exists in podcasts table
podcast, err := getPodcastDetails(strconv.Itoa(podcastID))
if err != nil {
http.Error(w, "Unable to fetch podcast details", http.StatusInternalServerError)
return
}
// Insert or update podcast
_, err = tx.Exec(`
INSERT INTO podcasts (id, title, feed_url)
VALUES (?, ?, ?)
ON CONFLICT (id) DO UPDATE SET
title = excluded.title,
feed_url = excluded.feed_url`,
podcastID, podcast.Title, podcast.FeedURL)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// Create host-podcast association
_, err = tx.Exec(`
INSERT INTO host_podcasts (host_id, podcast_id, role, status)
VALUES (?, ?, ?, 'pending')
ON CONFLICT (host_id, podcast_id) DO UPDATE SET
role = excluded.role,
status = 'pending'`,
hostID, podcastID, r.Form.Get("role"))
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
err = tx.Commit()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// Get complete host info for response
host, err := getHostWithPodcasts(hostID)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
sendNotificationToAdmin(host)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(host)
}
func deleteHostHandler(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
hostID, err := strconv.Atoi(vars["id"])
if err != nil {
http.Error(w, "Invalid host ID", http.StatusBadRequest)
return
}
_, err = db.Exec("DELETE FROM hosts WHERE id = ?", hostID)
if err != nil {
http.Error(w, "Failed to delete host", http.StatusInternalServerError)
return
}
// Return an empty response to indicate success
w.WriteHeader(http.StatusOK)
}
func deduplicateHosts(persons []Person) []Person {
uniqueHosts := make(map[string]*Person)
for _, person := range persons {
if existingPerson, found := uniqueHosts[person.Name]; found {
// Prioritize "host" role
if strings.Contains(strings.ToLower(person.Role), "host") {
existingPerson.Role = "Host"
} else if existingPerson.Role != "Host" {
existingPerson.Role = "Guest"
}
// Append episode if it's not already in the list
if len(person.Episodes) > 0 && !contains(existingPerson.Episodes, person.Episodes[0]) {
existingPerson.Episodes = append(existingPerson.Episodes, person.Episodes...)
}
} else {
personCopy := person
if strings.Contains(strings.ToLower(personCopy.Role), "host") {
personCopy.Role = "Host"
} else {
personCopy.Role = "Guest"
}
uniqueHosts[person.Name] = &personCopy
}
}
result := make([]Person, 0, len(uniqueHosts))
for _, person := range uniqueHosts {
result = append(result, *person)
}
// Sort the result slice
sort.Slice(result, func(i, j int) bool {
return len(result[i].Episodes) > len(result[j].Episodes)
})
return result
}
func contains(slice []string, item string) bool {
for _, s := range slice {
if s == item {
return true
}
}
return false
}
func getPodcastDetails(id string) (Podcast, error) {
searchAPIURL := os.Getenv("SEARCH_API_URL")
log.Printf("SEARCH_API_URL: %s", searchAPIURL) // Add this line
if searchAPIURL == "" {
return Podcast{}, fmt.Errorf("SEARCH_API_URL environment variable is not set")
}
url := fmt.Sprintf("%s/api/podcast?id=%s", searchAPIURL, id)
resp, err := http.Get(url)
if err != nil {
return Podcast{}, fmt.Errorf("error making request to API: %v", err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return Podcast{}, fmt.Errorf("error reading response body: %v", err)
}
var result struct {
Feed Podcast `json:"feed"`
}
err = json.Unmarshal(body, &result)
if err != nil {
return Podcast{}, fmt.Errorf("error unmarshalling JSON: %v", err)
}
log.Printf("Fetching podcast feed from URL: %s", result.Feed.FeedURL)
feedResp, err := http.Get(result.Feed.FeedURL)
if err != nil {
return Podcast{}, fmt.Errorf("error fetching podcast feed: %v", err)
}
defer feedResp.Body.Close()
// Log a sample of the feed content
feedContent, _ := ioutil.ReadAll(feedResp.Body)
log.Printf("First 1000 characters of feed content: %s", string(feedContent[:1000]))
feedResp.Body = ioutil.NopCloser(bytes.NewBuffer(feedContent))
decoder := xml.NewDecoder(feedResp.Body)
var persons []Person
var currentEpisodeTitle string
for {
token, err := decoder.Token()
if err == io.EOF {
break
}
if err != nil {
return Podcast{}, fmt.Errorf("error parsing feed XML: %v", err)
}
switch se := token.(type) {
case xml.StartElement:
if se.Name.Local == "item" {
// We've entered a new item/episode
currentEpisodeTitle = ""
} else if se.Name.Local == "title" && currentEpisodeTitle == "" {
// This is the episode title
var title string
decoder.DecodeElement(&title, &se)
currentEpisodeTitle = title
} else if se.Name.Space == "https://podcastindex.org/namespace/1.0" && se.Name.Local == "person" {
var person Person
err = decoder.DecodeElement(&person, &se)
if err != nil {
return Podcast{}, fmt.Errorf("error decoding person element: %v", err)
}
if currentEpisodeTitle != "" {
person.Episodes = []string{currentEpisodeTitle}
}
log.Printf("Decoded person: %+v", person)
persons = append(persons, person)
}
}
}
log.Printf("Found %d persons in the podcast feed", len(persons))
result.Feed.Hosts = deduplicateHosts(persons)
return result.Feed, nil
}
func getHostsForPodcast(podcastID string) ([]Host, error) {
query := `
SELECT h.id, h.name, h.description, h.link, h.img, hp.role
FROM hosts h
JOIN host_podcasts hp ON h.id = hp.host_id
WHERE hp.podcast_id = ?`
rows, err := db.Query(query, podcastID)
if err != nil {
return nil, err
}
defer rows.Close()
var hosts []Host
for rows.Next() {
var h Host
var role string
err := rows.Scan(&h.ID, &h.Name, &h.Description, &h.Link, &h.Img, &role)
if err != nil {
return nil, err
}
// Create podcast association for this host
h.Podcasts = []PodcastAssociation{{
PodcastID: parseInt(podcastID),
Role: role,
}}
hosts = append(hosts, h)
}
return hosts, nil
}
func parseInt(s string) int {
i, err := strconv.Atoi(s)
if err != nil {
return 0