samwilson / mediawiki-oauthclient-php

oauthclient-php is a PHP client for MediaWiki.

Home Page:https://www.mediawiki.org/wiki/Oauthclient-php

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Latest Stable Version License Build Status

mediawiki/oauthclient

PHP OAuth client for use with Wikipedia and other MediaWiki-based wikis running the OAuth extension.

Installation

$ composer require mediawiki/oauthclient

Usage

require_once 'vendor/autoload.php';

use MediaWiki\OAuthClient\ClientConfig;
use MediaWiki\OAuthClient\Consumer;
use MediaWiki\OAuthClient\Client;

$baseUrl = 'http://localhost';
$endpoint = "$baseUrl/w/index.php?title=Special:OAuth";
$redir = "$baseUrl/view/Special:OAuth?";
$consumerKey = 'your key here';
$consumerSecret = 'your shared secret here';

$conf = new ClientConfig( $endpoint );
$conf->setRedirURL( $redir );
$conf->setConsumer( new Consumer( $consumerKey, $consumerSecret ) );

$client = new Client( $conf );
$client->setCallback( "$baseUrl/oauth/callback" );

// Step 1 = Get a request token
list( $next, $token ) = $client->initiate();

// Step 2 - Have the user authorize your app. Get a verifier code from
// them. (if this was a webapp, you would redirect your user to $next,
// then use the 'oauth_verifier' GET parameter when the user is redirected
// back to the callback url you registered.
echo "Point your browser to: $next\n\n";
print "Enter the verification code:\n";
$fh = fopen( 'php://stdin', 'r' );
$verifyCode = trim( fgets( $fh ) );

// Step 3 - Exchange the token and verification code for an access
// token
$accessToken = $client->complete( $token,  $verifyCode );

// You're done! You can now identify the user, and/or call the API with
// $accessToken

// If we want to authenticate the user
$ident = $client->identify( $accessToken );
echo "Authenticated user {$ident->username}\n";

// Do a simple API call
echo "Getting user info: ";
echo $client->makeOAuthCall(
    $accessToken,
    "$baseUrl/w/api.php?action=query&meta=userinfo&uiprop=rights&format=json"
);

// Make an Edit
$editToken = json_decode( $client->makeOAuthCall(
    $accessToken,
    "$baseUrl/w/api.php?action=tokens&format=json"
) )->tokens->edittoken;

$apiParams = array(
    'action' => 'edit',
    'title' => 'Talk:Main_Page',
    'section' => 'new',
    'summary' => 'Hello World',
    'text' => 'Hi',
    'token' => $editToken,
    'format' => 'json',
);

echo $client->makeOAuthCall(
    $accessToken,
    "$baseUrl/w/api.php",
    true,
    $apiParams
);

Running tests

composer install --prefer-dist
composer test

History

The code is a refactored version of Stype/mwoauth-php, which in turn is partially based on Andy Smith's OAuth library. Some code is taken from wikimedia/slimapp.


About

oauthclient-php is a PHP client for MediaWiki.

https://www.mediawiki.org/wiki/Oauthclient-php

License:GNU General Public License v3.0


Languages

Language:PHP 100.0%