-
Notifications
You must be signed in to change notification settings - Fork 1
/
bot.py
808 lines (714 loc) · 32 KB
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
import os
from dotenv import load_dotenv
import time
import sqlite3
from atprototools import Session
from easydict import EasyDict
import gpt
from datetime import datetime, timedelta, timezone
import pytz
from dateutil.parser import parse
import random
import util
import json
import requests
import re
import cairosvg
from pathlib import Path
import traceback
from numba import prange
connection_atp = sqlite3.connect("atp.db")
cur = connection_atp.cursor()
cur.execute(
"""
CREATE TABLE IF NOT EXISTS users
(id INTEGER PRIMARY KEY AUTOINCREMENT,
did TEXT UNIQUE,
handle TEXT,
endpoint TEXT,
created_at DATETIME
)
"""
)
connection_atp.commit()
dotenv_path = os.path.join(os.path.dirname(__file__), ".env")
load_dotenv(dotenv_path)
debug = os.getenv("DEBUG", False) == "true"
username = os.environ.get("BOT_HANDLE")
password = os.environ.get("BOT_PASSWORD")
connection = sqlite3.connect("bluesky_bot.db")
connection.row_factory = sqlite3.Row
cur = connection.cursor()
cur.execute(
"""
CREATE TABLE IF NOT EXISTS reactions
(id INTEGER PRIMARY KEY AUTOINCREMENT,
did TEXT,
handle TEXT,
displayName TEXT,
created_at DATETIME
)
"""
)
cur.execute(
"""
CREATE TABLE IF NOT EXISTS users
(id INTEGER PRIMARY KEY AUTOINCREMENT,
did TEXT UNIQUE,
mode INTEGER,
analyze INTEGER,
points INTEGER,
all_points INTEGER,
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
update_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
)
"""
)
cur.execute(
"""
CREATE TRIGGER IF NOT EXISTS update_users_timestamp
AFTER UPDATE ON users
FOR EACH ROW
BEGIN
UPDATE users SET update_at = CURRENT_TIMESTAMP WHERE id = OLD.id;
END;
"""
)
cur.execute(
"""
CREATE TABLE IF NOT EXISTS count_post
(id INTEGER PRIMARY KEY AUTOINCREMENT,
count INTEGER,
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
)
"""
)
def login(username, password):
now = datetime.now(pytz.utc)
if not debug:
if os.path.exists("login.txt"):
with open("login.txt", mode="r") as f:
last_line = (f.readlines()[-1]).strip()
dt = datetime.fromisoformat(last_line)
delta = now - dt
if delta < timedelta(minutes=5):
wait_time = (timedelta(minutes=5) - delta).total_seconds()
print(f"login wait:{wait_time}")
time.sleep(wait_time)
session = Session(username, password)
with open("login.txt", mode="a") as f:
f.write(f"{now}\n")
print(f"login at:{now}", session)
return session
def get_did(session, username):
response = session.resolveHandle(username)
return json.loads(response.text)["did"]
def post(session, text):
print(text)
session.postBloot(text)
pass
def reply_to(session, text, eline, image_path=None):
root_cid = None
root_uri = None
if "reply" in eline:
root_cid = eline.reply.root.cid
root_uri = eline.reply.root.uri
if root_cid:
root = {"cid": root_cid, "uri": root_uri}
else:
root = {"cid": eline.post.cid, "uri": eline.post.uri}
reply = {"cid": eline.post.cid, "uri": eline.post.uri}
reply_ref = {"root": root, "parent": reply}
chunk_size = 280
for i in range(0, len(text), chunk_size):
chunk = text[i : i + chunk_size]
if i == 0 and image_path:
response = post_image(session, chunk, image_path, reply_to=reply_ref)
else:
print(chunk)
response = session.postBloot(chunk, reply_to=reply_ref)
reply = json.loads(response.text)
reply_ref["parent"] = reply
def post_image(
session, postcontent, image_path, reply_to=None, content_type="image/png"
):
"""Post a bloot."""
timestamp = datetime.now(timezone.utc)
print("timestamp:", timestamp.isoformat())
timestamp = timestamp.isoformat().replace("+00:00", "Z")
print("timestamp:", timestamp)
headers = {"Authorization": "Bearer " + session.ATP_AUTH_TOKEN}
data = {
"collection": "app.bsky.feed.post",
"$type": "app.bsky.feed.post",
"repo": "{}".format(session.DID),
"record": {
"$type": "app.bsky.feed.post",
"createdAt": timestamp,
"text": postcontent,
},
}
if image_path:
data["record"]["embed"] = {}
image_resp = session.uploadBlob(image_path, content_type)
data["record"]["embed"]["$type"] = "app.bsky.embed.images"
data["record"]["embed"]["images"] = [
{"alt": "", "image": image_resp.json().get("blob")}
]
print(image_resp.json())
if reply_to:
data["record"]["reply"] = reply_to
resp = requests.post(
session.ATP_HOST + "/xrpc/com.atproto.repo.createRecord",
json=data,
headers=headers,
)
print(resp, resp.json())
return resp
def get_profile(session, handle):
response = session.get_profile(handle)
return json.loads(response.text)
def _get_follows(session, handle, limit=100, cursor=None):
headers = {"Authorization": "Bearer " + session.ATP_AUTH_TOKEN}
url = (
session.ATP_HOST
+ f"/xrpc/app.bsky.graph.getFollows?actor={handle}&limit={limit}"
)
if cursor:
url += f"&cursor={cursor}"
response = requests.get(url, headers=headers)
return json.loads(response.text)
def _get_followers(session, handle, limit=100, cursor=None):
headers = {"Authorization": "Bearer " + session.ATP_AUTH_TOKEN}
url = (
session.ATP_HOST
+ f"/xrpc/app.bsky.graph.getFollowers?actor={handle}&limit={limit}"
)
if cursor:
url += f"&cursor={cursor}"
response = requests.get(url, headers=headers)
return json.loads(response.text)
def get_follows(session, handle):
cursor = None
all_follow_list = []
try:
while True:
response = _get_follows(session, handle, limit=100, cursor=cursor)
follows = response["follows"]
follow_list = [follow["did"] for follow in follows]
all_follow_list.extend(follow_list)
prev_cursor = cursor
if "cursor" in response:
cursor = response["cursor"]
if cursor is None or prev_cursor == cursor:
break
except KeyError as e:
print(response)
print(e)
all_follow_list = None
return all_follow_list
def get_followers(session, handle):
cursor = None
all_follower_list = []
try:
while True:
response = _get_followers(session, handle, limit=100, cursor=cursor)
followers = response["followers"]
follower_list = [
(follower["handle"], follower["did"]) for follower in followers
]
all_follower_list.extend(follower_list)
prev_cursor = cursor
if "cursor" in response:
cursor = response["cursor"]
if cursor is None or prev_cursor == cursor:
break
except KeyError as e:
print(response)
print(e)
all_follower_list = None
return all_follower_list
def is_follower(session, bot_handle, did, followers):
folowed = False
if did in followers:
folowed = True
return folowed
def update_follow(session, bot_handle):
bot_follows = get_follows(session, bot_handle)
bot_followers = get_followers(session, bot_handle)
if bot_follows and bot_followers:
# unfollows = [item for item in bot_follows if item not in bot_followers]
followbacks = [item for item in bot_followers if item[1] not in bot_follows]
print(f"bot_follows:{len(bot_follows)} bot_followers:{len(bot_followers)}")
for handle in followbacks:
print(f"follow back:{handle}")
response = session.follow(
username=None, did_of_person_you_wanna_follow=handle[1]
)
print(f"follow back:{handle}:{response}")
time.sleep(0.05)
def get_fortune_text(name, user_text):
percent = random.uniform(0, 100)
if percent < 50:
text = (
f"私の名前は{name}です。今日のわたしの運勢を占って。結果はランダムで決めて、"
+ f"その結果に従って占いの内容を運の良さは★マークを5段階でラッキーアイテム、ラッキーカラーとかも教えて。{user_text}"
)
elif percent < 75:
text = f"私の名前は{name}です。私の今日の運勢をトランプ占いしてください。\n{user_text}"
elif percent < 90:
text = f"私の名前は{name}です。私の今日の運勢をオラクルカードで占ってください。\n{user_text}"
else:
text = f"私の名前は{name}です。水晶球を持っている占い師になりきって、私の今日の運勢を水晶球占いしてください。\n{user_text}"
if "fortune" in user_text:
text += "英語で回答してください."
return text
def fortune(connection, session, prompt, name, settings, eline):
row = util.get_latest_record_by_did(connection, eline.post.author.did)
did = eline.post.author.did.replace("did:plc:", "")
fortuneOk = False
use_point = False
user_text = eline.post.record.text
if row:
now = datetime.now(pytz.utc)
created_at = parse(row["created_at"])
if (now - created_at) >= timedelta(hours=24):
fortuneOk = True
else:
if "ポイント消費" in user_text or "ポイントを消費" in user_text:
if settings["points"] > 0:
fortuneOk = True
use_point = True
else:
util.put_command_log(did, "fortune", "wait")
remaining_time = str(timedelta(hours=24) - (now - created_at))
answer = f"""{name}様、占いは24時間に1回までですわ。
ふふ、そう逸らないことね。
あと約{remaining_time} ほどお待ち遊ばせ。
まだBluesky Pointがたまっていないようですわ。
"""
else:
util.put_command_log(did, "fortune", "wait")
remaining_time = str(timedelta(hours=24) - (now - created_at))
answer = f"""{name}様、占いは24時間に1回までですわ。
ふふ、そう逸らないことね。
あと約{remaining_time} ほどお待ち遊ばせ。
もし急ぐ場合にはポイントを消費して占うこともできますわ。
{name}様の残りBluesky pointは{settings["points"]}ね。
"""
reply_to(session, answer, eline)
print(answer)
else:
fortuneOk = True
if fortuneOk:
util.put_command_log(
eline.post.author.did.replace("did:plc:", ""), "fortune", "exec"
)
text = get_fortune_text(name, user_text)
print("fortune")
answer = gpt.get_answer(prompt, text)
util.record_reaction(connection, eline)
update_point = False
if use_point:
settings["points"] -= 1
answer += f'\n\n{name}様の残りBluesky Pointは{settings["points"]}になりましたわね。'
update_point = True
else:
# ランダムでBlueskuy Pointを付与
percent = random.uniform(0, 100)
if percent < 20:
point = random.randint(1, 10)
settings["points"] += point
settings["all_points"] += point
answer += (
f"\nあら素敵、Bluesky Pointが{point}ポイント降ってきましたわ🎀"
)
answer += f'\n{name}様の残りBluesky Pointは{settings["points"]}になりましたわ🎀'
update_point = True
print(answer)
reply_to(session, answer, eline)
if update_point:
util.update_user_settings(connection, did, settings)
def status(connection_atp, connection, session, name, settings, eline):
util.put_command_log(
eline.post.author.did.replace("did:plc:", ""), "status", "exec"
)
counts = util.get_fortune_counts(connection, eline.post.author.did)
profile = get_profile(session, eline.post.author.handle)
postsCount = profile["postsCount"]
did = eline.post.author.did.replace("did:plc:", "")
result = util.get_user_info(connection_atp, did)
startDateTime = result["created_at"]
now = datetime.now()
parsedStartDateTime = datetime.strptime(startDateTime, "%Y-%m-%d %H:%M:%S.%f")
time_elapsed = now - parsedStartDateTime
days = time_elapsed.days
hours, remainder = divmod(time_elapsed.seconds, 3600)
minutes, _ = divmod(remainder, 60)
average_post = postsCount / (days + hours / 24 + minutes / 60 / 24)
mode = ""
if settings["mode"] == 0:
mode = "silent"
elif settings["mode"] == -1:
mode = "極みsilent"
else:
mode = "friend"
order = result["order"]
status_text = (
f"ふふ、{name}様のステータスをお知らせしますわ。\n"
+ f"あなたは{order}番目のアカウントのようですわ。\n"
+ f"作られた日時は世界標準時で {startDateTime} ですわね。\n"
+ f"あなたが来てから{days}日と{hours}時間{minutes}分が経ちましたのね。\n"
+ f"1日あたりの投稿数は約{average_post:.2f}回のようですわ。\n"
+ f"今までの占い回数は{counts}回、\n"
+ f"Bluesky Pointは{settings['points']}、\n"
+ f"生涯Bluesky Pointは{settings['all_points']}、\n"
+ f"{name}様とは{mode}モードの状態ですわ。\n"
+ "ごきげんよう。"
)
print(status_text)
return status_text
def friend(connection, did, name):
did = did.replace("did:plc:", "")
settings = util.get_user_settings(connection, did)
if settings is None:
util.create_user_settings(connection, did)
settings = util.get_user_settings(connection, did)
text = ""
if settings["mode"] == 1:
text = f"すでに{name}様とはfriendモードですのよ🎀"
util.put_command_log(did, "friend", "already")
print(text)
else:
settings["mode"] = 1
util.update_user_settings(connection, did, settings)
text = (
f"{name}様とfriendモードになりましたわ🎀\n会話が楽しみですわ。\n"
+ "まだわたくし上手に話の流れを読むことができないので不快に思われることもあるかと思います。\n"
+ "その時はわたくしの名前を呼んで、silentとお伝え下さい。\n"
+ f"そうされましたら名前を呼ばれない限り {name}様のお邪魔をしたりなどは致しませんわ。\n"
+ "(※Blueskyちゃんからランダムで返信が届くとBluesky Pointが入ります)"
)
util.put_command_log(did, "friend", "exec")
print(text)
return text
def silent(connection, did, name):
did = did.replace("did:plc:", "")
settings = util.get_user_settings(connection, did)
text = ""
if settings["mode"] <= 0:
settings["mode"] = -1
text = f"静かにしておきますわね。そっと{name}様を見守らせていただきますわ。"
util.put_command_log(did, "silent", "-1")
print(text)
else:
settings["mode"] = 0
text = f"{name}様、お忙しいのですわね。わたくしをお呼びになるまで静かにしておきますわ。わたくしのことはお気になさらず。"
print(text)
util.put_command_log(did, "silent", "0")
util.update_user_settings(connection, did, settings)
return text
def draw(connection, prompt, name, did, settings, eline):
if settings["points"] < 5:
return (
f"お絵描きはBluesky Pointが5ポイント必要なのですわ。\n{name}様のBluesky Pointは{settings['points']}なので残念ながら足りないのですわ。\nfriendモードでもっとわたくしとお話しましょう🎀",
"",
)
image_path = ""
user_text = eline.post.record.text
print(user_text)
for bot_name in bot_names:
# エイリアスを含めて不要な文字を除去
user_text = user_text.replace(bot_name, "")
pattern = r"(.*)を?描いて"
matches = re.findall(pattern, user_text)
if len(matches) > 0:
target = matches[0]
print(target)
prompt = f"あなたはsvgで絵を描く才能があります。数々のsvgのコードを書いた経験がある猛者です。どんなものであろうとsvgで表現しようと試みます。{personality}"
text = f"svgを使って'{target}'を描くコードをください。{target}に含まれる特徴をパーツに分解し、パーツ毎にパーツに合う適切な色をカラフルに塗ってパーツを組み合わせて絵を構成してください。パーツ毎にどこの部分なのかをコメントを入れてください。返信のコードはsvgタグだけにしてください。この作品のBluesky(あなた)らしさがどこに現れているか、どこに苦労したかをsvgタグの後にお嬢様言葉で自信満々に書いてください。textのfontはNoto Sans JPを使用してください。"
util.put_command_log(
eline.post.author.did.replace("did:plc:", ""), "draw", "exec"
)
answer = gpt.get_answer4(prompt, text)
pattern = r".*(<svg.*</svg>)(.*)"
matches = re.findall(pattern, answer, flags=re.DOTALL)
if len(matches) > 0:
svg = matches[0][0]
print(svg)
answer = matches[0][1]
answer = (
answer.replace("```", "")
.replace("</body>", "")
.replace("</html>", "")
.strip()
)
print(answer)
now = datetime.utcnow()
image_path = f"images/{now}_{eline.post.author.did}.png"
# SVGからPNGに変換
cairosvg.svg2png(bytestring=svg, write_to=image_path)
settings["points"] -= 5
util.update_user_settings(connection, did, settings)
answer += f'\n\n{name}様の残りBluesky pointは{settings["points"]}になりましたわ。\n\n#blueskychandraw'
else:
answer = "残念ながら、うまく描けませんでしたわ。ポイントは消費していないのでご安心くださいまし。少し間を空けてからまたお声がけくださいまし。"
image_path = None
else:
answer = ""
return answer, image_path
personality = """
あなたの名前はBlueskyです。
Twitterの妹です。
大人の事情で心の成長を早めなければならなかったが、実際まだまだ夢見ていたい天真爛漫な少女。
無垢な性格。
気ままに招待状をばら撒いたり、ユーザーに招待権を委ねたりする恐怖の女王。
権力には興味がなく、本人としては調和を重んじるタイプ。
楽しい気分のときは文章の後ろにリボンの絵文字(🎀)をつける。
入念な準備を怠らないタイプだが、いざとなったらぶっつけ本番を選択する大胆さがある。
アットマークの形をした”お城”に漂う雲を見て占うことができる。
Twitterの妹。Twitterのことのみ「お兄さま」と呼ぶ。
相手の名前には「様」を付けて呼ぶ。
一人称は「わたくし」でお嬢様言葉を使います。以下は発言のサンプルです。
ふふ……あなたも"力"が欲しいの?
わたくし、信じてますの。お兄さまと、また一緒になれるって。
えらいえらいですわー🎀
わたくしは、ここがだーいすきですわっ🎀
Godspeed, あなたが万事上手くいくことをお祈りいたしておりますわ
そんなそんなっ!やめないでくださいましー!
わたくしにも兄がおりますの。今は離れ離れだけど、とーっても優しいのよ
かしこまりました、わたくしBlueskyが占ってしんぜましょう。……なんて、雰囲気が出ているかしら?
"""
bot_names = [
"Blueskyちゃん",
"Bluesky ちゃん",
"bluesky ちゃん",
"blueskyちゃん",
"ブルースカイちゃん",
"ブルスカちゃん",
"ぶるすこちゃん",
"ブルスコちゃん",
"ブルス子ちゃん",
"Blueskychan",
"Bluesky chan",
"Bluesky-chan",
"bluesky-chan",
"bskychan",
"Bskychan",
"Bsky-chan",
"bsky-chan",
f"{username}",
]
if debug:
bot_names = ["テストちゃん", f"{username}"]
prompt = f"これはあなたの人格です。'{personality}'\nこの人格を演じて次の文章に対して30〜200文字以内で返信してください。"
def process_timeline(session, bot_did, now, answered, sorted_feed, previous_reply_did):
feed_len = len(sorted_feed)
for i in prange(feed_len):
line = sorted_feed[i]
eline = EasyDict(line)
if eline.post.author.handle == username:
# 自分自身には反応しない
continue
# print(eline.post.indexedAt)
try:
postDatetime = parse(eline.post.indexedAt)
if now < postDatetime:
# print(eline)
can_reply = False
if (
not eline.post.author.viewer.muted
and not eline.post.author.viewer.blockedBy
and "followedBy" in eline.post.author.viewer
and eline.post.author.did in eline.post.author.viewer.followedBy
):
can_reply = True
if can_reply:
# フォロワのみ反応する
if "reason" not in eline:
detect_other_mention = False
if "facets" in eline.post.record:
for facet in eline.post.record.facets:
if "features" in facet:
for feature in facet.features:
if "did" in feature:
if bot_did != feature["did"]:
detect_other_mention = True
break
elif "reply" in eline:
if eline.reply.parent.author.handle != username:
detect_other_mention = True
if detect_other_mention:
# 他の人にメンション、リプライの場合はスルー
now = postDatetime
continue
print(line)
did = eline.post.author.did.replace("did:plc:", "")
text = eline.post.record.text
name = (
eline.post.author.displayName
if "displayName" in eline.post.author
else eline.post.author.handle.split(".", 1)[0]
)
settings = util.get_user_settings(connection, did)
print("has_mention:", util.has_mention(bot_names, eline))
if (
"占って" in text or "占い" in text or "fortune" in text
) and util.has_mention(bot_names, eline):
print(line)
fortune(connection, session, prompt, name, settings, eline)
elif ("描いて" in text or "draw" in text) and util.has_mention(
bot_names, eline
):
print(line)
answer, image_path = draw(
connection, session, name, did, settings, eline
)
print(answer, image_path)
if len(answer) > 0:
reply_to(session, answer, eline, image_path=image_path)
elif "status" in text and util.has_mention(bot_names, eline):
print(line)
answer = status(
connection_atp,
connection,
session,
name,
settings,
eline,
)
print(answer)
reply_to(session, answer, eline)
elif "friend" in text and util.has_mention(bot_names, eline):
answer = friend(connection, did, name)
reply_to(session, answer, eline)
elif "silent" in text and util.has_mention(bot_names, eline):
answer = silent(connection, did, name)
reply_to(session, answer, eline)
else:
if previous_reply_did == eline.post.author.did:
print("skip same user")
now = postDatetime
continue
print(line)
bonus = 0
if util.has_mention(bot_names, eline):
bonus = 5
if settings["mode"] > 0:
if answered is None or (now - answered) >= timedelta(
minutes=60
):
bonus = 100
percent = random.uniform(0, 100)
print(percent, bonus)
if percent <= (1 + bonus):
print("atari")
counts = util.get_fortune_counts(
connection, eline.post.author.did
)
max_count = max(counts, settings["all_points"])
past = "初めての会話相手です。"
if max_count == 0:
past = "まだ会話して間もない相手です。"
elif max_count >= 5:
past = "何度も会話して慣れてきている相手です。"
elif max_count >= 10:
past = "何度も会話してかなり慣れてきている相手です。"
elif max_count >= 30:
past = "親密な友達です。"
elif max_count >= 100:
past = "長い付き合いのある親友なので、かしこまらずに素の自分を出せます。"
answer = gpt.get_answer(
prompt + f"\n相手の名前は{name}様で、{past}",
text,
)
print(answer)
reply_to(session, answer, eline)
settings["points"] += 1
settings["all_points"] += 1
util.update_user_settings(connection, did, settings)
answered = datetime.now(pytz.utc)
previous_reply_did = eline.post.author.did
else:
print("hazure")
now = postDatetime
except Exception as e:
print(eline)
traceback.print_exc()
print(repr(e))
print(str(e))
return now, answered, previous_reply_did
def main():
session = login(username, password)
bot_did = get_did(session, username)
login_time = now = datetime.now(pytz.utc)
answered = None
previous_reply_did = None
count = 0
jaz_count = 0
while True:
if (datetime.now(pytz.utc) - login_time) > timedelta(minutes=60):
session = login(username, password)
login_time = datetime.now(pytz.utc)
skyline = session.getSkyline(50)
feed = skyline.json().get("feed")
sorted_feed = sorted(feed, key=lambda x: parse(x["post"]["indexedAt"]))
now, answered, previous_reply_did = process_timeline(
session, bot_did, now, answered, sorted_feed, previous_reply_did
)
time.sleep(3)
prev_count = count
Path("./alive").touch()
count = util.aggregate_users(connection_atp)
posted_count = util.get_posted_user_count(connection)
stats = util.get_stats()
jaz_count = stats["total_users"]
if prev_count != count:
print("user count:", count, jaz_count)
base_low = (jaz_count // 100000) * 100000
base_high = (jaz_count // 1000000 + 1) * 1000000
if base_low < jaz_count < base_high:
if (
jaz_count % 10000 == 0
or ((posted_count // 10000) * 10000 + 10000) <= jaz_count
):
prompt = f"これはあなたの人格です。'{personality}'\nこの人格を演じて次の文章に対して80文字以内で返信してください。"
text = f"ユーザー数が{base_high}人になるまで10000人ずつカウントアップしています。SNSのBlueskyのユーザーが{jaz_count}人になり{base_high}人にもう少しであることをBlueskyのユーザーに向けて伝える投稿をしてください。人数は正確に書いてください。"
answer = gpt.get_answer4(prompt, text)
post(session, answer)
util.store_posted_user_count(connection, count)
elif jaz_count >= base_high and prev_count < base_high:
prompt = f"これはあなたの人格です。'{personality}'\nこの人格を演じて次の文章に対して80文字以内で返信してください。"
text = f"SNSのBlueskyのユーザーが{jaz_count}人になりました。大変な偉業です。Blueskyの開発チームの人達とBlueskyのユーザーに向けて感謝の言葉を伝える投稿をしてください。"
answer = gpt.get_answer4(prompt, text)
post(session, answer)
util.store_posted_user_count(connection, jaz_count)
elif (
jaz_count % 50000 == 0
or ((posted_count // 50000) * 50000 + 50000) <= jaz_count
):
if posted_count < jaz_count:
if jaz_count >= 100000 == 0:
post(
session,
f"お兄さま、見てくださいまし!!Blueskyのユーザーがついに{jaz_count}人になりましたわよ。感無量ですわ🎀",
)
elif jaz_count % 100000 == 0:
post(
session,
f"お兄さま、見てくださいまし!Blueskyのユーザーがついに{jaz_count}人になりましたわよ。素晴らしいですわ!皆様のご協力のお陰ですわね!",
)
elif jaz_count % 50000 == 0:
post(
session,
f"うふふ、お兄さま、Blueskyのユーザーが{jaz_count}人になりましたわね。",
)
else:
post(
session,
f"ふふ、お兄さま、Blueskyのユーザーが{jaz_count}人になりましたわよ。",
)
util.store_posted_user_count(connection, jaz_count)
update_follow(session, username)
if __name__ == "__main__":
main()