HEX
Server: Apache
System: Linux 4485441ca2e2 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 11:03:07 UTC 2025 aarch64
User: (1000)
PHP: 8.2.24
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/flamingo/includes/akismet.php
<?php

function flamingo_akismet_submit_spam( $comment ) {
	return flamingo_akismet_submit( $comment, 'spam' );
}

function flamingo_akismet_submit_ham( $comment ) {
	return flamingo_akismet_submit( $comment, 'ham' );
}

function flamingo_akismet_submit( $comment, $as = 'spam' ) {
	global $akismet_api_host, $akismet_api_port;

	if ( ! flamingo_akismet_is_active() )
		return false;

	if ( ! in_array( $as, array( 'spam', 'ham' ) ) )
		return false;

	$query_string = '';

	foreach ( (array) $comment as $key => $data )
		$query_string .= $key . '=' . urlencode( wp_unslash( (string) $data ) ) . '&';

	if ( is_callable( array( 'Akismet', 'http_post' ) ) ) { // Akismet v3.0+
		$response = Akismet::http_post( $query_string, 'submit-' . $as );
	} else {
		$response = akismet_http_post( $query_string, $akismet_api_host,
			'/1.1/submit-' . $as, $akismet_api_port );
	}

	return (bool) $response[1];
}

function flamingo_akismet_is_active() {
	if ( is_callable( array( 'Akismet', 'get_api_key' ) ) ) { // Akismet v3.0+
		return (bool) Akismet::get_api_key();
	}

	if ( function_exists( 'akismet_get_key' ) ) {
		return (bool) akismet_get_key();
	}

	return false;
}

?>