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

Increased the mrkshi phrase probability #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion configs/mrkshi_phrases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
- Делать бесплатно для oss проектов это хороший шаг, но тут центр питера, надо прилично себя вести.
- Хватит ругаться уже.
- Скажи что бизнесы тоже просто людей дурят и впаривают им говно.
- 'Однажды один очень мудрый человек сказал: ты пидор. Помню на одного наткнулись в музее компьютерных игр, работает там.'
- Пидора ответ вообще.
- Уютный у нас есть айнур и айнанэнанэмур?
- В раби есть свой убогий аналог планировщика задач.
Expand Down
15 changes: 14 additions & 1 deletion internal/app/commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import (
"time"
)

var top_phrase = "Однажды один очень мудрый человек сказал: ты пидор. Помню на одного наткнулись в музее компьютерных игр, работает там."

type RequiredParams struct {
Update *tgbotapi.Update
StringBuilder *string_builder.StringBuilder
Expand Down Expand Up @@ -238,11 +240,22 @@ func (params RequiredParams) MRKSHI(mrkshi_phrases *[]string) *[]tgbotapi.Messag

msg := tgbotapi.NewMessage(message.Chat.ID, "")

msg.Text = (*mrkshi_phrases)[rand.Intn(len(*mrkshi_phrases))]
if random() {
msg.Text = top_phrase
} else {
msg.Text = (*mrkshi_phrases)[rand.Intn(len(*mrkshi_phrases))]
}

go analytics.SendToInflux(message.From.String(), message.From.ID, message.Chat.ID, message.Chat.Title, "message", "mrkshi")

messages = append(messages, msg)

return &messages
}

func random() bool{
a := []int{1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2} // 3/20 = 15% odd
rand.Seed(time.Now().UnixNano())
rand.Shuffle(len(a), func(i, j int) { a[i], a[j] = a[j], a[i] })
return a[0] & 1 == 1
}