-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmod_info.php
111 lines (86 loc) · 3.92 KB
/
mod_info.php
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
<?php
function setinfo($args) {
$matched = preg_match('/^(.*?)=(.*)$/', $args, $split);
if(!$matched || empty($split[1]) || empty($split[2])) {
return "[info] Je invoer was niet geldig, heb je wel een = teken gebruikt? Bijvoorbeeld: info+ hacken kun je leren = cool";
} else {
$name = trim($split[1]);
$value = trim($split[2]);
if(strlen($name)==0 || strlen($value)==0) {
return "[info] Ik begrijp er niks van, heb je wel een = teken gebruikt? Bijvoorbeeld: info+ hacken kun je leren = cool";
} elseif(strlen($name)>100 || strlen($value)>255) {
return "[info] Je invoer was niet geldig, de naam van het infoitem mag maximaal 100 tekens zijn, en de inhoud maximaal 255 tekens!";
} else {
include("sqlconfig.php");
$dbh = new PDO('mysql:host=localhost;dbname='.$db,$user,$pass,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
$query = $dbh->prepare("INSERT INTO info(name,value) VALUES (:name,:value)");
$query->bindParam(':value',$value,PDO::PARAM_STR);
$query->bindParam(':name',$name,PDO::PARAM_STR);
$query->execute();
return "[info] Item toegevoegd";
}
}
}
function delinfo($args) {
$index = end(explode(' ',$args));
if(!is_numeric($index)) {
return "[info] Je hebt geen geldige index opgegeven, gebruik: 'info- <naam> <N>' om het N-de infoitem van <naam> te verwijderen.";
} else {
preg_match("/^(.*)\ [0-9]+$/",$args,$names);
$name = $names[1];
include("sqlconfig.php");
$dbh = new PDO('mysql:host=localhost;dbname='.$db,$user,$pass,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
$query = $dbh->prepare("SELECT value FROM info WHERE name=:name");
$query->bindParam(':name',$name,PDO::PARAM_STR);
$query->execute();
$rowcount = $query->rowCount();
if($rowcount == 0) {
return "[info] Dit item bestaat helemaal niet! ";
} else {
if($rowcount < $index) {
return "[info] Deze index is iets te hoog, helaas..";
} else {
$values = $query->fetchAll(PDO::FETCH_COLUMN);
$value = $values[$index - 1];
$query = $dbh->prepare("DELETE FROM info WHERE name=:name AND value=:value LIMIT 1");
$query->bindParam(':name',$name,PDO::PARAM_STR);
$query->bindParam(':value',$value,PDO::PARAM_STR);
$query->execute();
return "[info] Item verwijderd";
}
}
}
}
function getinfo($args) {
include("sqlconfig.php");
$dbh = new PDO('mysql:host=localhost;dbname='.$db,$user,$pass,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
$query = $dbh->prepare("SELECT value FROM info WHERE name=:name");
$query->bindParam(':name',$args,PDO::PARAM_STR);
$query->execute();
if($query->rowCount() > 0) {
$values = $query->fetchAll(PDO::FETCH_COLUMN);
for($i=1; $i<count($values); $i++) {
$list .= "(" . $i . ") " . $values[$i-1] . ", ";
}
$list .= "(" . $i . ") " . $values[$i-1];
return "[info] ".$args." = ".$list;
} else {
return "[info] Geen informatie bekend, gebruik 'info+' om een info item toe te voegen.";
}
}
function getkeys() {
include("sqlconfig.php");
$dbh = new PDO('mysql:host=localhost;dbname='.$db,$user,$pass,array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
$query = $dbh->prepare("SELECT name FROM info");
$query->execute();
if($query->rowCount() > 0) {
$values = $query->fetchAll(PDO::FETCH_COLUMN);
for($i=1; $i<count($values); $i++) {
$list .= "(" . $i . ") " . $values[$i-1] . ", ";
}
$list .= "(" . $i . ") " . $values[$i-1];
return "[info] ".$list;
} else {
return "[info] hahah wtf is leeg doei";
}
}