This package reads the Steam Web-API and community XML data of Valve's Steam platform and displays the current online status of players as PNG image, designed to be used in forum and blog signatures.
The included link target method detects whether the player is currently playing on a multiplayer server and returns either the URL to the player's steam profile or the URL for joining the game using the visitor's locally installed Steam client if this is supported by the game.
- PHP 8.x
mbstring
extension for handling international characters and emojisGD
extension for rendering the images- Composer
- basic knowledge of executing shell commands on a server
Note: The only officially supported way to install this package is via
Composer. However, it is theoretically possible to install PHP 8 and Composer
on a local computer, run the installation there and then upload the vendor
folder created by Composer to the server, in case shell access is not available.
Important: This package uses the Composer dependency manager for PHP to check system requirements and to install package dependencies. Please make sure it is installed before trying to use this package.
The following example assumes that your web server is running under the user
account www-data
, that composer
is installed into the system $PATH
, and
that you have a working sudo
setup to run shell commands as a different user.
In this case, you simply have to run this command within the same directory
which contains this README.md
on your server:
sudo -u www-data composer install
A basic approach at using this package could look like this:
<?php
declare(strict_types=1);
use randomhost\Steam\API;
use randomhost\Steam\Signature;
require_once '/path/to/vendor/autoload.php';
// setup directories
$imageDir = '/path/to/images/';
$fontsDir = '/path/to/fonts/';
$cacheDir = '/path/to/cache/';
// init an API instance for talking to the Steam Web API
$api = new API('yourSteamApiKey');
// resolve custom URL into steam ID
$steamId = $api->resolveVanityUrl('yourCustomProfileUrl');
// init Signature instance
$signature = new Signature($api, $steamId, $imageDir, $fontsDir, $cacheDir);
// renders the picture
$signature->render();
// returns a link to the user's profile page or a Steam join link
$signature->getLinkTarget();
The example above should be mostly self-explanatory.
The API
class must be initialized with a personalized API key. You can obtain
your API key from the Steam developer website.
The API
class is a very limited implementation of the Steam Web-API and is not
supposed to be used directly, except for one method:
API::resolveVanityUrl($vanityUrl)
Resolves the given vanity URL into a 64-Bit Steam ID, ready to be passed to theSignature
class constructor.
The Signature
class provides two public methods:
-
Signature::render()
Outputs the signature image directly to the web browser.Note: This method must be the only code which sends output to the web browser. If you receive
Cannot modify header information
errors, please ensure that your application does not generate any output beforeSignature::render()
is called. Additionally, no output may be generated after calling this method as it would break the image. -
Signature::getLinkTarget()
Returns a link to the Steam user's profile page or a join link to join the game the user is currently playing if the game supports joining through Steam.
An example implementation of this script can be found in the src/www/
folder.
See LICENSE.txt for full license details.