Download the PHP package mihai3332001/oauth2-anaf without Composer

On this page you can find all versions of the php package mihai3332001/oauth2-anaf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package oauth2-anaf

oauth2-anaf

About Anaf E-Factura Symfony Plugin

Basic setup:

 // Use:
 $provider = new \League\OAuth2\Client\Provider\GenericProvider([
    'clientId'                => 'XXXXXX',    // The client ID assigned to you by the provider
    'clientSecret'            => 'XXXXXX',    // The client password assigned to you by the provider
    'redirectUri'             => 'https://my.example.com/your-redirect-url/',
    'urlAuthorize'            => 'https://logincert.anaf.ro/anaf-oauth2/v1/authorize',
    'urlAccessToken'          => 'https://logincert.anaf.ro/anaf-oauth2/v1/token',
     'urlResourceOwnerDetails' => 'https://logincert.anaf.ro/anaf-oauth2/v1/revoke'
]);

 // If we don't have an authorization code then get one
if (!isset($_GET['code'])) {

// Fetch the authorization URL from the provider; this returns the
// urlAuthorize option and generates and applies any necessary parameters
// (e.g. state).
$authorizationUrl = $provider->getAuthorizationUrl();

// Get the state generated for you and store it to the session.
$_SESSION['oauth2state'] = $provider->getState();

// Optional, only required when PKCE is enabled.
// Get the PKCE code generated for you and store it to the session.
$_SESSION['oauth2pkceCode'] = $provider->getPkceCode();

// Redirect the user to the authorization URL.
header('Location: ' . $authorizationUrl);
exit;

// Check given state against previously stored one to mitigate CSRF attack
} elseif (empty($_GET['state']) || empty($_SESSION['oauth2state']) || $_GET['state'] !== $_SESSION['oauth2state']) {

if (isset($_SESSION['oauth2state'])) {
    unset($_SESSION['oauth2state']);
}

exit('Invalid state');

} else {

try {

    // Optional, only required when PKCE is enabled.
    // Restore the PKCE code stored in the session.
    $provider->setPkceCode($_SESSION['oauth2pkceCode']);

    // Try to get an access token using the authorization code grant.
    $accessToken = $provider->getAccessToken('authorization_code', [
        'code' => $_GET['code']
    ]);
    $refreshToken = $accessToken->getToken();
    // We have an access token, which we may use in authenticated
    // requests against the service provider's API.
    echo 'Access Token: ' . $accessToken->getToken() . "<br>";
    echo 'Refresh Token: ' . $accessToken->getRefreshToken() . "<br>";
    echo 'Expired in: ' . $accessToken->getExpires() . "<br>";
    echo 'Already expired? ' . ($accessToken->hasExpired() ? 'expired' : 'not expired') . "<br>";

    // Using the access token, we may look up details about the
    // resource owner.
    $resourceOwner = $provider->getResourceOwner($accessToken);

    var_export($resourceOwner->toArray());

    // The provider provides a way to get an authenticated API request for
    // the service, using the access token; it returns an object conforming
    // to Psr\Http\Message\RequestInterface.
    $request = $provider->getAuthenticatedRequest(
        'GET',
        'https://service.example.com/resource',
        $accessToken
    );

} catch (\League\OAuth2\Client\Provider\Exception\IdentityProviderException $e) {

    // Failed to get the access token or user details.
    exit($e->getMessage());

}

}

Upload XML E-factura - POST method

     $provider =  new Anaf([
                'clientId'                => 'XXXXXX',    // The client ID assigned to you by the provider
                'clientSecret'            => 'XXXXXX',    // The client password assigned to you by the provider
                'redirectUri'             => 'https://my.example.com/your-redirect-url/',
                'urlAuthorize'            => 'https://logincert.anaf.ro/anaf-oauth2/v1/authorize',
                'urlAccessToken'          => 'https://logincert.anaf.ro/anaf-oauth2/v1/token',
                'urlResourceOwnerDetails' => 'https://logincert.anaf.ro/anaf-oauth2/v1/revoke'
            ]);

        //document that you want to send to ANAF;
        $options['body'] = $document;
        //cif code of your company
        // $getAnafRefreshToken your anaf token
        $requestAnafPOST = $provider->getAuthenticatedRequest(
                    'POST',
                    'https://api.anaf.ro/test/FCTEL/rest/upload?standard=UBL&cif=XXX',
                    $getAnafRefreshToken(),
                    $options
                );
        //your parse response, you can also use getResponse for status code
        $response = $provider->getParsedResponse($requestAnafPOST);

        $crawler = new Crawler($response);
        $indexIncarcare = $crawler->filterXPath('header')->attr('index_incarcare');

Stare Mesaj E-factura - GET method

       $provider =  new Anaf([
                'clientId'                => 'XXXXXX',    // The client ID assigned to you by the provider
                'clientSecret'            => 'XXXXXX',    // The client password assigned to you by the provider
                'redirectUri'             => 'https://my.example.com/your-redirect-url/',
                'urlAuthorize'            => 'https://logincert.anaf.ro/anaf-oauth2/v1/authorize',
                'urlAccessToken'          => 'https://logincert.anaf.ro/anaf-oauth2/v1/token',
                'urlResourceOwnerDetails' => 'https://logincert.anaf.ro/anaf-oauth2/v1/revoke'
            ]);

            $idincarcareSPV = 'XXXXXX';

            $requestAnafGET = $provider->getAuthenticatedRequest(
                'GET',
                'https://api.anaf.ro/test/FCTEL/rest/stareMesaj?id_incarcare=' . $idIncarcareSPV,
                $getAnafRefreshToken(),
            );

            $responseGET = $provider->getParsedResponse($requestAnafGET);
            $crawler2 = new Crawler($responseGET);
            $stareIncarcare = $crawler2->filterXPath('header')->attr('stare');
            $idDescarcare = $crawler2->filterXPath('header')->attr('id_descarcare');

Descarcare Raspuns E-factura - GET method

          $requestAnafDescarcare = $provider->getAuthenticatedRequest(
                'GET',
                'https://api.anaf.ro/test/FCTEL/rest/descarcare?id=' .$idDescarcare,
                $getAnafRefreshToken(),
           );
           $requestAnafDescarcareDOC = $provider->getParsedResponse($requestAnafDescarcare);

All versions of oauth2-anaf with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mihai3332001/oauth2-anaf contains the following files

Loading the files please wait ....