valera/calories/calories.go

50 lines
1021 B
Go
Raw Normal View History

2023-03-18 07:35:05 +00:00
package calories
import (
"strconv"
"strings"
)
var (
2023-03-18 12:02:32 +00:00
productsMap = map[string]struct {
caloriesIn100G int
awgWeightG int
}{
"чай": {caloriesIn100G: 65, awgWeightG: 200},
"яблоко": {caloriesIn100G: 52, awgWeightG: 242},
"хлеб": {caloriesIn100G: 245, awgWeightG: 35},
2023-03-18 07:35:05 +00:00
}
)
func CalcCalories(text string) (int, error) {
2023-03-18 12:02:32 +00:00
product, ok := productsMap[strings.ToLower(text)]
2023-03-18 07:35:05 +00:00
if ok {
2023-03-18 12:02:32 +00:00
return product.caloriesIn100G * product.awgWeightG / 100, nil
2023-03-18 07:35:05 +00:00
}
arr := strings.Split(text, " ")
if len(arr) == 2 {
2023-03-18 12:02:32 +00:00
product, ok := productsMap[strings.ToLower(arr[0])]
if ok {
count, err := strconv.Atoi(arr[1])
if err != nil {
return 0, nil
}
return product.caloriesIn100G * count / 100, nil
}
count1, err := strconv.Atoi(arr[0])
2023-03-18 07:35:05 +00:00
if err != nil {
return 0, nil
}
count2, err := strconv.Atoi(arr[1])
if err != nil {
return 0, nil
}
2023-03-18 12:02:32 +00:00
return count1 * count2 / 100, nil
2023-03-18 07:35:05 +00:00
}
count, err := strconv.Atoi(text)
if err != nil {
return 0, nil
}
return count, nil
}