Merge pull request 'kostyan/trash' (#1) from kostyan/trash into master

Reviewed-on: https://git.user-penguin.space/vladimir/verochka/pulls/1
This commit is contained in:
old-flex 2023-02-10 15:46:52 +07:00
commit 9415ce4c37
2 changed files with 34 additions and 12 deletions

View File

@ -9,3 +9,24 @@ func Today(offset time.Duration) string {
}
return time.Now().In(location).Add(offset).Format("2006-01-02")
}
func GetTranslatedWeekday(date time.Time) string {
switch date.Weekday() {
case time.Monday:
return "Понедельник"
case time.Tuesday:
return "Вторник"
case time.Wednesday:
return "Среда"
case time.Thursday:
return "Четверг"
case time.Friday:
return "Пятница"
case time.Saturday:
return "Суббота"
case time.Sunday:
return "Воскресенье"
default:
return ""
}
}

View File

@ -5,6 +5,7 @@ import (
"math/rand"
"strconv"
"strings"
"student_bot/date"
"student_bot/new_year_service"
"student_bot/parser"
"time"
@ -29,7 +30,7 @@ func ThanksMessage() string {
}
func HelpMessage(chatID int64) string {
return "Вот чем я могу вам помочь (v1.4.2), отправь:\n\n" +
return "Вот чем я могу вам помочь (v1.4.3), отправь:\n\n" +
"- /ping отобью pong\n" +
"- /today_lessons покажу расписание на сегодня\n" +
"- /tomorrow_lessons покажу расписание на завтра\n" +
@ -60,7 +61,7 @@ func LessonsMessage(schedule []parser.Lesson, prefix, emptyText string) string {
s += "\n"
}
endDate = l.TimeStart.Format("02.01")
s += endDate + "\n"
s += date.GetTranslatedWeekday(l.TimeStart) + " " + endDate + "\n"
}
if strings.Contains(l.User, "Ярных В.В.") {
s += "⭐️ "
@ -69,7 +70,7 @@ func LessonsMessage(schedule []parser.Lesson, prefix, emptyText string) string {
l.Name = strings.ReplaceAll(l.Name, "()", "")
l.Name = strings.ReplaceAll(l.Name, l.TimeStart.Format("15:04"), "")
l.Name = strings.TrimSpace(l.Name)
s += fmt.Sprintf("%s %s (%s)\n", l.TimeMsg, l.Name, l.Place)
s += fmt.Sprintf("%s %s (%s)\n%s\n", l.TimeMsg, l.Name, l.Place, l.User)
}
if prefix != "" {
s += "\n" +
@ -105,7 +106,7 @@ func WeatherMessage(w weather.Weather) string {
func NewYearMessage(message new_year_service.NewYearMessage) string {
loc := time.FixedZone("UTC+7", +7*60*60)
ny := time.Date(2024, 1, 1, 0, 0, 0, 0, loc)
ny := time.Date(time.Now().Year()+1, 1, 1, 0, 0, 0, 0, loc)
now := time.Now().In(loc)
days := ny.Sub(now).Hours() / 24
if message.Header != "" {