-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
131 lines (111 loc) · 3.62 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
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"net/url"
"os"
simresponse "github.com/kimchiiboiii/valentine/backend"
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
)
var apiKey string
func main() {
apiKey = os.Getenv("WEATHER_API_KEY")
log.Printf("API Key loaded: %s\n", apiKey)
if apiKey == "" {
fmt.Println("WEATHER_API_KEY environment variable not set")
return
}
router := gin.Default()
router.LoadHTMLGlob("templates/*")
simresponse.RegisterClickerRoutes(router)
// Works fine using the live server, but getting CORS error when trying to post from github pages
// CORS middleware
router.Use(cors.New(cors.Config{
AllowOrigins: []string{"http://127.0.0.1:5500", "https://kimchiiboiii.github.io"},
AllowMethods: []string{"GET", "OPTIONS", "POST"},
AllowHeaders: []string{"Origin", "Content-Type", "Hx-Current-Url"},
AllowCredentials: true,
}))
router.OPTIONS("/get-weather", func(c *gin.Context) {
c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
c.Writer.Header().Set("Access-Control-Allow-Methods", "POST, OPTIONS")
c.Writer.Header().Set("Access-Control-Allow-Headers", "Origin, Content-Type, Hx-Current-Url")
// c.Status(http.StatusOK)
})
router.POST("/get-weather", getWeather)
router.Run(":8080")
}
type WeatherData struct {
Name string `json:"name"`
Main struct {
Temp float64 `json:"temp"`
Humidity int `json:"humidity"`
} `json:"main"`
Weather []struct {
Description string `json:"description"`
ID int `json:"id"`
} `json:"weather"`
}
func getWeather(c *gin.Context) {
city := c.PostForm("city")
encodedCity := url.QueryEscape(city) // Handling for cities with multiple words in the name
log.Printf("API Key: %s\n", apiKey)
url := fmt.Sprintf("http://api.openweathermap.org/data/2.5/weather?q=%s&lang=pt&appid=%s&units=metric", encodedCity, apiKey)
resp, err := http.Get(url)
if err != nil {
c.String(http.StatusInternalServerError, "Failed to get weather data")
return
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
c.String(http.StatusInternalServerError, "Failed to get weather data")
return
}
var weatherData WeatherData
if err := json.NewDecoder(resp.Body).Decode(&weatherData); err != nil {
c.String(http.StatusInternalServerError, "Failed to parse weather data")
return
}
resultHTML := fmt.Sprintf(`
<div class="card">
<h1 class="cityDisplay">%s</h2>
<p class="tempDisplay">%.2f°C</p>
<p class="humidityDisplay">Umidade: %d%%</p>
<p class="descDisplay">%s</p>
<p class="weatherEmoji">%s</p>
</div>
`, weatherData.Name, weatherData.Main.Temp, weatherData.Main.Humidity,
weatherData.Weather[0].Description, findWeatherEmoji(weatherData.Weather[0].ID))
c.Writer.Header().Set("Content-Type", "text/html; charset=utf-8")
c.String(http.StatusOK, resultHTML)
c.Writer.WriteHeader(http.StatusOK)
// c.Writer.WriteString(resultHTML)
// c.Data(http.StatusOK, "text/html; charset=utf-8", []byte(resultHTML))
}
func findWeatherEmoji(weatherID int) string {
switch {
case weatherID >= 200 && weatherID < 300:
return "⛈️🌩️"
case weatherID >= 300 && weatherID < 400:
return "☔🌂"
case weatherID >= 500 && weatherID < 600:
return "☔🌧️"
case weatherID >= 600 && weatherID < 700:
return "🥶❄️"
case weatherID >= 700 && weatherID < 771:
return "🌫️🌫️"
case weatherID >= 771 && weatherID < 800:
return "🌪️🌪️"
case weatherID == 800:
return "🌞😎"
case weatherID >= 801 && weatherID < 803:
return "🌤️🌤️"
case weatherID >= 803 && weatherID <= 804:
return "🌥️☁️"
default:
return "🤔❓"
}
}