Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iter5 #3

Merged
merged 15 commits into from
Nov 13, 2023
Merged

Iter5 #3

merged 15 commits into from
Nov 13, 2023

Conversation

ByteDSM
Copy link
Owner

@ByteDSM ByteDSM commented Oct 9, 2023

Iter5 completed

@@ -1,3 +1,91 @@
package main
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Комментарии разделены на несколько типов:
[BLOCKER] - Проблема, не решив которую принять работу нельзя
[LINT] - Заменичение, опционально к выполнению.
[FYI] - просто ремарка


// Словарь для хранения соответствий между сокращёнными и оригинальными URL
// TODO Создать хранилище
var urlMap = map[string]string{}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[BLOCKER] Есть urlstorage.go, давай использовать его.

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Готово


// Перенаправляем по полной ссылке
func redirectHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[BLOCKER] при регистрации функции указывается какой метод использовать. Эту проверку от сюда можно убрать

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Это вообще удалил. Ушел в internal/handlers

return
}
// Добавляем тестовое соответствие в словарь
urlMap["aHR0cH"] = "https://practicum.yandex.ru/"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[LINT] Зачем здесь нужно добавлять тестовые данные?

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А загадку я так и не решил. Без этого тесты не прошёл

r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
shortenURLHandler(w, r, c)
}).Methods("POST")
r.HandleFunc("/{idShortenURL}", redirectHandler).Methods("GET")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[BLOCKER] в internal есть handlers/urlhandlers.go давай переделаем на него

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Вроде получилось

}

// Простая функция для генерации уникального идентификатора
func generateID(fullURL string) string {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[BLOCKER] Унести в internal, в какой-нибудь сервис и перенести unit тесты туда же

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Унести
  • Unit tests

r.HandleFunc("/{idShortenURL}", redirectHandler).Methods("GET")
fmt.Println("RunAddr: ResultURL: ", c.RunAddr, c.ResultURL)
fmt.Println("Running server on", c.RunAddr)
err := http.ListenAndServe(c.RunAddr, r)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FYI] Здесь так же было бы хорошо слушать сигналы ОС и корректно завершать http сервис чтобы пользователи в момент редеплоя приложения или принудительного завершения получили ответ.
Пример работы с сигналами: https://gobyexample.com/signals
Как корректно завершать http сервис: https://pkg.go.dev/net/http#Server.SetKeepAlivesEnabled и https://pkg.go.dev/net/http#Server.Shutdown

)

// Config структура для хранения настроек
type Config struct {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[BLOCKER] так же в internal есть envirements.go, давай это уберем

Copy link
Owner Author

@ByteDSM ByteDSM Oct 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Готово

@@ -0,0 +1 @@
package logger
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[BLOCKER] Давай удалим

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Это готово

import "encoding/base64"

// GenerateID Функция для генерации уникального идентификатора
func GenerateID(fullURL []byte) string {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[LINT] Давай добавим unit тесты

}

// AddURL добавляет пару сокращенный URL -> оригинальный URL
func (storage *URLStorage) AddURL(shortURL, originalURL string) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[LINT] В следующих спринтах будут добавляться еще хранилища (файл и БД). Я бы это сразу предусмотрел и чуть-чуть поменял сигнатуру

AddURL(shortURL, originalURL string) error
GetOriginalURL(shortURL string) (string, error)

т.к. при записи/чтении в файл/БД есть вероятно получить ошибку. И везде где используется это хранилище завязаться на интерфейс


func (rh *RedirectHandler) HandleRedirect(storage *urlstorage.URLStorage) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[LINT] Эту проверку можно удалить т.к. здесь указывается метод

func PanicHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
defer func() {
if err := recover(); err != nil {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[LINT] Вообще если в приложении по какой-то причине произошла паника, приложение должно упасть и панику надо исправить. Здесь же паника просто игнорируется, так лучше не делать

@ByteDSM ByteDSM merged commit 1fdb4f8 into main Nov 13, 2023
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants