-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
482 lines (317 loc) · 8.6 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
// # .. www.GolfDate.me ° // - Website App ~
package main
import (
"os"
"log"
"fmt"
"text/template"
"net/http"
// "time"
)
type pageList struct {
pageTitle string
pageName string
pageID string
Done bool
}
type navList struct {
pageTitle string
pageName string
pageID string
Done bool
}
// , ° . +
type GolfPageData struct {
pageTitle string
PagePath string
PageName string
SOSNav []navList
}
func app_welcome_center_page() {
}
func app_infornation_booth_page() {
}
func app_login_center_page() {
}
func app_about_app_page() {
}
func app_dashboard_interface_page() {
}
func app_player_profile_page() {
}
func app_contact_list_page() {
}
func app_team_chat_page() {
}
func app_date_planner_page() {
}
func app_location_map_page() {
}
func app_schedule_calendar_page() {
}
func app_course_map_page() {
}
func app_score_card_page() {
}
func app_match_history_page() {
}
// . indexHandler, ~ for Public Pages °
func indexHandler(w http.ResponseWriter, r *http.Request) {
// , ° . +
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
// , ° . +
pageTitle := "www.GolfDate.me ° // - Website App ~"
pagePath := r.URL.Path
// pageType := ".."
// , ° . +
pageData := GolfPageData {
pageTitle: pageTitle,
// pagePath: pagePath,
SOSNav: []navList {
{ pageTitle: "one", pageID: "one"},
{ pageTitle: "two", pageID: "two"},
{ pageTitle: "three", pageID: "three"},
},
} //. . pageData
if pagePath == "/" {
pageTitle = "Index Page"
// pageList = pageList
}
if pagePath == "/front" {
pageTitle = "Front Page"
// pageList = pageList
}
if pagePath == "/main" {
pageTitle = "Main Page"
// pageList = pageList
}
if pagePath == "/home" {
pageTitle = "Home Page"
// pageList = pageList
}
if pagePath == "/start" {
pageTitle = "Start Page"
// pageList = pageList
}
// ~ http.HandleFunc("/what", indexHandler)
// - What - // Match Type °
if pagePath == "/what" {
pageTitle = "What Page"
// pageList = pageList
}
// ~ http.HandleFunc("/when", indexHandler)
// - When - // Tee Time °
if pagePath == "/when" {
pageTitle = "When Page"
// pageList = pageList
}
// ~ http.HandleFunc("/where", indexHandler)
// - Where - // Course Location °
if pagePath == "/where" {
pageTitle = "Where Page"
// pageList = pageList
}
// ~ http.HandleFunc("/who", indexHandler)
// - Who - // Player Buddy Contact List °
if pagePath == "/who" {
pageTitle = "Who Page"
// pageList = pageList
}
// ~ http.HandleFunc("/why", indexHandler)
// - Why - // Reason for Match °
if pagePath == "/why" {
pageTitle = "Why Page"
// pageList = pageList
}
// ~ http.HandleFunc("/how", indexHandler)
// - How - // Price and Payment Info °
if pagePath == "/how" {
pageTitle = "How Page"
// pageList = pageList
}
// , ° . +
// ### _ non-user
// ~ http.HandleFunc("/welcome_screen", indexHandler)
// + Welcome Screen
if pagePath == "/welcome_screen" {
pageTitle = "Welcome Screen Page"
// pageList = pageList
}
// ~ http.HandleFunc("/information_booth", indexHandler)
// + Information Booth
if pagePath == "/information_booth" {
pageTitle = "Information Booth Page"
// pageList = pageList
}
// ~ http.HandleFunc("/login_center", indexHandler)
// + Login Center
if pagePath == "/login_center" {
pageTitle = "Login Center Page"
/// pageList = pageList
}
// ~ http.HandleFunc("/about_app", indexHandler)
// + About App
if pagePath == "/about_app" {
pageTitle = "About App Page"
// pageList = pageList
}
// , ° . +
// ### _ setting match
// ~ http.HandleFunc("/dashboard_interface", indexHandler)
// + Dashboard Interface
if pagePath == "/dashboard_interface" {
pageTitle = "Dashboard Interface Page"
// pageList = pageList
}
// ~ http.HandleFunc("/player_profile", indexHandler)
// + Player Profile
if pagePath == "/player_profile" {
pageTitle = "Player Profile Page"
// pageList = pageList
}
// ~ http.HandleFunc("/contact_list", indexHandler)
// + Contact List
if pagePath == "/contact_list" {
pageTitle = "Contact List Page"
// pageList = pageList
}
// ~ http.HandleFunc("/team_chat", indexHandler)
// + Team Chat
if pagePath == "/team_chat" {
pageTitle = "Team Chat Page"
// pageList = pageList
}
// ~ http.HandleFunc("/date_planner", indexHandler)
// + Date Planner
if pagePath == "/date_planner" {
pageTitle = "Date Planner Page"
// pageList = pageList
}
// , ° . +
// ### _ tee time
// ~ http.HandleFunc("/location_map", indexHandler)
// + Location Map
if pagePath == "/location_map" {
pageTitle = "Location Map Page"
// pageList = pageList
}
// ~ http.HandleFunc("/schedule_calendar", indexHandler)
// + Schedule Calendar
if pagePath == "/schedule_calendar" {
pageTitle = "Schedule Calendar Page"
// pageList = pageList
}
// ~ http.HandleFunc("/course_map", indexHandler)
// + Course Map
if pagePath == "/course_map" {
pageTitle = "Course Map Page"
// pageList = pageList
}
// ~ http.HandleFunc("/score_card", indexHandler)
// + Score Card
if pagePath == "/score_card" {
pageTitle = "Score Card Page"
// pageList = pageList
}
// ~ http.HandleFunc("/match_history", indexHandler)
// + Match History
if pagePath == "/match_history" {
pageTitle = "Match History Page"
// pageList = pageList
}
// , ° . +
pageFilePath := template.Must(template.ParseFiles("layout_main_page.html"))
pageFilePath.Execute(w, pageData)
} // . indexHandler
func hello(w http.ResponseWriter, r *http.Request) {
// pagePath := r.URL.Path
fmt.Fprintf(w, "Hello!")
}
func world(w http.ResponseWriter, r *http.Request) {
// pagePath := r.URL.Path
fmt.Fprintf(w, "World!")
}
// . html url routes
// . as well as terminal cli logs
func main() {
// , ° . +
appName := "www.GolfDate.me ° // - Website App ~"
// , ° . +
http.HandleFunc("/", indexHandler)
http.HandleFunc("/hello", hello)
http.HandleFunc("/world", world)
// , ° . +
// , ° . +
http.HandleFunc("/user", indexHandler)
http.HandleFunc("/account", indexHandler)
http.HandleFunc("/profile", indexHandler)
// , ° . +
http.HandleFunc("/portfolio", indexHandler)
http.HandleFunc("/resume", indexHandler)
// , ° . +
http.HandleFunc("/settings", indexHandler)
// , ° . +
http.HandleFunc("/what", indexHandler)
//- What - // Match Type °
//http.HandleFunc("/when", indexHandler)
// - When - // Tee Time °
http.HandleFunc("/where", indexHandler)
// - Where - // Course Location °
http.HandleFunc("/who", indexHandler)
// - Who - // Player Buddy Contact List °
http.HandleFunc("/why", indexHandler)
// - Why - // Reason for Match °
http.HandleFunc("/how", indexHandler)
// - How - // Price and Payment Info °
// , ° . +
// ### _ non-user
http.HandleFunc("/welcome_screen", indexHandler)
// + Welcome Screen
http.HandleFunc("/information_booth", indexHandler)
// + Information Booth
http.HandleFunc("/login_center", indexHandler)
// + Login Center
http.HandleFunc("/about_app", indexHandler)
// + About App
// , ° . +
// ### _ setting match
http.HandleFunc("/dashboard_interface", indexHandler)
// + Dashboard Interface
http.HandleFunc("/player_profile", indexHandler)
// + Player Profile
http.HandleFunc("/contact_list", indexHandler)
// + Contact List
http.HandleFunc("/team_chat", indexHandler)
// + Team Chat
http.HandleFunc("/date_planner", indexHandler)
// + Date Planner
// , ° . +
// ### _ tee time
http.HandleFunc("/location_map", indexHandler)
// + Location Map
http.HandleFunc("/schedule_calendar", indexHandler)
// + Schedule Calendar
http.HandleFunc("/course_map", indexHandler)
// + Course Map
http.HandleFunc("/score_card", indexHandler)
// + Score Card
http.HandleFunc("/match_history", indexHandler)
// + Match History
// -- -
port := os.Getenv("PORT")
if port == "" {
port = "8080"
log.Printf("Loading _webapp with default port")
}
log.Printf("_webapp is active and Listening on port %s", port)
log.Printf("// -- - %s", appName)
log.Printf("_webapp now loaded and running at http://localhost:%s", port)
// -- -
if err := http.ListenAndServe(":"+port, nil); err != nil {
log.Fatal("Error Starting the HTTP Server :", err)
return
}
} // ~ func main()