ottimis / phplibs
Php Library
Installs: 4 830
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.4
- ext-curl: *
- ext-gd: *
- ext-mysqli: *
- ext-pdo: *
- aws/aws-sdk-php: ^3.330.2
- egulias/email-validator: ^4.0.2
- firebase/php-jwt: v6.10.2
- graylog2/gelf-php: ^2.0
- slim/psr7: ^1.7.0
- slim/slim: 4.14.0
- smarty/smarty: >=v5.4.3
- zircote/swagger-php: ^4.11.1
Suggests
- graylog2/gelf-php: ~2.0.1
- phpmailer/phpmailer: ^v6.9.3
- dev-master
- 4.5.0
- 4.4.3
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.1
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.0
- 4.0.0
- 3.10.3
- 3.10.2
- 3.10.1
- 3.10.0
- 3.9.2
- 3.9.1
- 3.8.2
- 3.8.1
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.2
- 3.5.0
- 3.4.0
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.14.1
- 2.14.0
- 2.13.3
- 2.13.2
- 2.12.1
- 2.11.7
- 2.11.6
- 2.11.5
- 2.11.4
- 2.11.3
- 2.11.2
- 2.11.1
- 2.11.0
- 2.10.0
- 2.9.1
- 2.9.0
- 2.8.0
- 2.7.3
- 2.7.2
- 2.7.1
- 2.7.0
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.5.1
- 2.5.0
- 2.4.1
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.23.2
- 1.23.1
- 1.23.0
- 1.22.7
- 1.22.6
- 1.22.5
- 1.22.4
- 1.22.3
- 1.22.2
- 1.22.1
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.2
- 1.19.1
- 1.19.0
- 1.18.0
- 1.16.0
- 1.15.1
- 1.15.0
- 1.14.4
- 1.14.2
- 1.14.1
- 1.14.0
- 1.13.5
- 1.13.4
- 1.13.2
- 1.13.1
- 1.11.2
- 1.11.1
- 1.11.0
- 1.10.0
- 1.9.1
- 1.9.0
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.35
- 1.7.34
- 1.7.33
- 1.7.32
- 1.7.31
- 1.7.30
- 1.7.29
- 1.7.28
- 1.7.27
- 1.7.26
- 1.7.25
- 1.7.24
- 1.7.23
- 1.7.22
- 1.7.21
- 1.7.20
- 1.7.19
- 1.7.18
- 1.7.17
- 1.7.16
- 1.7.15
- 1.7.14
- 1.7.13
- 1.7.12
- 1.7.11
- 1.7.10
- 1.7.9
- 1.7.8
- 1.7.7
- 1.7.6
- 1.7.5
- 1.7.4
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.9
- 1.5.8
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.3
- 1.5.2
- 1.5.0
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.0
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.0.8
- 1.0.3
- 1.0.0
- dev-return-errore-code-exeption
This package is auto-updated.
Last update: 2025-04-02 17:20:48 UTC
README
Descrizione...
OAuth2.0
Getting Started
Dopo aver importato tutto e predisposto un index.php con Slim Framework è sufficente inizializzare un nuovo oggetto OAuth2, aggiungere i GrantType necessari e chiamare la funzione api che genererà i vari endpoint.
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Routing\RouteCollectorProxy as RouteCollectorProxy;
use Slim\Exception\HttpNotFoundException as HttpNotFoundException;
use Slim\Factory\AppFactory;
use \ottimis\phplibs\OAuth2;
$app = AppFactory::create();
$oauth = new OAuth2();
$oauth->addGrantType($oauth::CLIENT_CREDENTIAL);
$oauth->api($app);
Endpoint
Tutti gli endpoint sono nel gruppo /oauth2
Un esempio di chiamata authorize è il seguente:
http://localhost/oauth2/authorize?response_type=code&client_id=testclient&state=xyz
Questa chiamata restituirà al return uri il code necessario per la richiesta del token che verrà effettuata con una post:
curl -u testclient:testpass http://localhost/oauth2/token -d 'grant_type=authorization_code&code=YOUR_CODE'
Una volta avuto il token potrà essere chiamato l'endpoint per la verifica del token e dello scope:
curl http://localhost/oauth2/verify -d 'access_token=YOUR_TOKEN'
Built With
- OAuth 2.0 Server PHP by bshaffer - OAuth 2 library
- Slim Framework 4 - Api libs
Logger
Getting Started
Creare le tabelle necessarie alla libreria con la seguente query SQL ed importare la libreria con composer
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for logs
-- ----------------------------
DROP TABLE IF EXISTS `logs`;
CREATE TABLE `logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(11) DEFAULT NULL,
`stacktrace` text,
`note` text,
`code` varchar(10) DEFAULT NULL,
`datetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5397 DEFAULT CHARSET=latin1;
SET FOREIGN_KEY_CHECKS = 1;
<--------------------log_types------------------------------>
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for log_types
-- ----------------------------
DROP TABLE IF EXISTS `log_types`;
CREATE TABLE `log_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`log_type` varchar(15) DEFAULT NULL,
`color` varchar(7) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of log_types
-- ----------------------------
BEGIN;
INSERT INTO `log_types` VALUES (1, 'Log', '#259d00');
INSERT INTO `log_types` VALUES (2, 'Warning', '#d8a00d');
INSERT INTO `log_types` VALUES (3, 'Error', '#d81304');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;
use \ottimis\phplibs\OAuth2;
Authors
- Ottimis Group