From f38fca44fbb9db1db5467a24b22ef561264ac55f Mon Sep 17 00:00:00 2001 From: "k.ukolov" Date: Fri, 10 Feb 2023 13:27:39 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B5=D0=B4=D0=BB=D0=B0=D0=B3?= =?UTF-8?q?=D0=B0=D1=8E=20=D1=82=D0=B0=D0=BA=D0=BE=D0=B9=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B8=D0=BA=D0=BE=D0=BB=20=D1=81=20=D0=9D=D0=93=20=D1=81=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D0=B0=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- messages/messages.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/messages/messages.go b/messages/messages.go index c0bf6d3..ec45b5f 100644 --- a/messages/messages.go +++ b/messages/messages.go @@ -33,7 +33,7 @@ func HelpMessage(chatID int64) string { "- /ping отобью pong\n" + "- /today_lessons покажу расписание на сегодня\n" + "- /tomorrow_lessons покажу расписание на завтра\n" + - "- /all_lessons - пары на несколько дней\n" + + "- /all_lessons - пары на несколько дней\n" + "- /weather покажу погоду у универа\n" + "- /new_year - посчитаю количество дней до нового года\n" + "\nНу а больше я пока ничего не умею" + @@ -55,7 +55,7 @@ func LessonsMessage(schedule []parser.Lesson, prefix, emptyText string) string { } endDate := "" for _, l := range schedule { - if endDate != l.TimeStart.Format("02.01") { + if endDate != l.TimeStart.Format("02.01") { if endDate != "" { s += "\n" } @@ -67,16 +67,16 @@ func LessonsMessage(schedule []parser.Lesson, prefix, emptyText string) string { } l.Name = strings.ReplaceAll(l.Name, l.Place, "") l.Name = strings.ReplaceAll(l.Name, "()", "") - l.Name = strings.ReplaceAll(l.Name, l.TimeStart.Format("15:04"), "") + 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) } if prefix != "" { s += "\n" + - "Д — Димитрова 66\n" + // (Филологический, социологический) - "Л — Ленина 61\n" + // (Математический, биологический) - "М — Ленина 61а\n" + // (Исторический и географический) - "С — Социалистический 68" // (Экономический и юридический) + "Д — Димитрова 66\n" + // (Филологический, социологический) + "Л — Ленина 61\n" + // (Математический, биологический) + "М — Ленина 61а\n" + // (Исторический и географический) + "С — Социалистический 68" // (Экономический и юридический) } return s } @@ -105,7 +105,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 != "" {