Compare commits
46 Commits
385a02c90f
...
stable/1.4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
79e27ee95a | ||
|
|
af3d7d33a1 | ||
|
|
4636e50b25 | ||
|
|
88f87e15b4 | ||
|
|
e44c10c5c2 | ||
|
|
48bd8e66f2 | ||
|
|
2e5b29bd9d | ||
|
|
b689d73065 | ||
|
|
ff40210fb6 | ||
|
|
209bb0b00c | ||
|
|
6bec287363 | ||
|
|
b035d8c2d9 | ||
|
|
17ced6d294 | ||
|
|
4b54e14522 | ||
|
|
f1b4aaf23a | ||
|
|
e6fd1de954 | ||
|
|
c631b51ba2 | ||
|
|
3e083b4eb9 | ||
|
|
0c41265fb6 | ||
|
|
31a0a02366 | ||
|
|
233c9f5aed | ||
|
|
9c034cd935 | ||
|
|
d32ad04722 | ||
|
|
32c65f7da1 | ||
|
|
f736789f5b | ||
|
|
973a0a1d01 | ||
|
|
de82116482 | ||
|
|
5c7e2f6a8f | ||
|
|
6920c10d2d | ||
|
|
c477afabb0 | ||
|
|
ea745b5dbb | ||
| 1184d1415a | |||
| 2030fbce57 | |||
|
|
5f3879e48c | ||
|
|
051747f114 | ||
|
|
0a96927e50 | ||
|
|
57f254ea39 | ||
|
|
05903ce02d | ||
|
|
9a024c5c88 | ||
|
|
f9a0e41889 | ||
|
|
e17e570114 | ||
| 50b3d192ba | |||
|
|
b2e6260dfb | ||
|
|
ed87d341ab | ||
|
|
df5d1447af | ||
|
|
2352fd5396 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@
|
|||||||
/secret.php
|
/secret.php
|
||||||
/config.php
|
/config.php
|
||||||
/test.php
|
/test.php
|
||||||
|
/_secret.php
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ include_once ('string.php');
|
|||||||
include_once ('numbers.php');
|
include_once ('numbers.php');
|
||||||
include_once ('mail.php');
|
include_once ('mail.php');
|
||||||
include_once ('debug.php');
|
include_once ('debug.php');
|
||||||
include_once ('markdown.php');
|
// include_once ('markdown.php');
|
||||||
?>
|
?>
|
||||||
40
ips/crawler.php
Normal file
40
ips/crawler.php
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?php
|
||||||
|
$_ips_crawler = array (
|
||||||
|
'40.77.167.', // bing bot
|
||||||
|
'66.249.',
|
||||||
|
'62.138.',
|
||||||
|
'62.210.149.60',
|
||||||
|
'92.118.160.37', // netsystem research bot
|
||||||
|
'104.155.85.', // google
|
||||||
|
'114.119.1', // petalbot
|
||||||
|
'185.191.171.', // semrush bot
|
||||||
|
'207.46.13.', // bing bot
|
||||||
|
'54.36.148.', // ahrefbot
|
||||||
|
'54.36.149.', // ahrefbot
|
||||||
|
'216.244.66.196', // opensiteexplorer
|
||||||
|
'65.21.180.26', // seekport
|
||||||
|
'81.209.177.145', // website-datenbank.de
|
||||||
|
'2a01:4f8:190:4244::2', // mj12bot
|
||||||
|
'144.76.15.153', // mj12bot
|
||||||
|
'192.99.5.225', // ...
|
||||||
|
'157.55.39.', // microsoft???
|
||||||
|
'2a01:4f8:162:43c5::2', // mj12bot
|
||||||
|
'85.25.177.', // abuse
|
||||||
|
'85.25.210.', // hosteurope abuse
|
||||||
|
'34.79.234.76', // google
|
||||||
|
'148.251.120.201', // mj12bot
|
||||||
|
'205.185.115.87' //sex spam
|
||||||
|
);
|
||||||
|
function checkHuman() {
|
||||||
|
global $_ips_crawler;
|
||||||
|
if (stripos ( $_SERVER ['HTTP_USER_AGENT'], 'bot' ) !== false || stripos ( $_SERVER ['HTTP_USER_AGENT'], 'crawler' ) !== false) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
foreach ( $_ips_crawler as $np ) {
|
||||||
|
if (startsWith ( $_SERVER ['REMOTE_ADDR'], $np )) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
?>
|
||||||
15
og.php
Normal file
15
og.php
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
function scanOG($url) {
|
||||||
|
$og = array();
|
||||||
|
$html = file_get_contents($url);
|
||||||
|
|
||||||
|
$re = '/<meta (name|property)=("|\')(.*?)("|\').*?content=("|\')(.*?)("|\')/m';
|
||||||
|
preg_match_all($re, $html, $matches, PREG_SET_ORDER, 0);
|
||||||
|
|
||||||
|
foreach($matches as $m) {
|
||||||
|
$og[$m[3]] = $m[6];
|
||||||
|
}
|
||||||
|
//print_r($og);
|
||||||
|
return $og;
|
||||||
|
}
|
||||||
|
?>
|
||||||
171
sql.php
171
sql.php
@@ -27,46 +27,50 @@ class SQL {
|
|||||||
$this->cnt_get ++;
|
$this->cnt_get ++;
|
||||||
if (SQL_LOG)
|
if (SQL_LOG)
|
||||||
fputs ( $this->f, str_replace ( array (
|
fputs ( $this->f, str_replace ( array (
|
||||||
"\n",
|
"\n",
|
||||||
" "
|
" "
|
||||||
), array (
|
), array (
|
||||||
' ',
|
' ',
|
||||||
''
|
''
|
||||||
), $que ) . "\n" . print_r ( $p, true ) . "\n\n" );
|
), $que ) . "\n" . print_r ( $p, true ) . "\n\n" );
|
||||||
$statement = $this->h->prepare ( $que );
|
$statement = $this->h->prepare ( $que );
|
||||||
switch (count ( $p )) {
|
if (is_array ( $p )) {
|
||||||
case 0 :
|
switch (count ( $p )) {
|
||||||
break;
|
case 0 :
|
||||||
case 1 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0] );
|
case 1 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0] );
|
||||||
case 2 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1] );
|
case 2 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1] );
|
||||||
case 3 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2] );
|
case 3 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2] );
|
||||||
case 4 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3] );
|
case 4 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3] );
|
||||||
case 5 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4] );
|
case 5 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4] );
|
||||||
case 6 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5] );
|
case 6 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5] );
|
||||||
case 7 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6] );
|
case 7 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6] );
|
||||||
case 8 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7] );
|
case 8 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7] );
|
||||||
case 9 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8] );
|
case 9 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8] );
|
||||||
case 10 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9] );
|
case 10 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9] );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$statement->bind_param ( $t, $p );
|
||||||
}
|
}
|
||||||
$statement->execute ();
|
$statement->execute ();
|
||||||
|
|
||||||
@@ -122,60 +126,49 @@ class SQL {
|
|||||||
$statement = $this->h->prepare ( $que );
|
$statement = $this->h->prepare ( $que );
|
||||||
if (SQL_LOG)
|
if (SQL_LOG)
|
||||||
fputs ( $this->f, str_replace ( array (
|
fputs ( $this->f, str_replace ( array (
|
||||||
"\n",
|
"\n",
|
||||||
" "
|
" "
|
||||||
), array (
|
), array (
|
||||||
' ',
|
' ',
|
||||||
''
|
''
|
||||||
), $que ) . "\n" . print_r ( $p, true ) . "\n\n" );
|
), $que ) . "\n" . print_r ( $p, true ) . "\n\n" );
|
||||||
switch (count ( $p )) {
|
if (is_array ( $p )) {
|
||||||
case 0 :
|
switch (count ( $p )) {
|
||||||
break;
|
case 0 :
|
||||||
case 1 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0] );
|
case 1 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0] );
|
||||||
case 2 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1] );
|
case 2 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1] );
|
||||||
case 3 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2] );
|
case 3 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2] );
|
||||||
case 4 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3] );
|
case 4 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3] );
|
||||||
case 5 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4] );
|
case 5 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4] );
|
||||||
case 6 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5] );
|
case 6 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5] );
|
||||||
case 7 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6] );
|
case 7 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6] );
|
||||||
case 8 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7] );
|
case 8 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7] );
|
||||||
case 9 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8] );
|
case 9 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8] );
|
||||||
case 10 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9] );
|
case 10 :
|
||||||
break;
|
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9] );
|
||||||
case 11 :
|
break;
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9], $p [10] );
|
}
|
||||||
break;
|
} else {
|
||||||
case 12 :
|
$statement->bind_param ( $t, $p );
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9], $p [10], $p [11] );
|
|
||||||
break;
|
|
||||||
case 13 :
|
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9], $p [10], $p [11], $p [12] );
|
|
||||||
break;
|
|
||||||
case 14 :
|
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9], $p [10], $p [11], $p [12], $p [13] );
|
|
||||||
break;
|
|
||||||
case 15 :
|
|
||||||
$statement->bind_param ( $t, $p [0], $p [1], $p [2], $p [3], $p [4], $p [5], $p [6], $p [7], $p [8], $p [9], $p [10], $p [11], $p [12], $p [13], $p [14] );
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
$statement->execute ();
|
$statement->execute ();
|
||||||
if (isset ( $statement->error ) && $statement->error != '') {
|
if (isset ( $statement->error ) && $statement->error != '') {
|
||||||
|
|||||||
530
string.php
530
string.php
@@ -1,260 +1,272 @@
|
|||||||
<?php
|
<?php
|
||||||
function umlaute($str) {
|
function umlaute($str) {
|
||||||
return str_replace ( array (
|
return str_replace ( array (
|
||||||
'Ä',
|
'Ä',
|
||||||
'Ö',
|
'Ö',
|
||||||
'Ü',
|
'Ü',
|
||||||
'ä',
|
'ä',
|
||||||
'ö',
|
'ö',
|
||||||
'ü',
|
'ü',
|
||||||
'ß'
|
'ß',
|
||||||
), array (
|
'&'
|
||||||
'Ä',
|
), array (
|
||||||
'Ö',
|
'Ä',
|
||||||
'Ü',
|
'Ö',
|
||||||
'ä',
|
'Ü',
|
||||||
'ö',
|
'ä',
|
||||||
'ü',
|
'ö',
|
||||||
'ß'
|
'ü',
|
||||||
), $str );
|
'ß',
|
||||||
}
|
'&'
|
||||||
function chk($str) {
|
), $str );
|
||||||
return str_replace ( "'", '"', $str );
|
}
|
||||||
}
|
function chk($str) {
|
||||||
function noScript($str) {
|
return str_replace ( "'", '"', $str );
|
||||||
return str_replace ( array (
|
}
|
||||||
'<',
|
function noScript($str) {
|
||||||
'>'
|
return str_replace ( array (
|
||||||
), array (
|
'<',
|
||||||
'<',
|
'>'
|
||||||
'>'
|
), array (
|
||||||
), $str );
|
'<',
|
||||||
}
|
'>'
|
||||||
function random($name_laenge) {
|
), $str );
|
||||||
$zeichen = "abcedfghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRTSUVWXYZ0123456789";
|
}
|
||||||
$name_neu = "";
|
function random($name_laenge) {
|
||||||
|
$zeichen = "abcedfghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRTSUVWXYZ0123456789";
|
||||||
@mt_srand ( ( double ) microtime () * 1000000 );
|
$name_neu = "";
|
||||||
for($i = 0; $i < $name_laenge; $i ++) {
|
|
||||||
$r = mt_rand ( 0, strlen ( $zeichen ) - 1 );
|
@mt_srand ( ( double ) microtime () * 1000000 );
|
||||||
$name_neu .= $zeichen {$r};
|
for($i = 0; $i < $name_laenge; $i ++) {
|
||||||
}
|
$r = mt_rand ( 0, strlen ( $zeichen ) - 1 );
|
||||||
return $name_neu;
|
$name_neu .= $zeichen[$r];
|
||||||
}
|
}
|
||||||
function startsWith($haystack, $needle) {
|
return $name_neu;
|
||||||
$length = strlen ( $needle );
|
}
|
||||||
return (substr ( $haystack, 0, $length ) === $needle);
|
function startsWith($haystack, $needle) {
|
||||||
}
|
$length = strlen ( $needle );
|
||||||
function endsWith($haystack, $needle) {
|
return (substr ( $haystack, 0, $length ) === $needle);
|
||||||
$length = strlen ( $needle );
|
}
|
||||||
|
function endsWith($haystack, $needle) {
|
||||||
return $length === 0 || (substr ( $haystack, - $length ) === $needle);
|
$length = strlen ( $needle );
|
||||||
}
|
|
||||||
function onlyAlpha($str, $zus = '') {
|
return $length === 0 || (substr ( $haystack, - $length ) === $needle);
|
||||||
return preg_replace ( "/[^a-zA-Z0-9 \-\_{$zus}]+/", "", $str );
|
}
|
||||||
}
|
function onlyAlpha($str, $zus = '') {
|
||||||
function shortener($str, $len = 50, $fill = '...') {
|
return preg_replace ( "/[^a-zA-Z0-9 \-\{$zus}_]+/", "", $str );
|
||||||
if (strlen ( $str ) > $len) {
|
}
|
||||||
$str = substr ( $str, 0, $len - strlen ( $fill ) ) . $fill;
|
function shortener($str, $len = 50, $fill = '...') {
|
||||||
}
|
if (strlen ( $str ) > $len) {
|
||||||
return $str;
|
$str = substr ( $str, 0, $len - strlen ( $fill ) ) . $fill;
|
||||||
}
|
}
|
||||||
function isEmail($str) {
|
return $str;
|
||||||
$match = preg_match ( "/[a-zA-Z0-9\-\_\.]*\@[a-zA-Z0-9\-\_\.]*.[a-z]{2,10}/", $str );
|
}
|
||||||
if ($match) {
|
function isEmail($str) {
|
||||||
return $str;
|
$match = preg_match ( "/[a-zA-Z0-9\-\_\.]*\@[a-zA-Z0-9\-\_\.]*.[a-z]{2,10}/", $str );
|
||||||
}
|
if ($match) {
|
||||||
return false;
|
return $str;
|
||||||
}
|
}
|
||||||
function markUp($text) {
|
return false;
|
||||||
$r = '';
|
}
|
||||||
$lv = 0;
|
function markUp($text) {
|
||||||
foreach ( explode ( "\n", $text ) as $t ) {
|
$r = '';
|
||||||
$nlv = 0;
|
$lv = 0;
|
||||||
if (startsWith ( '**** ', $t )) {
|
foreach ( explode ( "\n", $text ) as $t ) {
|
||||||
$t = substr ( $t, 5 );
|
$nlv = 0;
|
||||||
$nlv = 4;
|
if (startsWith ( '**** ', $t )) {
|
||||||
}
|
$t = substr ( $t, 5 );
|
||||||
if (startsWith ( '*** ', $t )) {
|
$nlv = 4;
|
||||||
$t = substr ( $t, 4 );
|
}
|
||||||
$nlv = 3;
|
if (startsWith ( '*** ', $t )) {
|
||||||
}
|
$t = substr ( $t, 4 );
|
||||||
if (startsWith ( '** ', $t )) {
|
$nlv = 3;
|
||||||
$t = substr ( $t, 3 );
|
}
|
||||||
$nlv = 2;
|
if (startsWith ( '** ', $t )) {
|
||||||
}
|
$t = substr ( $t, 3 );
|
||||||
if (startsWith ( '* ', $t )) {
|
$nlv = 2;
|
||||||
$t = substr ( $t, 2 );
|
}
|
||||||
$nlv = 1;
|
if (startsWith ( '* ', $t )) {
|
||||||
}
|
$t = substr ( $t, 2 );
|
||||||
if ($lv != $nlv) {
|
$nlv = 1;
|
||||||
while ( $lv < $nlv ) {
|
}
|
||||||
$text .= '<ul>';
|
if ($lv != $nlv) {
|
||||||
$lv ++;
|
while ( $lv < $nlv ) {
|
||||||
}
|
$text .= '<ul>';
|
||||||
while ( $lv > $nlv ) {
|
$lv ++;
|
||||||
$text .= '</ul>';
|
}
|
||||||
$lv --;
|
while ( $lv > $nlv ) {
|
||||||
}
|
$text .= '</ul>';
|
||||||
}
|
$lv --;
|
||||||
if (startsWith ( $t, '!!!!! ' )) {
|
}
|
||||||
$t = '<h5>' . substr ( $t, 6 ) . '</h5>';
|
}
|
||||||
}
|
if (startsWith ( $t, '!!!!! ' )) {
|
||||||
if (startsWith ( $t, '!!!! ' )) {
|
$t = '<h5>' . substr ( $t, 6 ) . '</h5>';
|
||||||
$t = '<h4>' . substr ( $t, 5 ) . '</h4>';
|
}
|
||||||
}
|
if (startsWith ( $t, '!!!! ' )) {
|
||||||
if (startsWith ( $t, '!!! ' )) {
|
$t = '<h4>' . substr ( $t, 5 ) . '</h4>';
|
||||||
$t = '<h3>' . substr ( $t, 4 ) . '</h3>';
|
}
|
||||||
}
|
if (startsWith ( $t, '!!! ' )) {
|
||||||
if (startsWith ( $t, '!! ' )) {
|
$t = '<h3>' . substr ( $t, 4 ) . '</h3>';
|
||||||
$t = '<h2>' . substr ( $t, 3 ) . '</h2>';
|
}
|
||||||
}
|
if (startsWith ( $t, '!! ' )) {
|
||||||
if (startsWith ( $t, '! ' )) {
|
$t = '<h2>' . substr ( $t, 3 ) . '</h2>';
|
||||||
$t = '<h1>' . substr ( $t, 2 ) . '</h1>';
|
}
|
||||||
}
|
if (startsWith ( $t, '! ' )) {
|
||||||
if ($lv == 0) {
|
$t = '<h1>' . substr ( $t, 2 ) . '</h1>';
|
||||||
$r .= $t;
|
}
|
||||||
} else {
|
if ($lv == 0) {
|
||||||
$r .= '<li>' . $t . '</li>';
|
$r .= $t;
|
||||||
}
|
} else {
|
||||||
// var_dump ( $t );
|
$r .= '<li>' . $t . '</li>';
|
||||||
}
|
}
|
||||||
while ( $lv > 0 ) {
|
// var_dump ( $t );
|
||||||
$r .= '</ul>';
|
}
|
||||||
$lv --;
|
while ( $lv > 0 ) {
|
||||||
}
|
$r .= '</ul>';
|
||||||
return $r;
|
$lv --;
|
||||||
}
|
}
|
||||||
function onlySimpleHTML($s) {
|
return $r;
|
||||||
$s = str_replace ( array (
|
}
|
||||||
'<',
|
function onlySimpleHTML($s) {
|
||||||
'>'
|
$s = str_replace ( array (
|
||||||
), array (
|
'<',
|
||||||
'{{|-<-|}}',
|
'>'
|
||||||
'{{|->-|}}'
|
), array (
|
||||||
), $s );
|
'{{|-<-|}}',
|
||||||
$s = str_replace ( array (
|
'{{|->-|}}'
|
||||||
'{{|-<-|}}b{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}b/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}b{{|->-|}}',
|
||||||
'<b>',
|
'{{|-<-|}}b/{{|->-|}}'
|
||||||
'<b/>'
|
), array (
|
||||||
), $s );
|
'<b>',
|
||||||
$s = str_replace ( array (
|
'<b/>'
|
||||||
'{{|-<-|}}u{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}u/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}u{{|->-|}}',
|
||||||
'<u>',
|
'{{|-<-|}}u/{{|->-|}}'
|
||||||
'<u/>'
|
), array (
|
||||||
), $s );
|
'<u>',
|
||||||
$s = str_replace ( array (
|
'<u/>'
|
||||||
'{{|-<-|}}i{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}i/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}i{{|->-|}}',
|
||||||
'<i>',
|
'{{|-<-|}}i/{{|->-|}}'
|
||||||
'<i/>'
|
), array (
|
||||||
), $s );
|
'<i>',
|
||||||
$s = str_replace ( array (
|
'<i/>'
|
||||||
'{{|-<-|}}span{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}span/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}span{{|->-|}}',
|
||||||
'<span>',
|
'{{|-<-|}}span/{{|->-|}}'
|
||||||
'<span/>'
|
), array (
|
||||||
), $s );
|
'<span>',
|
||||||
$s = str_replace ( array (
|
'<span/>'
|
||||||
'{{|-<-|}}b{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}b/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}b{{|->-|}}',
|
||||||
'<b>',
|
'{{|-<-|}}b/{{|->-|}}'
|
||||||
'<b/>'
|
), array (
|
||||||
), $s );
|
'<b>',
|
||||||
$s = str_replace ( array (
|
'<b/>'
|
||||||
'{{|-<-|}}br{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}br/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}br{{|->-|}}',
|
||||||
'<br>',
|
'{{|-<-|}}br/{{|->-|}}'
|
||||||
'<br/>'
|
), array (
|
||||||
), $s );
|
'<br>',
|
||||||
$s = str_replace ( array (
|
'<br/>'
|
||||||
'{{|-<-|}}h1{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}h1/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}h1{{|->-|}}',
|
||||||
'<h1>',
|
'{{|-<-|}}h1/{{|->-|}}'
|
||||||
'<h1/>'
|
), array (
|
||||||
), $s );
|
'<h1>',
|
||||||
$s = str_replace ( array (
|
'<h1/>'
|
||||||
'{{|-<-|}}h2{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}h2/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}h2{{|->-|}}',
|
||||||
'<h2>',
|
'{{|-<-|}}h2/{{|->-|}}'
|
||||||
'<h2/>'
|
), array (
|
||||||
), $s );
|
'<h2>',
|
||||||
$s = str_replace ( array (
|
'<h2/>'
|
||||||
'{{|-<-|}}h3{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}h3/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}h3{{|->-|}}',
|
||||||
'<h3>',
|
'{{|-<-|}}h3/{{|->-|}}'
|
||||||
'<h3/>'
|
), array (
|
||||||
), $s );
|
'<h3>',
|
||||||
$s = str_replace ( array (
|
'<h3/>'
|
||||||
'{{|-<-|}}h4{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}h4/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}h4{{|->-|}}',
|
||||||
'<h4>',
|
'{{|-<-|}}h4/{{|->-|}}'
|
||||||
'<h4/>'
|
), array (
|
||||||
), $s );
|
'<h4>',
|
||||||
$s = str_replace ( array (
|
'<h4/>'
|
||||||
'{{|-<-|}}h5{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}h5/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}h5{{|->-|}}',
|
||||||
'<h5>',
|
'{{|-<-|}}h5/{{|->-|}}'
|
||||||
'<h5/>'
|
), array (
|
||||||
), $s );
|
'<h5>',
|
||||||
$s = str_replace ( array (
|
'<h5/>'
|
||||||
'{{|-<-|}}h6{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}h6/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}h6{{|->-|}}',
|
||||||
'<h6>',
|
'{{|-<-|}}h6/{{|->-|}}'
|
||||||
'<h6/>'
|
), array (
|
||||||
), $s );
|
'<h6>',
|
||||||
$s = str_replace ( array (
|
'<h6/>'
|
||||||
'{{|-<-|}}li{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}li/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}li{{|->-|}}',
|
||||||
'<li>',
|
'{{|-<-|}}li/{{|->-|}}'
|
||||||
'<li/>'
|
), array (
|
||||||
), $s );
|
'<li>',
|
||||||
$s = str_replace ( array (
|
'<li/>'
|
||||||
'{{|-<-|}}ul{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}ul/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}ul{{|->-|}}',
|
||||||
'<ul>',
|
'{{|-<-|}}ul/{{|->-|}}'
|
||||||
'<ul/>'
|
), array (
|
||||||
), $s );
|
'<ul>',
|
||||||
$s = str_replace ( array (
|
'<ul/>'
|
||||||
'{{|-<-|}}ol{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}ol/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}ol{{|->-|}}',
|
||||||
'<ol>',
|
'{{|-<-|}}ol/{{|->-|}}'
|
||||||
'<ol/>'
|
), array (
|
||||||
), $s );
|
'<ol>',
|
||||||
$s = str_replace ( array (
|
'<ol/>'
|
||||||
'{{|-<-|}}pre{{|->-|}}',
|
), $s );
|
||||||
'{{|-<-|}}pre/{{|->-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-<-|}}pre{{|->-|}}',
|
||||||
'<pre>',
|
'{{|-<-|}}pre/{{|->-|}}'
|
||||||
'<pre/>'
|
), array (
|
||||||
), $s );
|
'<pre>',
|
||||||
|
'<pre/>'
|
||||||
// cleanup
|
), $s );
|
||||||
$s = str_replace ( array (
|
|
||||||
'{{|-',
|
// cleanup
|
||||||
'-|}}'
|
$s = str_replace ( array (
|
||||||
), array (
|
'{{|-',
|
||||||
'',
|
'-|}}'
|
||||||
''
|
), array (
|
||||||
), $s );
|
'',
|
||||||
|
''
|
||||||
return $s;
|
), $s );
|
||||||
}
|
|
||||||
|
return $s;
|
||||||
|
}
|
||||||
|
function linkify($input) {
|
||||||
|
$pattern = '@(http(s)?://[a-zA-Z0-9/\.\#\-\_]*)@';
|
||||||
|
return $output = preg_replace ( $pattern, '<a href="$1">$1</a>', $input );
|
||||||
|
}
|
||||||
|
function inStr($needle, $haystack) {
|
||||||
|
if (strpos ( $haystack, $needle ) !== false) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
16
troy-api.php
Normal file
16
troy-api.php
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
function sendToTroy($data) {
|
||||||
|
$url = 'https://troy-grunt.de/api.php';
|
||||||
|
$options = array (
|
||||||
|
'http' => array (
|
||||||
|
'method' => 'POST',
|
||||||
|
'header' => array (
|
||||||
|
'Content-Type: application/json'
|
||||||
|
),
|
||||||
|
'content' => json_encode ( $data )
|
||||||
|
)
|
||||||
|
);
|
||||||
|
$context = stream_context_create ( $options );
|
||||||
|
return file_get_contents ( $url, false, $context );
|
||||||
|
}
|
||||||
|
?>
|
||||||
Reference in New Issue
Block a user