summaryrefslogtreecommitdiff
path: root/model/validation.go
blob: ac38777d65da86b12d3d822d3465dd122b35c872 (plain)
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
package model

import (
	"fmt"
	"strconv"
)

func isInt(s string) error {
	_, err := strconv.Atoi(s)
	if err != nil {
		return fmt.Errorf("'%s' cannot be casted to integer", s)
	}

	return nil
}

func isPositiveOrZeroInt(s string) error {
	i, err := strconv.Atoi(s)
	if err != nil {
		return fmt.Errorf("'%s' cannot be casted to integer", s)
	}

	if i < 0 {
		return fmt.Errorf("'%s' is negative", s)
	}

	return nil
}

func isPositiveOrZeroFloat(s string) error {
	f, err := strconv.ParseFloat(s, 32)
	if err != nil {
		return fmt.Errorf("'%s' cannot be casted to floating point number", s)
	}

	if f < 0 {
		return fmt.Errorf("'%s' is negative", s)
	}

	return nil
}