mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-12 13:46:51 +00:00
move to service
This commit is contained in:
parent
f9066d3ecb
commit
cee291a88f
2 changed files with 123 additions and 126 deletions
|
|
@ -1,8 +1,11 @@
|
||||||
package booking
|
package booking
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
u "github.com/rjNemo/underscore"
|
u "github.com/rjNemo/underscore"
|
||||||
|
|
@ -217,3 +220,120 @@ func (bs Service) Cancel(id int) {
|
||||||
b := &Booking{Id: id}
|
b := &Booking{Id: id}
|
||||||
bs.db.Model(&b).Update("canceled", true)
|
bs.db.Model(&b).Update("canceled", true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type BookingInfo struct {
|
||||||
|
Content string `json:"content"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bs Service) ParseFromApi(rawContent string) (*Booking, error) {
|
||||||
|
var bookingInfo BookingInfo
|
||||||
|
err := json.Unmarshal([]byte(rawContent), &bookingInfo)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("Error unmarshalling JSON:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
content := strings.ReplaceAll(strings.TrimSpace(bookingInfo.Content), "\u00a0", " ")
|
||||||
|
|
||||||
|
arrivalDate := extractDate(`Date d'arrivée `, content)
|
||||||
|
departureDate := extractDate(`Date de départ `, content)
|
||||||
|
stayLength := extractInt(`Durée de séjour : (\d+) nuits`, content)
|
||||||
|
totalAmount := extractFloat(`Montant total € (\d+)`, content)
|
||||||
|
customerName := extractString(`Nom du client : \n\s+([\w\s]+)`, content)
|
||||||
|
customerName = strings.SplitN(customerName, "\n", 2)[0]
|
||||||
|
customerEmail := extractString(`[\w\.\-]+@[\w\.\-]+\.\w+`, content)
|
||||||
|
customerNumber := extractInt(`Nombre de personnes : \s*\n\s*(\d+)`, content)
|
||||||
|
commissionAmount := extractFloat(`Commission : € (\d+,\d+)`, content)
|
||||||
|
item := extractString(`Maison 1 Chambre \((T2|T3) -`, content)
|
||||||
|
standardRate := extractFloat(`Standard Rate\n\s+€ (\d+)`, content)
|
||||||
|
|
||||||
|
result := map[string]any{
|
||||||
|
"from": formatDate(arrivalDate),
|
||||||
|
"to": formatDate(departureDate),
|
||||||
|
"stay_length": stayLength,
|
||||||
|
"total_amount": totalAmount,
|
||||||
|
"customer_name": customerName,
|
||||||
|
"email": customerEmail,
|
||||||
|
"customer_number": customerNumber,
|
||||||
|
"commission_amount": commissionAmount,
|
||||||
|
"item": item,
|
||||||
|
"price": standardRate,
|
||||||
|
}
|
||||||
|
|
||||||
|
jsonResult, err := json.MarshalIndent(result, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("error unmarshalling JSON: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
b := new(Booking)
|
||||||
|
|
||||||
|
if err = json.Unmarshal(jsonResult, b); err != nil {
|
||||||
|
return nil, fmt.Errorf("error unmarshalling JSON: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return b, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractDate(pattern, content string) string {
|
||||||
|
re := regexp.MustCompile(pattern + `\w+\.\s*\d{1,2}\s\w+\.\s\d{4}`)
|
||||||
|
dateMatch := re.FindString(content)
|
||||||
|
|
||||||
|
if dateMatch == "" {
|
||||||
|
fmt.Println("date not found")
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// Regular expression to remove the prefix
|
||||||
|
rePrefix := regexp.MustCompile(pattern + `\w+\.\s*`)
|
||||||
|
dateString := rePrefix.ReplaceAllString(dateMatch, "")
|
||||||
|
return dateString
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractInt(pattern, content string) int {
|
||||||
|
re := regexp.MustCompile(pattern)
|
||||||
|
match := re.FindStringSubmatch(content)
|
||||||
|
if len(match) > 1 {
|
||||||
|
val, err := strconv.Atoi(match[1])
|
||||||
|
if err == nil {
|
||||||
|
return val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractFloat(pattern, content string) float64 {
|
||||||
|
re := regexp.MustCompile(pattern)
|
||||||
|
match := re.FindStringSubmatch(content)
|
||||||
|
if len(match) > 1 {
|
||||||
|
val, err := strconv.ParseFloat(strings.ReplaceAll(match[1], ",", "."), 64)
|
||||||
|
if err == nil {
|
||||||
|
return val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0.0
|
||||||
|
}
|
||||||
|
|
||||||
|
func extractString(pattern, content string) string {
|
||||||
|
re := regexp.MustCompile(pattern)
|
||||||
|
match := re.FindStringSubmatch(content)
|
||||||
|
if len(match) > 1 {
|
||||||
|
return strings.TrimSpace(match[1])
|
||||||
|
}
|
||||||
|
return strings.TrimSpace(match[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
func formatDate(date string) string {
|
||||||
|
months := map[string]string{
|
||||||
|
"janv.": "01", "fév": "02", "mar": "03", "avr": "04",
|
||||||
|
"mai": "05", "jun": "06", "juil.": "07", "aoû": "08",
|
||||||
|
"sep": "09", "oct": "10", "nov": "11", "déc": "12",
|
||||||
|
}
|
||||||
|
re := regexp.MustCompile(`(\d+)\s([^\s]+)\s(\d{4})`)
|
||||||
|
match := re.FindStringSubmatch(date)
|
||||||
|
if len(match) > 3 {
|
||||||
|
day := match[1]
|
||||||
|
month := months[match[2]]
|
||||||
|
year := match[3][2:]
|
||||||
|
return fmt.Sprintf("%02s/%02s/%s", day, month, year)
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,8 @@
|
||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"regexp"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/labstack/echo/v4"
|
"github.com/labstack/echo/v4"
|
||||||
"github.com/labstack/gommon/log"
|
"github.com/labstack/gommon/log"
|
||||||
|
|
@ -15,137 +10,19 @@ import (
|
||||||
"github.com/rjNemo/rentease/internal/booking"
|
"github.com/rjNemo/rentease/internal/booking"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BookingInfo struct {
|
func handleSync(bs *booking.Service) echo.HandlerFunc {
|
||||||
Content string `json:"content"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleSync() echo.HandlerFunc {
|
|
||||||
return func(c echo.Context) error {
|
return func(c echo.Context) error {
|
||||||
x := c.Request().Body
|
x := c.Request().Body
|
||||||
body, err := io.ReadAll(x)
|
body, err := io.ReadAll(x)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return c.String(http.StatusInternalServerError, err.Error())
|
return c.String(http.StatusInternalServerError, err.Error())
|
||||||
}
|
}
|
||||||
b, err := parseBooking(string(body))
|
b, err := bs.ParseFromApi(string(body))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return c.String(http.StatusInternalServerError, err.Error())
|
return c.String(http.StatusInternalServerError, err.Error())
|
||||||
}
|
}
|
||||||
log.Warnf("%+v", b)
|
log.Warnf("%+v", b)
|
||||||
|
|
||||||
return c.String(http.StatusCreated, "👍")
|
return c.JSON(http.StatusCreated, b)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseBooking(jsonString string) (*booking.Booking, error) {
|
|
||||||
var bookingInfo BookingInfo
|
|
||||||
err := json.Unmarshal([]byte(jsonString), &bookingInfo)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Error unmarshalling JSON:", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
content := strings.ReplaceAll(strings.TrimSpace(bookingInfo.Content), "\u00a0", " ")
|
|
||||||
|
|
||||||
arrivalDate := extractDate(`Date d'arrivée `, content)
|
|
||||||
departureDate := extractDate(`Date de départ `, content)
|
|
||||||
stayLength := extractInt(`Durée de séjour : (\d+) nuits`, content)
|
|
||||||
totalAmount := extractFloat(`Montant total € (\d+)`, content)
|
|
||||||
customerName := extractString(`Nom du client : \n\s+([\w\s]+)`, content)
|
|
||||||
customerName = strings.SplitN(customerName, "\n", 2)[0]
|
|
||||||
customerEmail := extractString(`[\w\.\-]+@[\w\.\-]+\.\w+`, content)
|
|
||||||
customerNumber := extractInt(`Nombre de personnes : \s*\n\s*(\d+)`, content)
|
|
||||||
commissionAmount := extractFloat(`Commission : € (\d+,\d+)`, content)
|
|
||||||
item := extractString(`Maison 1 Chambre \((T2|T3) -`, content)
|
|
||||||
standardRate := extractFloat(`Standard Rate\n\s+€ (\d+)`, content)
|
|
||||||
|
|
||||||
result := map[string]any{
|
|
||||||
"from": formatDate(arrivalDate),
|
|
||||||
"to": formatDate(departureDate),
|
|
||||||
"stay_length": stayLength,
|
|
||||||
"total_amount": totalAmount,
|
|
||||||
"customer_name": customerName,
|
|
||||||
"email": customerEmail,
|
|
||||||
"customer_number": customerNumber,
|
|
||||||
"commission_amount": commissionAmount,
|
|
||||||
"item": item,
|
|
||||||
"price": standardRate,
|
|
||||||
}
|
|
||||||
|
|
||||||
jsonResult, err := json.MarshalIndent(result, "", " ")
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("error unmarshalling JSON: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Println(string(jsonResult))
|
|
||||||
b := new(booking.Booking)
|
|
||||||
|
|
||||||
if err = json.Unmarshal(jsonResult, b); err != nil {
|
|
||||||
return nil, fmt.Errorf("error unmarshalling JSON: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return b, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func extractDate(pattern, content string) string {
|
|
||||||
re := regexp.MustCompile(pattern + `\w+\.\s*\d{1,2}\s\w+\.\s\d{4}`)
|
|
||||||
dateMatch := re.FindString(content)
|
|
||||||
|
|
||||||
if dateMatch == "" {
|
|
||||||
fmt.Println("date not found")
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
// Regular expression to remove the prefix
|
|
||||||
rePrefix := regexp.MustCompile(pattern + `\w+\.\s*`)
|
|
||||||
dateString := rePrefix.ReplaceAllString(dateMatch, "")
|
|
||||||
return dateString
|
|
||||||
}
|
|
||||||
|
|
||||||
func extractInt(pattern, content string) int {
|
|
||||||
re := regexp.MustCompile(pattern)
|
|
||||||
match := re.FindStringSubmatch(content)
|
|
||||||
if len(match) > 1 {
|
|
||||||
val, err := strconv.Atoi(match[1])
|
|
||||||
if err == nil {
|
|
||||||
return val
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func extractFloat(pattern, content string) float64 {
|
|
||||||
re := regexp.MustCompile(pattern)
|
|
||||||
match := re.FindStringSubmatch(content)
|
|
||||||
if len(match) > 1 {
|
|
||||||
val, err := strconv.ParseFloat(strings.ReplaceAll(match[1], ",", "."), 64)
|
|
||||||
if err == nil {
|
|
||||||
return val
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0.0
|
|
||||||
}
|
|
||||||
|
|
||||||
func extractString(pattern, content string) string {
|
|
||||||
re := regexp.MustCompile(pattern)
|
|
||||||
match := re.FindStringSubmatch(content)
|
|
||||||
if len(match) > 1 {
|
|
||||||
return strings.TrimSpace(match[1])
|
|
||||||
}
|
|
||||||
return strings.TrimSpace(match[0])
|
|
||||||
}
|
|
||||||
|
|
||||||
func formatDate(date string) string {
|
|
||||||
months := map[string]string{
|
|
||||||
"janv.": "01", "fév": "02", "mar": "03", "avr": "04",
|
|
||||||
"mai": "05", "jun": "06", "juil.": "07", "aoû": "08",
|
|
||||||
"sep": "09", "oct": "10", "nov": "11", "déc": "12",
|
|
||||||
}
|
|
||||||
re := regexp.MustCompile(`(\d+)\s([^\s]+)\s(\d{4})`)
|
|
||||||
match := re.FindStringSubmatch(date)
|
|
||||||
if len(match) > 3 {
|
|
||||||
day := match[1]
|
|
||||||
month := months[match[2]]
|
|
||||||
year := match[3][2:]
|
|
||||||
return fmt.Sprintf("%02s/%02s/%s", day, month, year)
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue