wp-multi.php aktualisiert
This commit is contained in:
parent
ed78fbe6ba
commit
fbf63a1efc
624
wp-multi.php
624
wp-multi.php
@ -3,7 +3,7 @@
|
|||||||
* Plugin Name: WP Multi
|
* Plugin Name: WP Multi
|
||||||
* Plugin URI: https://git.viper.ipv64.net/M_Viper/wp-multi
|
* Plugin URI: https://git.viper.ipv64.net/M_Viper/wp-multi
|
||||||
* Description: Erweiterter Anti-Spam-Schutz mit Honeypot, Keyword-Filter, Link-Limit und mehr. Jetzt mit Statistik im Dashboard und HappyForms-Integration.
|
* Description: Erweiterter Anti-Spam-Schutz mit Honeypot, Keyword-Filter, Link-Limit und mehr. Jetzt mit Statistik im Dashboard und HappyForms-Integration.
|
||||||
* Version: 2.1
|
* Version: 2.3
|
||||||
* Author: M_Viper
|
* Author: M_Viper
|
||||||
* Author URI: https://m-viper.de
|
* Author URI: https://m-viper.de
|
||||||
* Requires at least: 6.7.2
|
* Requires at least: 6.7.2
|
||||||
@ -16,355 +16,259 @@
|
|||||||
|
|
||||||
if (!defined('ABSPATH')) exit;
|
if (!defined('ABSPATH')) exit;
|
||||||
|
|
||||||
// Menüeintrag für Broken-Link-Checker
|
|
||||||
function wp_multi_broken_link_checker_menu() {
|
|
||||||
add_submenu_page(
|
/*
|
||||||
'tools.php', // Add to the "Tools" menu
|
* Index Verzeichnis [alphabetical_index]
|
||||||
'Broken Link Checker',
|
*/
|
||||||
'Broken Link Checker',
|
|
||||||
'manage_options',
|
|
||||||
'wp-multi-broken-links',
|
// Shortcode zum Erstellen des Indexes
|
||||||
'wp_multi_broken_link_checker_page'
|
function wp_multi_alphabetical_index($atts) {
|
||||||
|
// Definiere die Argumente für den Shortcode
|
||||||
|
$atts = shortcode_atts(array(
|
||||||
|
'posts_per_page' => 20, // Maximale Beiträge pro Seite
|
||||||
|
), $atts, 'alphabetical_index');
|
||||||
|
|
||||||
|
// Hole alle Beiträge
|
||||||
|
$args = array(
|
||||||
|
'post_type' => 'post',
|
||||||
|
'posts_per_page' => -1, // Alle Beiträge (wir filtern später nach Buchstabenbereich)
|
||||||
|
'orderby' => 'title',
|
||||||
|
'order' => 'ASC',
|
||||||
);
|
);
|
||||||
}
|
|
||||||
add_action('admin_menu', 'wp_multi_broken_link_checker_menu');
|
|
||||||
|
|
||||||
// Menüseite für den Broken-Link-Checker
|
$posts = get_posts($args);
|
||||||
function wp_multi_broken_link_checker_page() {
|
|
||||||
// Holen Sie sich die gespeicherten Optionen für den Broken Link Checker
|
|
||||||
$email_notifications_enabled = get_option('wp_multi_broken_link_email_notifications', false);
|
|
||||||
$send_admin_email = get_option('wp_multi_broken_link_send_admin_email', false);
|
|
||||||
$send_author_email = get_option('wp_multi_broken_link_send_author_email', false);
|
|
||||||
$check_interval = get_option('wp_multi_broken_link_check_interval', 72);
|
|
||||||
$notification_email = get_option('wp_multi_broken_link_notification_email', get_option('admin_email'));
|
|
||||||
|
|
||||||
// Holen Sie sich die Auswahl des Benutzers
|
// Beiträge nach Anfangsbuchstaben gruppieren
|
||||||
$checked_link_types = get_option('wp_multi_broken_link_checked_types', [
|
$alphabet = range('A', 'Z');
|
||||||
'html_links' => true,
|
$posts_by_letter = array();
|
||||||
'html_images' => true,
|
|
||||||
'plaintext_urls' => true,
|
|
||||||
'youtube_videos' => true,
|
|
||||||
'googlevideo_videos' => true,
|
|
||||||
'youtube_playlists' => true,
|
|
||||||
'old_youtube_videos' => true,
|
|
||||||
'smart_youtube' => true,
|
|
||||||
'dailymotion_videos' => true,
|
|
||||||
'vimeo_videos' => true,
|
|
||||||
]);
|
|
||||||
|
|
||||||
|
foreach ($posts as $post) {
|
||||||
|
$first_letter = strtoupper(substr($post->post_title, 0, 1));
|
||||||
|
if (in_array($first_letter, $alphabet)) {
|
||||||
|
$posts_by_letter[$first_letter][] = $post;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Holen des aktuellen Buchstabens aus der URL
|
||||||
|
$letter = isset($_GET['letter']) ? strtoupper($_GET['letter']) : ''; // Der Buchstabe aus der URL
|
||||||
|
|
||||||
|
// Bestimme, welche Beiträge angezeigt werden
|
||||||
|
$posts_in_letter = [];
|
||||||
|
if ($letter && isset($posts_by_letter[$letter])) {
|
||||||
|
$posts_in_letter = $posts_by_letter[$letter];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Teile die Beiträge in zwei Hälften für die Boxen
|
||||||
|
$halfway = ceil(count($posts_in_letter) / 2); // Rundet die Hälfte auf
|
||||||
|
$first_half = array_slice($posts_in_letter, 0, $halfway); // Erste Hälfte der Beiträge
|
||||||
|
$second_half = array_slice($posts_in_letter, $halfway); // Zweite Hälfte der Beiträge
|
||||||
|
|
||||||
|
// Ausgabe
|
||||||
|
ob_start();
|
||||||
?>
|
?>
|
||||||
<div class="wrap">
|
|
||||||
<div class="banner">
|
<div class="alphabetical-index">
|
||||||
<img src="https://m-viper.de/img/logo.png" alt="Logo" class="plugin-logo">
|
<!-- Links zu den Buchstaben -->
|
||||||
<h1>Broken Link Checker</h1>
|
<div class="alphabet-links">
|
||||||
|
<?php foreach ($alphabet as $char): ?>
|
||||||
|
<a href="?letter=<?php echo $char; ?>" class="letter-link"><?php echo $char; ?></a>
|
||||||
|
<?php endforeach; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="status-section">
|
<?php if ($letter): ?>
|
||||||
<h2>Status</h2>
|
<!-- Box für den aktuellen Buchstaben -->
|
||||||
<p id="broken-links-count">0 fehlerhafte Links gefunden</p>
|
<div class="letter-heading-box">
|
||||||
<p id="total-links">0 eindeutige Links wurden in 0 Links erkannt</p>
|
<h2>Beiträge für: <?php echo $letter; ?></h2>
|
||||||
<p>Link-Überprüfung: Alle <?php echo $check_interval; ?> Stunden</p>
|
</div>
|
||||||
<p>Vorhandene Links werden regelmäßig erneut kontrolliert. Neue Links werden normalerweise sofort geprüft.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Link-Überprüfung</h2>
|
<!-- Zeige die Beiträge für den ausgewählten Buchstaben in zwei Boxen -->
|
||||||
<button id="check-broken-links" class="button button-primary">Jetzt auf kaputte Links prüfen</button>
|
<div class="letter-pair-container">
|
||||||
|
<div class="letter-box">
|
||||||
<!-- Fortschrittsanzeige -->
|
<ul class="post-list">
|
||||||
<div id="progress-container" style="display:none; margin-top: 20px;">
|
<?php foreach ($first_half as $post): ?>
|
||||||
<p>Prüfe Links...</p>
|
<li><a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a></li>
|
||||||
<progress id="progress-bar" value="0" max="100" style="width:100%;"></progress>
|
<?php endforeach; ?>
|
||||||
<p id="progress-text">0%</p>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="broken-links-results" style="margin-top: 20px;">
|
|
||||||
<h3>Kaputte Links</h3>
|
|
||||||
<ul id="broken-links-list"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h2>E-Mail-Benachrichtigungen</h2>
|
|
||||||
<form method="post" action="options.php">
|
|
||||||
<?php settings_fields('wp_multi_broken_link_settings'); ?>
|
|
||||||
<?php do_settings_sections('wp_multi_broken_link_settings'); ?>
|
|
||||||
|
|
||||||
<label for="wp_multi_broken_link_email_notifications">
|
|
||||||
<input type="checkbox" name="wp_multi_broken_link_email_notifications" id="wp_multi_broken_link_email_notifications" value="1" <?php checked(1, $email_notifications_enabled); ?>>
|
|
||||||
Dem Administrator eine E-Mail-Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden
|
|
||||||
</label>
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<label for="wp_multi_broken_link_send_admin_email">
|
|
||||||
<input type="checkbox" name="wp_multi_broken_link_send_admin_email" id="wp_multi_broken_link_send_admin_email" value="1" <?php checked(1, $send_admin_email); ?>>
|
|
||||||
Den Administrator benachrichtigen
|
|
||||||
</label>
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<label for="wp_multi_broken_link_send_author_email">
|
|
||||||
<input type="checkbox" name="wp_multi_broken_link_send_author_email" id="wp_multi_broken_link_send_author_email" value="1" <?php checked(1, $send_author_email); ?>>
|
|
||||||
Den Autoren benachrichtigen
|
|
||||||
</label>
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<label for="wp_multi_broken_link_notification_email">Benachrichtigungs-E-Mail-Adresse</label>
|
|
||||||
<input type="email" name="wp_multi_broken_link_notification_email" id="wp_multi_broken_link_notification_email" value="<?php echo esc_attr($notification_email); ?>" class="regular-text">
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<h3>Link-Typen zur Überprüfung</h3>
|
|
||||||
<fieldset>
|
|
||||||
<legend>Wählen Sie die Link-Typen, die Sie überprüfen möchten:</legend>
|
|
||||||
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[html_links]" value="1" <?php checked(1, $checked_link_types['html_links']); ?>> HTML-Links</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[html_images]" value="1" <?php checked(1, $checked_link_types['html_images']); ?>> HTML-Bilder</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[plaintext_urls]" value="1" <?php checked(1, $checked_link_types['plaintext_urls']); ?>> Klartext-URLs</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[youtube_videos]" value="1" <?php checked(1, $checked_link_types['youtube_videos']); ?>> Eingebettete YouTube-Videos</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[googlevideo_videos]" value="1" <?php checked(1, $checked_link_types['googlevideo_videos']); ?>> Eingebettete GoogleVideo-Videos</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[youtube_playlists]" value="1" <?php checked(1, $checked_link_types['youtube_playlists']); ?>> Eingebettete YouTube-Wiedergabelisten (alter Code)</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[old_youtube_videos]" value="1" <?php checked(1, $checked_link_types['old_youtube_videos']); ?>> Eingebettete YouTube-Videos (alter Code)</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[smart_youtube]" value="1" <?php checked(1, $checked_link_types['smart_youtube']); ?>> Smart YouTube-HTTPv://-URLs</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[dailymotion_videos]" value="1" <?php checked(1, $checked_link_types['dailymotion_videos']); ?>> Eingebettete DailyMotion-Videos</label><br>
|
|
||||||
<label><input type="checkbox" name="wp_multi_broken_link_checked_types[vimeo_videos]" value="1" <?php checked(1, $checked_link_types['vimeo_videos']); ?>> Eingebettete Vimeo-Videos</label><br>
|
|
||||||
|
|
||||||
</fieldset>
|
|
||||||
<br>
|
|
||||||
<h3>Link-Einstellungen</h3>
|
|
||||||
<label for="wp_multi_broken_link_check_interval">
|
|
||||||
Link-Überprüfungsintervall (in Stunden):
|
|
||||||
<input type="number" name="wp_multi_broken_link_check_interval" id="wp_multi_broken_link_check_interval" value="<?php echo esc_attr($check_interval); ?>" min="1" step="1" class="small-text">
|
|
||||||
</label>
|
|
||||||
<br><br>
|
|
||||||
<button type="submit" class="button button-secondary">Einstellungen speichern</button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
|
<div class="letter-box">
|
||||||
|
<ul class="post-list">
|
||||||
|
<?php foreach ($second_half as $post): ?>
|
||||||
|
<li><a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.wrap {
|
.alphabetical-index {
|
||||||
background-color: #f4f4f4;
|
font-family: Arial, sans-serif;
|
||||||
padding: 20px;
|
margin: 20px;
|
||||||
font-family: Arial, sans-serif;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.banner {
|
.alphabet-links {
|
||||||
background-color: #0073aa;
|
margin-bottom: 20px;
|
||||||
color: white;
|
display: flex;
|
||||||
padding: 15px;
|
justify-content: center;
|
||||||
display: flex;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
}
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.plugin-logo {
|
.alphabet-links a {
|
||||||
width: 40px;
|
margin-right: 10px;
|
||||||
margin-right: 15px;
|
font-size: 18px;
|
||||||
}
|
text-decoration: none;
|
||||||
|
color: #0073aa;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
.alphabet-links a:hover {
|
||||||
font-size: 30px;
|
text-decoration: underline;
|
||||||
margin: 0;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
.letter-heading-box {
|
||||||
color: #0073aa;
|
margin-bottom: 20px;
|
||||||
}
|
background-color: #f0f0f0;
|
||||||
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.button {
|
.letter-heading-box h2 {
|
||||||
background-color: #0073aa;
|
font-size: 24px;
|
||||||
color: white;
|
margin: 0;
|
||||||
border: none;
|
}
|
||||||
padding: 10px 20px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 14px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button:hover {
|
.letter-pair-container {
|
||||||
background-color: #005f8a;
|
display: flex;
|
||||||
}
|
gap: 30px;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
#status-section {
|
.letter-box {
|
||||||
background-color: #f0f0f0;
|
width: 48%;
|
||||||
padding: 15px;
|
background-color: #f0f0f0;
|
||||||
border-radius: 5px;
|
padding: 20px;
|
||||||
}
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
#broken-links-results ul {
|
.letter-box h2 {
|
||||||
list-style-type: none;
|
font-size: 24px;
|
||||||
padding: 0;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#broken-links-results li {
|
.post-list {
|
||||||
margin: 10px 0;
|
list-style-type: none;
|
||||||
}
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
.post-list li {
|
||||||
border-top: 1px solid #ddd;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
progress {
|
.post-list a {
|
||||||
margin-top: 10px;
|
text-decoration: none;
|
||||||
}
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
#progress-text {
|
.post-list a:hover {
|
||||||
font-size: 14px;
|
text-decoration: underline;
|
||||||
margin-top: 5px;
|
}
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<?php
|
||||||
document.getElementById("check-broken-links").addEventListener("click", function() {
|
return ob_get_clean();
|
||||||
let button = this;
|
}
|
||||||
button.disabled = true;
|
|
||||||
button.innerText = "Wird geprüft...";
|
|
||||||
|
|
||||||
// Zeige Fortschrittsanzeige
|
// Shortcode registrieren
|
||||||
document.getElementById("progress-container").style.display = 'block';
|
add_shortcode('alphabetical_index', 'wp_multi_alphabetical_index');
|
||||||
|
|
||||||
let progressBar = document.getElementById("progress-bar");
|
|
||||||
let progressText = document.getElementById("progress-text");
|
|
||||||
|
|
||||||
progressBar.value = 0;
|
/*
|
||||||
progressText.textContent = "0%";
|
* Sperre Trash Mail Adressen
|
||||||
|
*/
|
||||||
|
|
||||||
fetch(ajaxurl, {
|
|
||||||
method: "POST",
|
|
||||||
headers: { "Content-Type": "application/x-www-form-urlencoded" },
|
|
||||||
body: "action=wp_multi_check_broken_links"
|
|
||||||
})
|
|
||||||
.then(response => response.json())
|
|
||||||
.then(data => {
|
|
||||||
// Statusaktualisierung
|
|
||||||
document.getElementById("broken-links-count").textContent = `${data.broken_links_count} fehlerhafte Links gefunden`;
|
|
||||||
document.getElementById("total-links").textContent = `${data.total_links} eindeutige Links wurden in ${data.broken_links.length} Links erkannt`;
|
|
||||||
|
|
||||||
// Update Progress Bar
|
// Funktion zum Laden der Liste von Einweg-Mail-Anbietern
|
||||||
progressBar.value = 100;
|
function load_disposable_email_list() {
|
||||||
progressText.textContent = "100%";
|
$file_path = plugin_dir_path(__FILE__) . 'includes/disposable_email_blocklist.conf'; // Pfad zur Datei im includes-Ordner
|
||||||
|
if (file_exists($file_path)) {
|
||||||
|
return file($file_path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
||||||
|
}
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Funktion zum Überprüfen der E-Mail-Adresse eines Kommentators
|
||||||
|
function check_disposable_email($commentdata) {
|
||||||
|
$disposable_list = load_disposable_email_list();
|
||||||
|
$email = $commentdata['comment_author_email'];
|
||||||
|
$domain = substr(strrchr($email, "@"), 1); // Nur die Domain extrahieren
|
||||||
|
|
||||||
|
// Überprüfen, ob die Domain auf der Liste steht
|
||||||
|
if (in_array($domain, $disposable_list)) {
|
||||||
|
wp_die(__('Fehler: Trash-Mail-Adressen sind in Kommentaren nicht erlaubt.'));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $commentdata;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Die Funktion wird beim Absenden eines Kommentars ausgeführt
|
||||||
|
add_filter('preprocess_comment', 'check_disposable_email');
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Text Copy Schutz und Schutz vor Entwicklertools
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// JavaScript für die Kopierschutz-Funktion einbinden
|
||||||
|
function wp_multi_enqueue_scripts() {
|
||||||
|
wp_add_inline_script('jquery', "
|
||||||
|
jQuery(document).ready(function($) {
|
||||||
|
// Verhindert das Öffnen der Entwicklertools mit F12, Strg+Shift+I und Strg+Shift+C
|
||||||
|
$(document).keydown(function(e) {
|
||||||
|
// Blockiert F12, Strg + Shift + I, Strg + Shift + C (Entwicklertools)
|
||||||
|
if (e.keyCode == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 73) || (e.ctrlKey && e.shiftKey && e.keyCode == 67)) {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Verhindert das Öffnen des Quellcodes mit Strg + U (view-source)
|
||||||
|
if ((e.ctrlKey && e.keyCode == 85) || (e.ctrlKey && e.shiftKey && e.keyCode == 85)) {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Verhindert den Zugriff auf die Konsole mit Strg + Shift + J (Konsole-Tab)
|
||||||
|
if ((e.ctrlKey && e.shiftKey && e.keyCode == 74) || (e.metaKey && e.altKey && e.keyCode == 74)) {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Verhindert das Öffnen des Quellcodes mit view-source
|
||||||
|
if (e.ctrlKey && e.keyCode == 85) {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Verhindert das Öffnen des Kontextmenüs (Rechtsklick)
|
||||||
|
$('body').on('contextmenu', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Kopierschutz-Funktion
|
||||||
|
$('body').on('copy', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var selectedText = window.getSelection().toString();
|
||||||
|
var numericText = selectedText.replace(/./g, function(char) {
|
||||||
|
return Math.floor(Math.random() * 10);
|
||||||
|
});
|
||||||
|
|
||||||
|
e.originalEvent.clipboardData.setData('text/plain', numericText);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
");
|
||||||
|
|
||||||
<?php
|
|
||||||
}
|
}
|
||||||
|
add_action('wp_enqueue_scripts', 'wp_multi_enqueue_scripts');
|
||||||
// AJAX-Aktion für den Broken-Link-Checker
|
|
||||||
add_action('wp_ajax_wp_multi_check_broken_links', 'wp_multi_check_broken_links');
|
|
||||||
function wp_multi_check_broken_links() {
|
|
||||||
// Holen Sie sich die Basis-URL der Webseite
|
|
||||||
$site_url = get_site_url();
|
|
||||||
|
|
||||||
// Alle Seiten und Beiträge abrufen
|
|
||||||
$posts = get_posts(['post_type' => 'any', 'posts_per_page' => -1]);
|
|
||||||
|
|
||||||
// Holen Sie sich die vom Benutzer ausgewählten Linktypen
|
|
||||||
$checked_link_types = get_option('wp_multi_broken_link_checked_types', [
|
|
||||||
'html_links' => true,
|
|
||||||
'html_images' => true,
|
|
||||||
'plaintext_urls' => true,
|
|
||||||
'youtube_videos' => true,
|
|
||||||
'googlevideo_videos' => true,
|
|
||||||
'youtube_playlists' => true,
|
|
||||||
'old_youtube_videos' => true,
|
|
||||||
'smart_youtube' => true,
|
|
||||||
'dailymotion_videos' => true,
|
|
||||||
'vimeo_videos' => true,
|
|
||||||
]);
|
|
||||||
|
|
||||||
$broken_links = [];
|
|
||||||
$all_links = [];
|
|
||||||
$total_links = 0;
|
|
||||||
|
|
||||||
// Definiere die Regex-Pattern für die verschiedenen Linktypen
|
|
||||||
$patterns = [
|
|
||||||
'html_links' => '/<a href=["\'](https?:\/\/[^\s]+)["\']/', // HTML-Links
|
|
||||||
'html_images' => '/<img [^>]*src=["\'](https?:\/\/[^\s]+)["\']/', // Bilder-Links
|
|
||||||
'plaintext_urls' => '/https?:\/\/[^\s]+/', // Klartext-URLs
|
|
||||||
'youtube_videos' => '/https:\/\/www\.youtube\.com\/watch\?v=([a-zA-Z0-9_-]+)/', // YouTube Videos
|
|
||||||
'googlevideo_videos' => '/https:\/\/video\.google\.com\/videoplay\?docid=([a-zA-Z0-9_-]+)/', // Google Video
|
|
||||||
'youtube_playlists' => '/https:\/\/www\.youtube\.com\/playlist\?list=([a-zA-Z0-9_-]+)/', // YouTube Playlists
|
|
||||||
'old_youtube_videos' => '/https:\/\/youtube\.com\/v\/([a-zA-Z0-9_-]+)/', // Alter YouTube Code
|
|
||||||
'smart_youtube' => '/httpv:\/\/(?:www\.)?youtube\.com\/(?:watch\?v=|v\/)([a-zA-Z0-9_-]+)/', // Smart YouTube
|
|
||||||
'dailymotion_videos' => '/https:\/\/www\.dailymotion\.com\/video\/([a-zA-Z0-9_-]+)/', // DailyMotion Videos
|
|
||||||
'vimeo_videos' => '/https:\/\/vimeo\.com\/([0-9]+)/', // Vimeo Videos
|
|
||||||
];
|
|
||||||
|
|
||||||
// Schleife durch die Beiträge und Links sammeln
|
|
||||||
foreach ($posts as $post) {
|
|
||||||
preg_match_all('/https?:\/\/[^\s]+/', $post->post_content, $matches);
|
|
||||||
$all_links = array_merge($all_links, $matches[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
$total_links = count($all_links);
|
|
||||||
$broken_links_count = 0;
|
|
||||||
|
|
||||||
// Filtere Links nach den vom Benutzer ausgewählten Typen
|
|
||||||
$filtered_links = [];
|
|
||||||
foreach ($checked_link_types as $type => $checked) {
|
|
||||||
if ($checked && isset($patterns[$type])) {
|
|
||||||
$filtered_links = array_merge($filtered_links, preg_grep($patterns[$type], $all_links));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Überprüfe nur die gefilterten Links
|
|
||||||
foreach ($filtered_links as $link) {
|
|
||||||
$response = wp_remote_get($link, ['timeout' => 10]); // Timeout auf 10 Sekunden gesetzt
|
|
||||||
|
|
||||||
if (is_wp_error($response) || wp_remote_retrieve_response_code($response) == 404) {
|
|
||||||
$broken_links[] = $link;
|
|
||||||
$broken_links_count++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
wp_send_json([
|
|
||||||
'broken_links' => array_unique($broken_links),
|
|
||||||
'total_links' => $total_links,
|
|
||||||
'broken_links_count' => $broken_links_count,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Optionen für den Broken Link Checker registrieren
|
|
||||||
function wp_multi_broken_link_settings_init() {
|
|
||||||
register_setting('wp_multi_broken_link_settings', 'wp_multi_broken_link_email_notifications');
|
|
||||||
register_setting('wp_multi_broken_link_settings', 'wp_multi_broken_link_send_admin_email');
|
|
||||||
register_setting('wp_multi_broken_link_settings', 'wp_multi_broken_link_send_author_email');
|
|
||||||
register_setting('wp_multi_broken_link_settings', 'wp_multi_broken_link_notification_email');
|
|
||||||
register_setting('wp_multi_broken_link_settings', 'wp_multi_broken_link_check_interval');
|
|
||||||
register_setting('wp_multi_broken_link_settings', 'wp_multi_broken_link_checked_types');
|
|
||||||
}
|
|
||||||
add_action('admin_init', 'wp_multi_broken_link_settings_init');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -962,7 +866,6 @@ function wp_multi_statistics_page() {
|
|||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Einstellungen registrieren
|
// Einstellungen registrieren
|
||||||
function wp_multi_register_security_settings() {
|
function wp_multi_register_security_settings() {
|
||||||
register_setting('wp_multi_security_settings', 'wp_multi_honeypot_field');
|
register_setting('wp_multi_security_settings', 'wp_multi_honeypot_field');
|
||||||
@ -978,94 +881,11 @@ function wp_multi_register_security_settings() {
|
|||||||
add_settings_field('wp_multi_honeypot_error', 'Honey Pot Error Message', 'wp_multi_honeypot_error_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
add_settings_field('wp_multi_honeypot_error', 'Honey Pot Error Message', 'wp_multi_honeypot_error_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
||||||
add_settings_field('wp_multi_honeypot_widget', 'Disable Honeypot Test Widget', 'wp_multi_honeypot_widget_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
add_settings_field('wp_multi_honeypot_widget', 'Disable Honeypot Test Widget', 'wp_multi_honeypot_widget_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
||||||
add_settings_field('wp_multi_max_links', 'Maximale Links im Kommentar', 'wp_multi_max_links_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
add_settings_field('wp_multi_max_links', 'Maximale Links im Kommentar', 'wp_multi_max_links_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
||||||
add_settings_field('wp_multi_blocked_keywords', 'Blockierte Schlüsselwörter', 'wp_multi_blocked_keywords_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
add_settings_field('wp_multi_blocked_keywords', 'Blockierte Keywords', 'wp_multi_blocked_keywords_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
||||||
add_settings_field('wp_multi_blocked_ips', 'Blockierte IP-Adressen', 'wp_multi_blocked_ips_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
add_settings_field('wp_multi_blocked_ips', 'Blockierte IP-Adressen', 'wp_multi_blocked_ips_callback', 'wp-multi-security', 'wp_multi_honeypot_section');
|
||||||
}
|
}
|
||||||
add_action('admin_init', 'wp_multi_register_security_settings');
|
add_action('admin_init', 'wp_multi_register_security_settings');
|
||||||
|
|
||||||
// Callbacks für Felder
|
|
||||||
function wp_multi_honeypot_field_callback() {
|
|
||||||
echo '<div class="wp-multi-honeypot-group">';
|
|
||||||
echo '<input type="text" id="wp_multi_honeypot_field" name="wp_multi_honeypot_field" value="' . esc_attr(get_option('wp_multi_honeypot_field')) . '" />';
|
|
||||||
echo '<button type="button" onclick="generateHoneypotName()">🔄 Neu</button>';
|
|
||||||
echo '</div>';
|
|
||||||
}
|
|
||||||
|
|
||||||
function wp_multi_honeypot_error_callback() {
|
|
||||||
echo '<input type="text" name="wp_multi_honeypot_error" value="' . esc_attr(get_option('wp_multi_honeypot_error')) . '" />';
|
|
||||||
}
|
|
||||||
|
|
||||||
function wp_multi_honeypot_widget_callback() {
|
|
||||||
$checked = get_option('wp_multi_honeypot_widget') ? 'checked' : '';
|
|
||||||
echo '<input type="checkbox" name="wp_multi_honeypot_widget" ' . $checked . ' /> Deaktivieren';
|
|
||||||
}
|
|
||||||
|
|
||||||
function wp_multi_max_links_callback() {
|
|
||||||
echo '<input type="number" name="wp_multi_max_links" value="' . esc_attr(get_option('wp_multi_max_links')) . '" />';
|
|
||||||
}
|
|
||||||
|
|
||||||
function wp_multi_blocked_keywords_callback() {
|
|
||||||
echo '<input type="text" name="wp_multi_blocked_keywords" value="' . esc_attr(get_option('wp_multi_blocked_keywords')) . '" />';
|
|
||||||
}
|
|
||||||
|
|
||||||
function wp_multi_blocked_ips_callback() {
|
|
||||||
echo '<textarea name="wp_multi_blocked_ips" rows="5">' . esc_textarea(get_option('wp_multi_blocked_ips')) . '</textarea>';
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Prüfen, ob das Kommentar ein Spam ist
|
|
||||||
function wp_multi_is_spam($commentdata) {
|
|
||||||
$honeypot_field = get_option('wp_multi_honeypot_field');
|
|
||||||
if (!empty($commentdata['comment_' . $honeypot_field])) {
|
|
||||||
wp_multi_log_spam_submission($commentdata['comment_author_IP']);
|
|
||||||
wp_die(get_option('wp_multi_honeypot_error'));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Weitere Anti-Spam-Checks hier (Keywords, Links etc.)
|
|
||||||
return $commentdata;
|
|
||||||
}
|
|
||||||
add_filter('preprocess_comment', 'wp_multi_is_spam');
|
|
||||||
|
|
||||||
// Spam-Einreichung protokollieren
|
|
||||||
function wp_multi_log_spam_submission($ip_address) {
|
|
||||||
$spam_submissions = get_option('wp_multi_spam_submissions', []);
|
|
||||||
$spam_submissions[] = ['ip' => $ip_address, 'time' => current_time('mysql')];
|
|
||||||
update_option('wp_multi_spam_submissions', $spam_submissions);
|
|
||||||
|
|
||||||
// Spam IPs blockieren
|
|
||||||
$spammer_ips = get_option('wp_multi_spammer_ips', []);
|
|
||||||
if (!in_array($ip_address, $spammer_ips)) {
|
|
||||||
$spammer_ips[] = $ip_address;
|
|
||||||
update_option('wp_multi_spammer_ips', $spammer_ips);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Zähler für blockierte Kommentare erhöhen
|
|
||||||
$blocked_comments = get_option('wp_multi_blocked_comments', 0);
|
|
||||||
update_option('wp_multi_blocked_comments', ++$blocked_comments);
|
|
||||||
}
|
|
||||||
|
|
||||||
// HappyForms-Integration: Honeypot-Feld hinzufügen
|
|
||||||
function wp_multi_happyforms_add_honeypot($form) {
|
|
||||||
$honeypot_field = get_option('wp_multi_honeypot_field');
|
|
||||||
echo '<div style="display:none !important;">';
|
|
||||||
echo '<label for="' . esc_attr($honeypot_field) . '">Bitte nicht ausfüllen</label>';
|
|
||||||
echo '<input type="text" name="' . esc_attr($honeypot_field) . '" id="' . esc_attr($honeypot_field) . '" value="" />';
|
|
||||||
echo '</div>';
|
|
||||||
}
|
|
||||||
add_action('happyforms_part_input_after', 'wp_multi_happyforms_add_honeypot');
|
|
||||||
|
|
||||||
// HappyForms: Spam-Erkennung
|
|
||||||
function wp_multi_happyforms_check_honeypot($submission) {
|
|
||||||
$honeypot_field = get_option('wp_multi_honeypot_field');
|
|
||||||
|
|
||||||
if (!empty($_POST[$honeypot_field])) {
|
|
||||||
wp_multi_log_spam_submission($_SERVER['REMOTE_ADDR']);
|
|
||||||
wp_die(get_option('wp_multi_honeypot_error'));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $submission;
|
|
||||||
}
|
|
||||||
add_filter('happyforms_validate_submission', 'wp_multi_happyforms_check_honeypot');
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -2573,7 +2393,7 @@ add_action('wp_dashboard_setup', 'wp_multi_update_dashboard_widget');
|
|||||||
function wp_multi_update_dashboard_widget_content() {
|
function wp_multi_update_dashboard_widget_content() {
|
||||||
// Gitea API-URL und Token
|
// Gitea API-URL und Token
|
||||||
$api_url = 'https://git.viper.ipv64.net/api/v1/repos/M_Viper/wp-multi/releases';
|
$api_url = 'https://git.viper.ipv64.net/api/v1/repos/M_Viper/wp-multi/releases';
|
||||||
$api_token = 'aad0e1d1ea382921591a144f115c1d55febb50b3';
|
$api_token = '9a8bfc571ec98af17bdfadf9e8495c6c330d8c7d';
|
||||||
|
|
||||||
// Die Version des Plugins aus den Metadaten der Plugin-Datei holen
|
// Die Version des Plugins aus den Metadaten der Plugin-Datei holen
|
||||||
$plugin_data = get_plugin_data( __FILE__ );
|
$plugin_data = get_plugin_data( __FILE__ );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user