|
@@ -17,16 +17,16 @@ import traceback
|
|
|
import sys
|
|
|
from selenium.webdriver.common.keys import Keys
|
|
|
|
|
|
-target_domain=['bennis.com.tw']
|
|
|
-brands={'bennis.com.tw':'班尼斯'}
|
|
|
+add_tabs = [4,5,6,7,8,4,5,6,7,8,4,5,6,7,8,4,5,6,7,8]
|
|
|
|
|
|
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
|
|
|
driver=None
|
|
|
headers = {
|
|
|
"Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
|
|
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+sleepoffset = 0
|
|
|
|
|
|
def send_msg(kw):
|
|
|
params = {"message": "處理關鍵字: "+kw}
|
|
@@ -40,9 +40,9 @@ def empty_query(q):
|
|
|
time.sleep(3)
|
|
|
|
|
|
|
|
|
-def process_query():
|
|
|
- q="班尼斯"
|
|
|
- domain="bennis.com.tw"
|
|
|
+def process_query(domain, target_domain, brands, query):
|
|
|
+ print(query)
|
|
|
+ sleepoffset = 0
|
|
|
global driver
|
|
|
driver.get('https://www.google.com?num=100')
|
|
|
time.sleep(3)
|
|
@@ -54,7 +54,7 @@ def process_query():
|
|
|
elmt = driver.find_element(By.XPATH, "//input[@name='q']")
|
|
|
time.sleep(1)
|
|
|
|
|
|
- elmt.send_keys(q)
|
|
|
+ elmt.send_keys(query)
|
|
|
elmt.send_keys(Keys.ENTER)
|
|
|
|
|
|
idx=1
|
|
@@ -80,26 +80,40 @@ def process_query():
|
|
|
print(txt)
|
|
|
webdriver.ActionChains(driver).move_to_element(el).perform()
|
|
|
webdriver.ActionChains(driver).move_to_element(el).click().perform()
|
|
|
- time.sleep(6)
|
|
|
+ time.sleep(15)
|
|
|
+
|
|
|
+ new_windows_count = add_tabs[random.randint(0,19)]
|
|
|
+ print(str(new_windows_count) + " new tabs")
|
|
|
+ for i in range (0,new_windows_count):
|
|
|
+ print("Tab" + str(i+1))
|
|
|
+ #original_window = driver.current_window_handle
|
|
|
+ #driver.switch_to.new_window('window')
|
|
|
+ #driver.get(href)
|
|
|
+ sleepoffset += 12
|
|
|
+ driver.execute_script('window.open("'+href+'","_blank");')
|
|
|
+ driver.execute_script("window.scrollTo(0, 600)")
|
|
|
+ time.sleep(15)
|
|
|
+ #driver.close()
|
|
|
+ #driver.switch_to.window(original_window)
|
|
|
|
|
|
if domain in target_domain:
|
|
|
print("Target link found")
|
|
|
time_stamp = datetime.fromtimestamp(time.time())
|
|
|
time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
|
|
|
- db['click_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": q, "url": href, "content": txt})
|
|
|
+ db['click_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "url": href, "content": txt, "extra_windows": new_windows_count})
|
|
|
break
|
|
|
|
|
|
if domain in target_domain:
|
|
|
print("Target domain found")
|
|
|
time_stamp = datetime.fromtimestamp(time.time())
|
|
|
time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
|
|
|
- db['query_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": q, "googleurl": googleurl, "element_count": len(elmts), "domain_in_link_count": domain_in_link})
|
|
|
+ db['query_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "googleurl": googleurl, "element_count": len(elmts), "domain_in_link_count": domain_in_link})
|
|
|
|
|
|
|
|
|
print(domain_in_link)
|
|
|
|
|
|
|
|
|
-def run_once():
|
|
|
+def run_once(domain, target_domain, brands, query):
|
|
|
global driver
|
|
|
result=[]
|
|
|
options = webdriver.ChromeOptions()
|
|
@@ -115,18 +129,20 @@ def run_once():
|
|
|
driver.delete_all_cookies()
|
|
|
driver.set_window_size(1400,1000)
|
|
|
|
|
|
- process_query()
|
|
|
+ process_query(domain, target_domain, brands, query)
|
|
|
time.sleep(3)
|
|
|
driver.quit()
|
|
|
|
|
|
#execution starts here
|
|
|
-db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
|
|
|
|
|
|
-while True:
|
|
|
- try:
|
|
|
- run_once()
|
|
|
- except:
|
|
|
- traceback.print_exc()
|
|
|
- sleepint=random.randint(35,50)
|
|
|
- print("Completed (" + str(sleepint) + ")")
|
|
|
- time.sleep(sleepint)
|
|
|
+def execute(domain, target_domain, brands, query_list):
|
|
|
+ while True:
|
|
|
+ try:
|
|
|
+ run_once(domain, target_domain, brands, random.choice(query_list))
|
|
|
+ except:
|
|
|
+ traceback.print_exc()
|
|
|
+ sleepint = random.randint(75,90)
|
|
|
+ sleepint = sleepint - sleepoffset
|
|
|
+ print("Completed (" + str(sleepint) + ")")
|
|
|
+ if sleepint > 0:
|
|
|
+ time.sleep(sleepint)
|