Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fernuni-bot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dnns01
fernuni-bot
Commits
a72d22ba
Commit
a72d22ba
authored
3 years ago
by
dnns01
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'github/develop' into release
parents
3819a836
4ec17886
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!133
Advent calendar
,
!132
Advent calendar
,
!131
Advent calendar
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fernuni_bot.py
+121
-121
121 additions, 121 deletions
fernuni_bot.py
with
121 additions
and
121 deletions
fernuni_bot.py
+
121
−
121
View file @
a72d22ba
import
os
import
disnake
from
disnake.ext
import
commands
from
dotenv
import
load_dotenv
from
cogs
import
appointments
,
calmdown
,
christmas
,
easter
,
github
,
help
,
learninggroups
,
links
,
\
news
,
polls
,
roles
,
support
,
text_commands
,
voice
,
welcome
,
xkcd
# , timer
# .env file is necessary in the same directory, that contains several strings.
load_dotenv
()
TOKEN
=
os
.
getenv
(
'
DISCORD_TOKEN
'
)
GUILD
=
int
(
os
.
getenv
(
'
DISCORD_GUILD
'
))
ACTIVITY
=
os
.
getenv
(
'
DISCORD_ACTIVITY
'
)
OWNER
=
int
(
os
.
getenv
(
'
DISCORD_OWNER
'
))
ROLES_FILE
=
os
.
getenv
(
'
DISCORD_ROLES_FILE
'
)
HELP_FILE
=
os
.
getenv
(
'
DISCORD_HELP_FILE
'
)
CATEGORY_LERNGRUPPEN
=
os
.
getenv
(
"
DISCORD_CATEGORY_LERNGRUPPEN
"
)
PIN_EMOJI
=
"
📌
"
intents
=
disnake
.
Intents
.
default
()
intents
.
members
=
True
class
Boty
(
commands
.
Bot
):
def
__init__
(
self
):
super
().
__init__
(
command_prefix
=
'
!
'
,
help_command
=
None
,
activity
=
disnake
.
Game
(
ACTIVITY
),
owner_id
=
OWNER
,
intents
=
intents
)
self
.
add_cog
(
appointments
.
Appointments
(
self
))
self
.
add_cog
(
text_commands
.
TextCommands
(
self
))
self
.
add_cog
(
polls
.
Polls
(
self
))
self
.
add_cog
(
roles
.
Roles
(
self
))
self
.
add_cog
(
welcome
.
Welcome
(
self
))
self
.
add_cog
(
christmas
.
Christmas
(
self
))
self
.
add_cog
(
support
.
Support
(
self
))
self
.
add_cog
(
news
.
News
(
self
))
self
.
add_cog
(
links
.
Links
(
self
))
self
.
add_cog
(
voice
.
Voice
(
self
))
self
.
add_cog
(
easter
.
Easter
(
self
))
self
.
add_cog
(
learninggroups
.
LearningGroups
(
self
))
#
self.add_cog(module_information.ModuleInformation(self))
self
.
add_cog
(
xkcd
.
Xkcd
(
self
))
self
.
add_cog
(
help
.
Help
(
self
))
self
.
add_cog
(
calmdown
.
Calmdown
(
self
))
self
.
add_cog
(
github
.
Github
(
self
))
# self.add_cog(timer.Timer(self))
bot
=
Boty
()
# bot.add_cog(ChangeLogCog(bot))
# SlashClient(bot, show_warnings=True) # Stellt den Zugriff auf die Buttons bereit
def
get_reaction
(
reactions
):
"""
Returns the reaction, that is equal to the specified PIN_EMOJI,
or if that reaction does not exist in list of reactions, None will be returned
"""
for
reaction
in
reactions
:
if
reaction
.
emoji
==
PIN_EMOJI
:
return
reaction
return
None
async
def
pin_message
(
message
):
"""
Pin the given message, if it is not already pinned
"""
if
not
message
.
pinned
:
await
message
.
pin
()
async
def
unpin_message
(
message
):
"""
Unpin the given message, if it is pinned, and it has no pin reaction remaining.
"""
if
message
.
pinned
:
reaction
=
get_reaction
(
message
.
reactions
)
if
reaction
is
None
:
await
message
.
unpin
()
@bot.event
async
def
on_ready
():
print
(
"
Client started!
"
)
@bot.event
async
def
on_raw_reaction_add
(
payload
):
if
payload
.
user_id
==
bot
.
user
.
id
:
return
if
payload
.
emoji
.
name
==
PIN_EMOJI
:
channel
=
await
bot
.
fetch_channel
(
payload
.
channel_id
)
message
=
await
channel
.
fetch_message
(
payload
.
message_id
)
await
pin_message
(
message
)
@bot.event
async
def
on_raw_reaction_remove
(
payload
):
if
payload
.
emoji
.
name
==
PIN_EMOJI
:
channel
=
await
bot
.
fetch_channel
(
payload
.
channel_id
)
message
=
await
channel
.
fetch_message
(
payload
.
message_id
)
await
unpin_message
(
message
)
@bot.event
async
def
on_voice_state_update
(
member
,
before
,
after
):
if
before
.
channel
!=
after
.
channel
and
after
.
channel
and
"
Lerngruppen-Voicy
"
in
after
.
channel
.
name
:
category
=
await
bot
.
fetch_channel
(
CATEGORY_LERNGRUPPEN
)
voice_channels
=
category
.
voice_channels
for
voice_channel
in
voice_channels
:
if
len
(
voice_channel
.
members
)
==
0
:
return
await
category
.
create_voice_channel
(
f
"
Lerngruppen-Voicy-
{
len
(
voice_channels
)
+
1
}
"
,
bitrate
=
256000
)
bot
.
run
(
TOKEN
)
import
os
import
disnake
from
disnake.ext
import
commands
from
dotenv
import
load_dotenv
from
cogs
import
appointments
,
calmdown
,
christmas
,
easter
,
github
,
help
,
learninggroups
,
links
,
\
news
,
polls
,
roles
,
support
,
text_commands
,
voice
,
welcome
,
xkcd
,
module_information
# , timer
# .env file is necessary in the same directory, that contains several strings.
load_dotenv
()
TOKEN
=
os
.
getenv
(
'
DISCORD_TOKEN
'
)
GUILD
=
int
(
os
.
getenv
(
'
DISCORD_GUILD
'
))
ACTIVITY
=
os
.
getenv
(
'
DISCORD_ACTIVITY
'
)
OWNER
=
int
(
os
.
getenv
(
'
DISCORD_OWNER
'
))
ROLES_FILE
=
os
.
getenv
(
'
DISCORD_ROLES_FILE
'
)
HELP_FILE
=
os
.
getenv
(
'
DISCORD_HELP_FILE
'
)
CATEGORY_LERNGRUPPEN
=
os
.
getenv
(
"
DISCORD_CATEGORY_LERNGRUPPEN
"
)
PIN_EMOJI
=
"
📌
"
intents
=
disnake
.
Intents
.
default
()
intents
.
members
=
True
class
Boty
(
commands
.
Bot
):
def
__init__
(
self
):
super
().
__init__
(
command_prefix
=
'
!
'
,
help_command
=
None
,
activity
=
disnake
.
Game
(
ACTIVITY
),
owner_id
=
OWNER
,
intents
=
intents
)
self
.
add_cog
(
appointments
.
Appointments
(
self
))
self
.
add_cog
(
text_commands
.
TextCommands
(
self
))
self
.
add_cog
(
polls
.
Polls
(
self
))
self
.
add_cog
(
roles
.
Roles
(
self
))
self
.
add_cog
(
welcome
.
Welcome
(
self
))
self
.
add_cog
(
christmas
.
Christmas
(
self
))
self
.
add_cog
(
support
.
Support
(
self
))
self
.
add_cog
(
news
.
News
(
self
))
self
.
add_cog
(
links
.
Links
(
self
))
self
.
add_cog
(
voice
.
Voice
(
self
))
self
.
add_cog
(
easter
.
Easter
(
self
))
self
.
add_cog
(
learninggroups
.
LearningGroups
(
self
))
self
.
add_cog
(
module_information
.
ModuleInformation
(
self
))
self
.
add_cog
(
xkcd
.
Xkcd
(
self
))
self
.
add_cog
(
help
.
Help
(
self
))
self
.
add_cog
(
calmdown
.
Calmdown
(
self
))
self
.
add_cog
(
github
.
Github
(
self
))
# self.add_cog(timer.Timer(self))
bot
=
Boty
()
# bot.add_cog(ChangeLogCog(bot))
# SlashClient(bot, show_warnings=True) # Stellt den Zugriff auf die Buttons bereit
def
get_reaction
(
reactions
):
"""
Returns the reaction, that is equal to the specified PIN_EMOJI,
or if that reaction does not exist in list of reactions, None will be returned
"""
for
reaction
in
reactions
:
if
reaction
.
emoji
==
PIN_EMOJI
:
return
reaction
return
None
async
def
pin_message
(
message
):
"""
Pin the given message, if it is not already pinned
"""
if
not
message
.
pinned
:
await
message
.
pin
()
async
def
unpin_message
(
message
):
"""
Unpin the given message, if it is pinned, and it has no pin reaction remaining.
"""
if
message
.
pinned
:
reaction
=
get_reaction
(
message
.
reactions
)
if
reaction
is
None
:
await
message
.
unpin
()
@bot.event
async
def
on_ready
():
print
(
"
Client started!
"
)
@bot.event
async
def
on_raw_reaction_add
(
payload
):
if
payload
.
user_id
==
bot
.
user
.
id
:
return
if
payload
.
emoji
.
name
==
PIN_EMOJI
:
channel
=
await
bot
.
fetch_channel
(
payload
.
channel_id
)
message
=
await
channel
.
fetch_message
(
payload
.
message_id
)
await
pin_message
(
message
)
@bot.event
async
def
on_raw_reaction_remove
(
payload
):
if
payload
.
emoji
.
name
==
PIN_EMOJI
:
channel
=
await
bot
.
fetch_channel
(
payload
.
channel_id
)
message
=
await
channel
.
fetch_message
(
payload
.
message_id
)
await
unpin_message
(
message
)
@bot.event
async
def
on_voice_state_update
(
member
,
before
,
after
):
if
before
.
channel
!=
after
.
channel
and
after
.
channel
and
"
Lerngruppen-Voicy
"
in
after
.
channel
.
name
:
category
=
await
bot
.
fetch_channel
(
CATEGORY_LERNGRUPPEN
)
voice_channels
=
category
.
voice_channels
for
voice_channel
in
voice_channels
:
if
len
(
voice_channel
.
members
)
==
0
:
return
await
category
.
create_voice_channel
(
f
"
Lerngruppen-Voicy-
{
len
(
voice_channels
)
+
1
}
"
,
bitrate
=
256000
)
bot
.
run
(
TOKEN
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment