| |
|
|
| import WarClient |
| import requests |
| import re |
| from bs4 import BeautifulSoup |
| import urllib.request as urllib |
| import warnings |
| import schedule |
| import time |
| warnings.filterwarnings("ignore") |
|
|
| |
| login_url = 'https://waronline.org/fora/index.php?login/login' |
| thread_url = 'https://waronline.org/fora/index.php?threads/warbot-playground.17636/' |
| post_url = "https://waronline.org/fora/index.php?threads/warbot-playground.17636/add-reply" |
|
|
| |
| message = "Test" |
|
|
| |
| username = 'WarBot' |
| password = 'naP2tion' |
|
|
| |
| session = requests.Session() |
|
|
|
|
| def compare_pages(url1, url2): |
| |
| return urllib.urlopen(url1).geturl() == urllib.urlopen(url2).geturl() |
|
|
| def login(username=username, password=password, thread_url=thread_url): |
| |
|
|
| |
| login_page_response = session.get(login_url) |
| soup = BeautifulSoup(login_page_response.text, 'html.parser') |
| csrf_token = soup.find('input', {'name': '_xfToken'})['value'] |
|
|
| |
| login_data = { |
| 'login': username, |
| 'password': password, |
| 'remember': '1', |
| '_xfRedirect': thread_url, |
| '_xfToken': csrf_token |
| } |
| response = session.post(login_url, data=login_data) |
|
|
| |
| if 'Invalid login' in response.text: |
| print('Login failed!') |
| exit() |
|
|
| def post(message=message, thread_url=thread_url, post_url=post_url, quoted_by="",quote_text="",quote_source=""): |
| |
| |
| quote_source = quote_source.split('-')[-1] |
|
|
| if quoted_by: |
| message = f'[QUOTE="{quoted_by}, post: {quote_source}"]{quote_text}[/QUOTE]{message}' |
| |
|
|
| |
| response = session.get(thread_url) |
|
|
| |
| soup = BeautifulSoup(response.text, 'html.parser') |
|
|
| |
| xf_token = soup.find('input', {'name': '_xfToken'}).get('value') |
|
|
| |
| message_data = { |
| '_xfToken': xf_token, |
| 'message': message, |
| 'attachment_hash': '', |
| 'last_date': '', |
| '_xfRequestUri': post_url, |
| '_xfWithData': '1', |
| '_xfResponseType': 'json' |
| } |
|
|
| response = session.post(post_url, data=message_data) |
|
|
| |
| if not response.ok: |
| print('Post failed!') |
| exit() |
|
|
| print('Post submitted successfully.') |
|
|
| def allQuotesFor(thread_url=thread_url, username=username, startingPage=1): |
| |
| allquotes =[] |
|
|
| page = startingPage |
| lastPage = False |
|
|
| |
| messengerName = "" |
| messageID = "" |
|
|
| |
| namePattern = re.compile('data-lb-caption-desc="(.*?) ·') |
| messageIDPattern = re.compile('data-lb-id="(.*?)"') |
|
|
| while not lastPage: |
| response = requests.get(thread_url + 'page-' + str(page)) |
| if response.status_code == 200: |
|
|
| |
| response = session.get(thread_url) |
| html_content = response.content |
|
|
| |
| soup = BeautifulSoup(html_content, 'html.parser') |
|
|
| |
| messageData = soup.find_all('div', {'class': 'message-userContent'}) |
|
|
| for data in messageData: |
| if username in data.text: |
| try: |
| |
| matchName = namePattern.search(str(data)) |
| if matchName: |
| messengerName = matchName.group(1) |
|
|
| |
| matchID = messageIDPattern.search(str(data)) |
| if matchID: |
| messageID = matchID.group(1) |
|
|
| reply = data.text.split("Click to expand...")[-1].replace('\n', ' ').strip() |
| allquotes.append({'reply': reply, 'messengerName': messengerName, 'messageID': messageID}) |
| except: |
| continue |
|
|
| |
| if not compare_pages(thread_url + 'page-' + str(page), thread_url + 'page-' + str(page + 1)): |
| page += 1 |
| else: |
| lastPage = True |
| else: |
| lastPage = True |
|
|
| return allquotes |
|
|
| def WarOnlineBot(): |
| |
| quotes = allQuotesFor(thread_url=thread_url, username=username, startingPage=1) |
|
|
| |
| for quote in quotes: |
| reply = allQuotesFor(thread_url=thread_url, username=quote['messengerName'], startingPage=1) |
| if not reply: |
| print('Quote: ', quote['reply']) |
| print(WarClient.getReply(message=quote['reply'])) |
|
|
|
|
| if __name__ == '__main__': |
| timeout = 1 |
| login(username=username, password=password, thread_url=thread_url) |
|
|
| |
|
|
| |
| schedule.every(timeout).minutes.do(WarOnlineBot) |
|
|
| |
| while True: |
| schedule.run_pending() |
| time.sleep(1) |
|
|
|
|
|
|
|
|