|
|
|
@ -3,78 +3,114 @@ package main
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"fmt"
|
|
|
|
|
"io"
|
|
|
|
|
"log"
|
|
|
|
|
"net/http"
|
|
|
|
|
"os"
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"github.com/joho/godotenv"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
Host string
|
|
|
|
|
AuthPDSToken string
|
|
|
|
|
Secret string
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
http.HandleFunc("/check-maths-user", CheckMathsUserHandler)
|
|
|
|
|
port := ":8080"
|
|
|
|
|
godotenv.Load()
|
|
|
|
|
|
|
|
|
|
if v, present := os.LookupEnv("HOST"); present {
|
|
|
|
|
Host = v
|
|
|
|
|
} else {
|
|
|
|
|
Host = ":8080"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if v, present := os.LookupEnv("AUTHPDS_TOKEN"); present {
|
|
|
|
|
AuthPDSToken = v
|
|
|
|
|
} else {
|
|
|
|
|
log.Fatal(`missing AUTHPDS_TOKEN`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fmt.Printf("Listening on port %s...\n", port)
|
|
|
|
|
http.ListenAndServe(port, nil)
|
|
|
|
|
if v, present := os.LookupEnv("SECRET"); present {
|
|
|
|
|
Secret = v
|
|
|
|
|
} else {
|
|
|
|
|
log.Fatal(`missing SECRET`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
r := http.NewServeMux()
|
|
|
|
|
r.HandleFunc("/check-maths-user", checkMathsUserHandler)
|
|
|
|
|
|
|
|
|
|
log.Printf("Starting server on %s...\n", Host)
|
|
|
|
|
http.ListenAndServe(Host, r)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func checkMathsUserHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
if r.Method != http.MethodGet {
|
|
|
|
|
http.Error(w, "method not allowed", http.StatusMethodNotAllowed)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func CheckMathsUserHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
// Get the username from the query parameters
|
|
|
|
|
userName := r.URL.Query().Get("user")
|
|
|
|
|
|
|
|
|
|
// Get the AUTHORIZATION header value, which should include the secret token
|
|
|
|
|
authHeader := r.Header.Get("Authorization")
|
|
|
|
|
expectedAuthHeader := "Bearer " + os.Getenv("SECRET")
|
|
|
|
|
|
|
|
|
|
// Check if the provided authorization header matches the expected secret token
|
|
|
|
|
if authHeader != expectedAuthHeader {
|
|
|
|
|
if r.Header.Get("Authorization") != "Bearer "+Secret {
|
|
|
|
|
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the AUTHPDS_TOKEN from an environment variable
|
|
|
|
|
authPdsToken := os.Getenv("AUTHPDS_TOKEN")
|
|
|
|
|
userApiUrl := fmt.Sprintf("https://api.unipi.it/authPds/api/Carriera/studente/uid/%s/", userName)
|
|
|
|
|
|
|
|
|
|
// Make a GET request to the external API
|
|
|
|
|
apiURL := fmt.Sprintf("https://api.unipi.it/authPds/api/Carriera/studente/uid/%s/", userName)
|
|
|
|
|
req, err := http.NewRequest("GET", apiURL, nil)
|
|
|
|
|
// Create a GET request to the external API
|
|
|
|
|
ateneoRequest, err := http.NewRequest("GET", userApiUrl, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
req.Header.Add("accept", "*/*")
|
|
|
|
|
req.Header.Add("Authorization", "Bearer "+authPdsToken)
|
|
|
|
|
ateneoRequest.Header.Add("Accept", "*/*")
|
|
|
|
|
ateneoRequest.Header.Add("Authorization", "Bearer "+AuthPDSToken)
|
|
|
|
|
|
|
|
|
|
// Execute the request
|
|
|
|
|
client := &http.Client{}
|
|
|
|
|
resp, err := client.Do(req)
|
|
|
|
|
// Make the request to the external API
|
|
|
|
|
ateneoResponse, err := http.DefaultClient.Do(ateneoRequest)
|
|
|
|
|
if err != nil {
|
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
defer ateneoResponse.Body.Close()
|
|
|
|
|
|
|
|
|
|
// Check if the response contains the desired keywords
|
|
|
|
|
body := make([]byte, 0)
|
|
|
|
|
_, err = resp.Body.Read(body)
|
|
|
|
|
isMatematica, err := checkUtenteDiMatematica(ateneoResponse)
|
|
|
|
|
if err != nil {
|
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
containsKeywords := false
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
if err := json.NewEncoder(w).Encode(
|
|
|
|
|
map[string]any{
|
|
|
|
|
"result": isMatematica,
|
|
|
|
|
},
|
|
|
|
|
); err != nil {
|
|
|
|
|
log.Printf(`encode error: %v`, err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func checkUtenteDiMatematica(r *http.Response) (bool, error) {
|
|
|
|
|
// Check if the response contains the desired keywords
|
|
|
|
|
body, err := io.ReadAll(r.Body)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
keywords := []string{"MATEMATICA", "Mobilit", "Transizione"}
|
|
|
|
|
for _, keyword := range keywords {
|
|
|
|
|
if strings.Contains(string(body), keyword) {
|
|
|
|
|
containsKeywords = true
|
|
|
|
|
break
|
|
|
|
|
return true, nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create a JSON response
|
|
|
|
|
response := map[string]bool{
|
|
|
|
|
"result": containsKeywords,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
json.NewEncoder(w).Encode(response)
|
|
|
|
|
return false, nil
|
|
|
|
|
}
|
|
|
|
|