forked from yagich/potomark-bot-rb
Compare commits
No commits in common. "e75ac68a572647702eca079bbdfe7525ee028a85" and "96a4fe575173d07c5b9ee3ad1c604951504d8338" have entirely different histories.
e75ac68a57
...
96a4fe5751
83
bot.rb
83
bot.rb
@ -3,81 +3,32 @@ require 'discordrb'
|
|||||||
|
|
||||||
bot = Discordrb::Bot.new token: ENV['DISCORD_TOKEN']
|
bot = Discordrb::Bot.new token: ENV['DISCORD_TOKEN']
|
||||||
|
|
||||||
BOOKMARK_EMOJI = '🔖'
|
EMOJI = '🔖'
|
||||||
PIN_EMOJI = '📌'
|
|
||||||
|
|
||||||
TRIM_MESSAGE_LENGTH = 500
|
TRIM_MESSAGE_LENGTH = 500
|
||||||
|
|
||||||
$sentence = {}
|
|
||||||
|
|
||||||
bot.reaction_add do |event|
|
bot.reaction_add do |event|
|
||||||
next unless [BOOKMARK_EMOJI, PIN_EMOJI].include? event.emoji.name
|
next unless event.emoji.name == EMOJI
|
||||||
|
# extract data of the message's author
|
||||||
|
message_author = event.message.author
|
||||||
|
message_author_pfp = message_author.avatar_url 'png'
|
||||||
|
message_author_nickname = message_author.display_name
|
||||||
|
message_author_distinct = message_author.distinct
|
||||||
|
|
||||||
if(event.emoji.name == BOOKMARK_EMOJI)
|
message_author_fname = "#{message_author_nickname} (#{message_author_distinct})" # this is the 'author' field of the embed
|
||||||
# extract data of the message's author
|
|
||||||
message_author = event.message.author
|
|
||||||
message_author_pfp = message_author.avatar_url 'png'
|
|
||||||
message_author_nickname = message_author.display_name
|
|
||||||
message_author_distinct = message_author.distinct
|
|
||||||
|
|
||||||
message_author_fname = "#{message_author_nickname} (#{message_author_distinct})" # this is the 'author' field of the embed
|
trimmed_msg = "#{event.message.content[0..TRIM_MESSAGE_LENGTH]}#{'...' if event.message.content.length > TRIM_MESSAGE_LENGTH}" # trim the string to TRIM_MESSAGE_LENGTH chars max to not make the embed too huge
|
||||||
|
original_msg_link = event.message.link
|
||||||
|
|
||||||
trimmed_msg = "#{event.message.content[0..TRIM_MESSAGE_LENGTH]}#{'...' if event.message.content.length > TRIM_MESSAGE_LENGTH}" # trim the string to TRIM_MESSAGE_LENGTH chars max to not make the embed too huge
|
pm = event.user.pm
|
||||||
if trimmed_msg.empty?
|
|
||||||
trimmed_msg = "<empty>"
|
|
||||||
end
|
|
||||||
original_msg_link = event.message.link
|
|
||||||
|
|
||||||
pm = event.user.pm
|
pm.send_embed 'Bookmark created!' do |embed|
|
||||||
|
embed.title = 'Go to message'
|
||||||
pm.send_embed 'Bookmark created!' do |embed|
|
embed.url = original_msg_link
|
||||||
embed.title = 'Go to message'
|
embed.author = Discordrb::Webhooks::EmbedAuthor.new(icon_url: message_author_pfp, name: message_author_fname)
|
||||||
embed.url = original_msg_link
|
embed << Discordrb::Webhooks::EmbedField.new(name: 'Message (trimmed)', value: trimmed_msg)
|
||||||
embed.author = Discordrb::Webhooks::EmbedAuthor.new(icon_url: message_author_pfp, name: message_author_fname)
|
embed.timestamp = event.message.timestamp
|
||||||
embed << Discordrb::Webhooks::EmbedField.new(name: 'Message (trimmed)', value: trimmed_msg)
|
|
||||||
if !event.message.attachments.empty?
|
|
||||||
event.message.attachments.each_index do |idx|
|
|
||||||
attachment = event.message.attachments[idx]
|
|
||||||
embed << Discordrb::Webhooks::EmbedField.new(name: "Attachment \##{idx + 1}", value: attachment.url)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
embed.timestamp = event.message.timestamp
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if(event.emoji.name == PIN_EMOJI)
|
|
||||||
event.message.pin unless event.message.reactions.include? PIN_EMOJI
|
|
||||||
end
|
|
||||||
|
|
||||||
nil # `event` is of type Respondable, so the return line of the block needs to be nil to prevent the bot sending something in the chhannel the reaction occured.
|
nil # `event` is of type Respondable, so the return line of the block needs to be nil to prevent the bot sending something in the chhannel the reaction occured.
|
||||||
end
|
end
|
||||||
|
|
||||||
bot.reaction_remove do |event|
|
|
||||||
next unless event.emoji.name == PIN_EMOJI
|
|
||||||
pin_reactions = event.message.reactions.filter {|el| el.name == PIN_EMOJI}
|
|
||||||
event.message.unpin if pin_reactions.empty?
|
|
||||||
nil
|
|
||||||
end
|
|
||||||
|
|
||||||
bot.message(in: Integer(ENV['SENTENCE_CHANNEL'])) do |event|
|
|
||||||
if event.message.content == "."
|
|
||||||
if $sentence.empty?
|
|
||||||
next
|
|
||||||
end
|
|
||||||
event << "Congratulations, your sentence is: #{$sentence.values.join(" ")}."
|
|
||||||
$sentence.clear
|
|
||||||
next
|
|
||||||
end
|
|
||||||
|
|
||||||
$sentence[event.message.id] = event.message.content
|
|
||||||
end
|
|
||||||
|
|
||||||
bot.message_delete(in: Integer(ENV['SENTENCE_CHANNEL'])) do |event|
|
|
||||||
$sentence.delete(event.id)
|
|
||||||
end
|
|
||||||
|
|
||||||
bot.message_edit(in: Integer(ENV['SENTENCE_CHANNEL'])) do |event|
|
|
||||||
$sentence[event.message.id] = event.message.content
|
|
||||||
end
|
|
||||||
|
|
||||||
bot.run
|
bot.run
|
Loading…
Reference in New Issue
Block a user