PHP Classes

Swoose: Manage sessions stored and retrieved using Swoole

Recommend this page to a friend!
  Info   View files Documentation   View files View files (8)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 33 All time: 10,985 This week: 660Up
Version License PHP version Categories
swoose 1.0Shareware5PHP 5, User Management
Description 

Author

This package can manage sessions stored and retrieved using Swoole.

It provides a session manager class that applications using Swoole can use to handle HTTP requests.

The session manager returns session objects from storage managed by Swoole.

It can also perform regular operations to store and retrieve values in session variables with given names.

Session data can also be encrypted and decrypted by this package.

Innovation Award
PHP Programming Innovation award nominee
December 2022
Number 3
Swoole is a PHP extension that allows developers to write more efficient PHP applications using asynchronous applications.

PHP applications that use the classes provided by the Swoole extension can run faster and handle more simultaneous users that access the application in a given moment, thus providing an excellent economy for the expenses of PHP applications that may require many servers.

This package implements user session management functionality similar to the traditional PHP environment but uses the Swoole extension instead o the regular PHP session management variables and functions.

Manuel Lemos
Picture of Ahmad Mustapha
Name: Ahmad Mustapha <contact>
Classes: 23 packages by
Country: Nigeria Nigeria
Age: ???
All time rank: 229812 in Nigeria Nigeria
Week rank: 295 Up8 in Nigeria Nigeria Up
Innovation award
Innovation award
Nominee: 9x

Documentation

Swoose

A Swoole http session library.

This library is experimental

Installation

composer require ahmard/swoose

Usage

use Swoole\Http\Request;
use Swoole\Http\Response;
use Swoole\Http\Server;
use Swoose\Config;
use Swoose\Manager;
use Symfony\Component\Cache\Adapter\FilesystemAdapter;

require 'vendor/autoload.php';

$server = new Server("127.0.0.1", 9501);

$cache = new FilesystemAdapter(directory: __DIR__ . '/.temp');
$sessionConfig = Config::create()
    ->setAdapter($cache);


$requestHandler = function (Request $request, Response $response) use ($sessionConfig) {
    $session = Manager::create($sessionConfig, $request, $response)->start();

    $session->put('visit', ($session->get('visit') ?? 0) + 1 );
    
    if (!$session->has('name')) {
        $session->put('name', 'Ahmard');
        var_dump('Guest');
    } else {
        var_dump('User');
    }

    $response->header("Content-Type", "text/plain");
    $response->end("Hello {$session->get('name')} @ {$session->get('visit')}\n");
};

$server->on("request", $requestHandler);
$server->on('start', function () {
    echo "Swoole http server is started at http://127.0.0.1:9501\n";
});

$server->start();

  Files folder image Files  
File Role Description
Files folder imagesrc (4 files, 1 directory)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file composer.lock Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
Files folder imageExceptions (1 file)
  Plain text file Config.php Class Class source
  Plain text file Handler.php Class Class source
  Plain text file Manager.php Class Class source
  Plain text file Session.php Class Class source

  Files folder image Files  /  src  /  Exceptions  
File Role Description
  Plain text file AuthenticationFailedException.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:33
This week:0
All time:10,985
This week:660Up