2024-08-26 12:37:54 +02:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2024-08-27 09:15:11 +02:00
|
|
|
// CalculateAge calculates the age based on a given birthdate and the current date in the format dd/mm/yy
|
|
|
|
// It adjusts for cases where the current date is before the birthday in the current year.
|
2024-08-26 12:37:54 +02:00
|
|
|
func CalculateAge(birthdate, today time.Time) int {
|
|
|
|
today = today.In(birthdate.Location())
|
|
|
|
ty, tm, td := today.Date()
|
|
|
|
today = time.Date(ty, tm, td, 0, 0, 0, 0, time.UTC)
|
|
|
|
by, bm, bd := birthdate.Date()
|
|
|
|
birthdate = time.Date(by, bm, bd, 0, 0, 0, 0, time.UTC)
|
|
|
|
if today.Before(birthdate) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
age := ty - by
|
|
|
|
anniversary := birthdate.AddDate(age, 0, 0)
|
|
|
|
if anniversary.After(today) {
|
|
|
|
age--
|
|
|
|
}
|
|
|
|
return age
|
2024-08-27 13:59:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CalculateAgeWithYOB calculates the age based on the given year of birth (YOB).
|
|
|
|
// It subtracts the YOB from the current year to determine the age.
|
|
|
|
//
|
|
|
|
// Parameters:
|
|
|
|
// yob: The year of birth as an integer.
|
|
|
|
//
|
|
|
|
// Returns:
|
|
|
|
// The calculated age as an integer.
|
|
|
|
func CalculateAgeWithYOB(yob int) int {
|
|
|
|
currentYear := time.Now().Year()
|
|
|
|
return currentYear - yob
|
2024-08-26 12:37:54 +02:00
|
|
|
}
|