2017-25 © Pedro Peláez
 

library php-akismet

Akismet PHP Client

image

gothick/php-akismet

Akismet PHP Client

  • Thursday, September 21, 2017
  • by gothick
  • Repository
  • 2 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

php-akismet

Scrutinizer Code Quality Code Coverage Build Status, (*1)

A simple PHP Akismet client., (*2)

  • PSR-4 autoloading
  • Composer-friendly
  • Uses Guzzle as its http client
  • Exposes all Akismet methods and return values
  • Available on Packagist

Simple Usage

Spam checking

Uses Akismet's comment-check API method:, (*3)

    $client = new \Gothick\AkismetClient\Client(
        "http://example.com",   // Your website's URL (this becomes Akismet's "blog" parameter)
        "Example Forum",        // Your website or app's name (Used in the User-Agent: header when talking to Akismet)
        "1.2.3",                // Your website or app's software version (Used in the User-Agent: header when talking to Akismet)
        "YOUR KEY HERE"         // Your Akismet API key
    );

    // See https://akismet.com/development/api/#comment-check for all available parameters
    $params = [
        "user_ip" => "203.0.113.4", // IP address of person posting the comment
        "user_agent" => "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8", // User-Agent header of the commenter
        "comment_type" => "forum-post",
        "comment_author" => "Spammy McSpamface",
        "comment_content" => "I'm an evil spammy message"
    ]

    // $result will be of type \Gothick\AkismetClient\Result\CommentCheckResult.php
    // Akismet really wants to see your $_SERVER variables. "This data is highly useful to
    // Akismet. How the submitted content interacts with the server can be very telling,
    // so please include as much of it as possible." But obviously, if you're worried,
    // you could filter anything senstive out and send in a pared-down array instead.
    $result = $client->commentCheck($params, $_SERVER);

    $is_spam = $result->isSpam(); // Boolean

More advanced usage

    // ...get $result from client as above...
    // If it's blatant spam that Akismet thinks you can discard without human
    // intervention (see https://blog.akismet.com/2014/04/23/theres-a-ninja-in-your-akismet/)
    $is_blatant_spam = $result->isBlatantSpam();

    // Get the X-akismet-pro-tip header, if present
    if ($result->hasProTip()) {
        $pro_tip = $result->getProTip();
    }

    // Get the X-akismet-debug-help header, if present
    if ($result->hasDebugHelp()) {
        $debug_help = $result->getDebugHelp();
    }

Verifying your API key

    $client = new \Gothick\AkismetClient\Client(
        "http://example.com",   // Your website's URL (this becomes Akismet's "blog" parameter)
        "Example Forum",        // Your website or app's name (Used in the User-Agent: header when talking to Akismet)
        "1.2.3",                // Your website or app's software version (Used in the User-Agent: header when talking to Akismet)
        "YOUR KEY HERE"         // Your Akismet API key
    );

    // $result will be of type \Gothick\AkismetClient\Result\VerifyKeyResult
    $result = $client->verifyKey();
    $api_key_is_valid = $result->isValid(); // Boolean

    // Can also check pro tip and debug help as above.

Submitting ham and spam

This client also exposes Akismet's submit-spam and submit-ham methods. Use them as with commentCheck above, passing exactly the same parameters. See the Akismet API documentation for more details., (*4)

    $client->submitHam($params, $_SERVER);
    // OR
    $client->submitSpam($params, $_SERVER);

Using a custom Guzzle client

If you have particular network transport needs, you may override the default Guzzle client that the Akismet client uses by passing a Guzzle client as the last constructor parameter:, (*5)

$guzzle_client = new \GuzzleHttp\Client([
    'timeout' => 10.0,
    'handler' => $my_special_handler_stack
]);
$akismet_client = new \Gothick\AkismetClient\Client(
    "http://example.com",   // Your website's URL (this becomes Akismet's "blog" parameter)
    "Example Forum",        // Your website or app's name (Used in the User-Agent: header when talking to Akismet)
    "1.2.3",                // Your website or app's software version (Used in the User-Agent: header when talking to Akismet)
    "YOUR KEY HERE",        // Your Akismet API key
    $guzzle_client
);

Error handling

The client should either Just Work or throw \Gothick\AkismetClient\AkismetException, which is an entirely trivial extension of the PHP \Exception base class., (*6)

Tests

A unit test suite is provided; install the package using Composer with dev requirements, then (you'll need PHP 8.1+ and PHPUnit 10.5+):, (*7)

    php vendor/bin/phpunit -c test/phpunit.xml.dist

You'll notice some tests are skipped. The majority of the tests use mock Guzzle responses, require no network connectivity, and don't touch the Akismet servers. If you wish to run the "live" tests that connect to the API server, provide your API key in an environment variable:, (*8)

    export AKISMET_API_KEY="YOUR API KEY"
    php vendor/bin/phpunit -c test/phpunit.xml.dist

The Versions

21/09 2017

dev-master

9999999-dev https://github.com/gothick/phpbb-akismet

Akismet PHP Client

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

21/09 2017

1.0.0

1.0.0.0 https://github.com/gothick/phpbb-akismet

Akismet PHP Client

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

04/09 2017

dev-scrutinizer-patch-1

dev-scrutinizer-patch-1 https://github.com/gothick/phpbb-akismet

Akismet PHP Client

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

04/09 2017

dev-scrutinizer-patch-2

dev-scrutinizer-patch-2 https://github.com/gothick/phpbb-akismet

Akismet PHP Client

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

04/09 2017

dev-scrutinizer-patch-3

dev-scrutinizer-patch-3 https://github.com/gothick/phpbb-akismet

Akismet PHP Client

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires