summaryrefslogtreecommitdiff
path: root/crawler
diff options
context:
space:
mode:
authorMarvin Borner2018-09-19 18:39:12 +0200
committerMarvin Borner2018-09-19 18:39:12 +0200
commitcbe2b6db3b2c439a85cf0286720d7ebb235277a7 (patch)
tree2d47c7e4469988e2812e6cfd33eab73046be3002 /crawler
parent123162d4510cffa70d35faf8ce50dc2c991429be (diff)
Abstracted database :wrench: :package:
Diffstat (limited to 'crawler')
-rw-r--r--crawler/CrawlController.php4
-rw-r--r--crawler/Database.php79
-rw-r--r--crawler/mysql_conf.inc5
3 files changed, 2 insertions, 86 deletions
diff --git a/crawler/CrawlController.php b/crawler/CrawlController.php
index 53d5aac..5b20b75 100644
--- a/crawler/CrawlController.php
+++ b/crawler/CrawlController.php
@@ -6,9 +6,9 @@ header('Content-type: text/plain; charset=utf-8');
* Time: 23:48
*/
-require_once 'mysql_conf.inc';
+require_once '../database/mysqlConf.inc';
+require_once '../database/Database.php';
require_once 'WebRequest.php';
-require_once 'Database.php';
require_once 'Algorithms.php';
class CrawlController
diff --git a/crawler/Database.php b/crawler/Database.php
deleted file mode 100644
index f27803e..0000000
--- a/crawler/Database.php
+++ /dev/null
@@ -1,79 +0,0 @@
-<?php
-header('Content-type: text/plain; charset=utf-8');
-/**
- * User: Marvin Borner
- * Date: 16/09/2018
- * Time: 21:34
- */
-
-class Database
-{
- public static function getFromQueue($sort): string
- {
- print "\t\e[96mStarting at " . ($sort === 'DESC' ? 'bottom' : 'top') . " of queue\n";
- $conn = self::initDbConnection();
- $checkStmt = $conn->query('SELECT url FROM queue ORDER BY id ' . $sort . ' LIMIT 1');
-
- return $checkStmt->fetchAll(PDO::FETCH_ASSOC)[0]['url'] ?? '';
- }
-
- public static function insertIntoQueue($urls)
- {
- foreach ($urls as $url) {
- if (self::alreadyCrawled($url)) {
- print "\t\e[91mUrl already queued " . $url . "\n";
- } else {
- print "\t\e[92mQueueing url " . $url . "\n";
- $conn = self::initDbConnection();
- $hash = md5($url);
- $stmt = $conn->prepare('INSERT IGNORE INTO queue (url, hash) VALUES (:url, :hash)');
- $stmt->execute([':url' => $url, 'hash' => $hash]);
- }
- }
- }
-
- public static function removeFromQueue($url)
- {
- $hash = md5($url);
- $conn = self::initDbConnection();
- $checkStmt = $conn->prepare('DELETE FROM queue WHERE hash = :hash');
- $checkStmt->execute([':hash' => $hash]);
- }
-
- public static function alreadyCrawled($url): bool
- {
- print "\t\e[96mChecking if url has already been crawled " . $url . "\n";
- $hash = md5($url);
- $conn = self::initDbConnection();
- $checkStmt = $conn->prepare('(SELECT null FROM url_data WHERE hash = :hash) UNION (SELECT null FROM error_url WHERE hash = :hash)');
- $checkStmt->execute([':hash' => $hash]);
- $alreadyCrawled = $checkStmt->rowCount() !== 0;
- if ($alreadyCrawled) {
- print "\t\e[91mUrl already crawled " . $url . "\n";
- }
- return $alreadyCrawled; // return true if already crawled
- }
-
- public static function urlHasError($url)
- {
- $hash = md5($url);
- $conn = self::initDbConnection();
- $checkStmt = $conn->prepare('INSERT IGNORE INTO error_url (url, hash) VALUES (:url, :hash)');
- $checkStmt->execute([':url' => $url, 'hash' => $hash]);
- }
-
- public static function saveUrlData($url, $data)
- {
- $conn = self::initDbConnection();
- $stmt = $conn->prepare('INSERT IGNORE INTO url_data (url, title, description, lang, hash) VALUES (:url, :title, :description, :lang, :hash)');
- $stmt->execute([':url' => $url, ':title' => $data['title'] ?? '', ':description' => $data['description'] ?? '', ':lang' => $data['lang'] ?? 'en', ':hash' => md5($url)]);
- }
-
- private static function initDbConnection(): PDO
- {
- global $servername, $dbname, $username, $password;
- $conn = new PDO("mysql:host=$servername;dbname=$dbname;charset=utf8", $username, $password);
- $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
- return $conn;
- }
-} \ No newline at end of file
diff --git a/crawler/mysql_conf.inc b/crawler/mysql_conf.inc
deleted file mode 100644
index 5d70dd5..0000000
--- a/crawler/mysql_conf.inc
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
-$servername = '127.0.0.1';
-$username = 'root';
-$password = 'root';
-$dbname = 'search_engine'; \ No newline at end of file