Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
chatat
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
chatat
Commits
2ea56b09
Kaydet (Commit)
2ea56b09
authored
May 31, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Macros
üst
bceba2c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
3 deletions
+39
-3
__main__.py
chatat/__main__.py
+10
-3
macros.py
chatat/macros.py
+29
-0
No files found.
chatat/__main__.py
Dosyayı görüntüle @
2ea56b09
...
...
@@ -5,6 +5,7 @@ from pubmarine import PubPen
from
chatat.client
import
TwitchChatProtocol
,
TwitchHelixProtocol
from
chatat.twitch
import
Auth
,
Channel
,
Message
from
chatat.macros
import
Macros
class
ChatInterface
:
...
...
@@ -15,6 +16,7 @@ class ChatInterface:
self
.
pubpen
.
subscribe
(
"message"
,
self
.
show_message
)
self
.
pubpen
.
subscribe
(
"new_char"
,
self
.
show_typing
)
self
.
pubpen
.
subscribe
(
"switch_channel"
,
self
.
switch_channel
)
self
.
pubpen
.
subscribe
(
"outgoing"
,
self
.
outgoing
)
self
.
_buffer
=
""
...
...
@@ -23,6 +25,8 @@ class ChatInterface:
)
self
.
channel
=
None
self
.
macros
=
Macros
(
pubpen
)
self
.
pubpen
.
subscribe
(
"message"
,
self
.
macros
.
dispatch
)
def
__enter__
(
self
):
self
.
stdscr
=
curses
.
initscr
()
...
...
@@ -93,9 +97,7 @@ class ChatInterface:
if
self
.
channel
is
None
:
return
message
=
Message
.
from_simple
(
self
.
channel
,
self
.
auth
.
username
,
buffer
)
self
.
pubpen
.
publish
(
"send"
,
message
)
self
.
pubpen
.
publish
(
"message"
,
message
)
self
.
pubpen
.
publish
(
"outgoing"
,
buffer
)
return
self
.
input_current_x
+=
1
...
...
@@ -139,6 +141,11 @@ class ChatInterface:
if
message
:
self
.
pubpen
.
publish
(
"message"
,
message
)
def
outgoing
(
self
,
buffer
:
str
):
message
=
Message
.
from_simple
(
self
.
channel
,
self
.
auth
.
username
,
buffer
)
self
.
pubpen
.
publish
(
"send"
,
message
)
self
.
pubpen
.
publish
(
"message"
,
message
)
if
__name__
==
"__main__"
:
loop
=
asyncio
.
get_event_loop
()
...
...
chatat/macros.py
0 → 100644
Dosyayı görüntüle @
2ea56b09
from
collections
import
defaultdict
from
chatat.twitch
import
Actions
class
Macros
:
macros
=
defaultdict
(
list
)
def
__init__
(
self
,
pubpen
):
self
.
pubpen
=
pubpen
def
dispatch
(
self
,
message
):
for
macro
in
self
.
macros
[
message
.
action
]:
macro
(
self
.
pubpen
,
message
)
@classmethod
def
macro
(
cls
,
on_event
):
def
wrapper
(
func
):
cls
.
macros
[
on_event
]
.
append
(
func
)
return
func
return
wrapper
@Macros.macro
(
Actions
.
PRIVMSG
)
def
on_gnu
(
publisher
,
message
):
lower_message
=
message
.
message
.
lower
()
author
=
message
.
author
if
"linux"
in
lower_message
and
"gnu"
not
in
lower_message
:
publisher
.
publish
(
"outgoing"
,
f
"{author} dude; not linux, GNU/Linux"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment