承接 relisoft/php-steam-user-library 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

relisoft/php-steam-user-library

Composer 安装命令:

composer require relisoft/php-steam-user-library

包简介

Steam PHP library for getting data from API

README 文档

README

This library may help someone who want to use steam API and use it to fetch user data. With few lines of code you can fetch everything about user.

Install:

composer require relisoft/php-steam-user-library

CONTENT:

  • user summary
  • friends
  • game stats
  • cache results
  • recently played games
  • inventory (with item details)
  • login via steam

TODO:

  • achievement
  • trade support

How to use it?

HomepagePresenter

public function renderSingle()
{
    $player = new Player("76561198151608925");
    $request = new Request();
    $request->getPlayerFriends($player,2);
    $request->getPlayerRecentlyPlayedGames($player);
    $request->getPlayerInventory($player,Games::CSGO);
    Dumper::dump($player);
}
But what we do if we need cache results?

We will use new functions and we will load full user profile and system automaticly cache it. It's cache function call so if some result will be different it will automaticly reload data.

public function renderSingle()
{
    $player = new Player("76561198151608925");
    $request = new Request();
    $player = $request->getFullData($player); // This function will load full profile (profile, recent games, friends, inventory)
    $this->template->items = $player->getInventory()->getData();
}

Dump:

Image of dump data

Getting / Setting data

Every variable did you see above have get and set function within you can set every variable and get it too.

$player->getState()
$player->getLastlogoff()
$player->getFriends()

Persona state

Persona state is one class with you can translate value from API to english language or edit to html return value.

Relisoft\Steam\Src\API\PersonaState::getVerbState($player->getPersonaState())

Login

Login button:

For this purpose i created Button class with two static function whitch will return source link to img.

<div class="container">
    <a href="{link login!}"><img src="{Relisoft\Steam\Src\Login\Button::rectangle()}"></a>
</div>
Relisoft\Steam\Src\Login\Button::rectangle()
Relisoft\Steam\Src\Login\Button::square()

Login function

For this i created class Login whitch use $session to store user data. You have to add your source of $session or use default $_SESSION. I did this because i am using nette/http in my all project with better session api.

Create instance
$this->login = new Login($this->session->getSection("steam"));
OR
$this->login = new Login($_SESSION);
Usage
public function handleLogin()
    {
        $login = $this->login; 

        if($login->isLogged()) // If is use logged in
        {
            $this->flashMessage("User is logged."); //Flash message like echo
            $this->redirect("single",$this->session->getSection("steam")->user); // This you can edit for your purpose
        }
        else
        {
            $object = $login->auth(); // Auth user and return states

            if($object) //IF SUCCESS RETURN STEAM ID
            {
                $this->flashMessage("successfuly logged in $object"); //Echo some text
                $this->redirect("single",$object); // Redirect to another page with parameter $object -> returning STEAM ID
            }
            elseif($object == $login::FAILED)
            {
                $this->flashMessage("Steam is not logged in!"); //Echo that's failed
                $this->redirect("this"); //Redirect
            }
            elseif($object == $login::CANCEL) //Echo that's your cancel process
            {
                $this->flashMessage("Cancel by user");
                $this->redirect("this");
            }
        }
    }
Login states:
const CANCEL = "cancel";
const SUCCESS = "success";
const FAILED = "failed";

Depency:

  • nette/utils
  • nette/neon
  • nette/caching
  • PHP 5.4+

统计信息

  • 总下载量: 105
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 3
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-25

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固