2017 © Pedro Peláez
 

library adobe-connect-client

PHP Cliente for Adobe Connect API

image

brunogasparetto/adobe-connect-client

PHP Cliente for Adobe Connect API

  • Saturday, March 24, 2018
  • by brunogasparetto
  • Repository
  • 1 Watchers
  • 4 Stars
  • 39 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 17 Versions
  • 5 % Grown

The README.md

Build Status, (*1)

Currently I no longer have access to Adobe Connect, so I am unable to continue to maintain this project., (*2)

Client for Adobe Connect API v9.5.4

PHP library to comunicate with the Adobe Connect Web Service., (*3)

There are many actions implemented. Some of them are a sequence of actions, like the RecordingPasscode., (*4)

Installation

The package is available on Packagist. You can install it using Composer, (*5)

$ composer require brunogasparetto/adobe-connect-client

Usage

use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;

$connection = new Connection('https://hostname.adobeconnect.com');
$client =  new Client($connection);
$commonInfo = $client->commonInfo();

You can use filters and sorters in some actions., (*6)

use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;
use AdobeConnectClient\Entities\SCO;
use AdobeConnectClient\Filter;
use AdobeConnectClient\Sorter;

$connection = new Connection('https://hostname.adobeconnect.com');
$client =  new Client($connection);

$client->login('username', 'password');

$folderId = 123;

$filter = Filter::instance()
  ->dateAfter('dateBegin', new DateTimeImmutable())
  ->like('name', 'ClassRoom');

$sorter = Sorter::instance()
  ->asc('dateBegin');

$scos = $client->scoContents($folderId, $filter, $sorter);

The entities, filters and sorter use Fluent Interface., (*7)

The AdobeConnectClient\Connection\Curl\Connection class accept an array of options to configure the CURL., (*8)

use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;

// For tests with no SSL
$connection = new Connection(
  'https://hostname.adobeconnect.com',
  [
    CURLOPT_SSL_VERIFYHOST => 0,
    CURLOPT_SSL_VERIFYPEER => 0,
  ]
);
$client =  new Client($connection);
$commonInfo = $client->commonInfo();

IMPORTANT

All Client actions are throwable., (*9)

use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;
use AdobeConnectClient\Exceptions\NoAccessException;

$connection = new Connection('https://hostname.adobeconnect.com');
$client = new Client($connection);

// Throws NoAccessException if not logged in
$client->scoInfo(123);

The Versions

24/03 2018

dev-master

9999999-dev https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *
  • php ^5.6 || ^7.0

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

24/03 2018

3.0.1

3.0.1.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php ^5.6 || ^7.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

24/03 2018

3.0.0

3.0.0.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php ^5.6 || ^7.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

24/03 2018

dev-tests

dev-tests https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *
  • php ^5.6 || ^7.0

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

22/08 2017

2.0.4

2.0.4.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

20/08 2017

2.0.3

2.0.3.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

17/08 2017

2.0.2

2.0.2.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

17/08 2017

2.0.1

2.0.1.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

The Development Requires

by Bruno Gasparetto

api php client connect adobe

15/03 2017

dev-develop

dev-develop https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api php client connect adobe

14/09 2016

1.1.4

1.1.4.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

14/09 2016

dev-oldVersion

dev-oldVersion https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

12/09 2016

1.1.3

1.1.3.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

12/09 2016

1.0.5

1.0.5.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

22/08 2016

1.1.2

1.1.2.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

18/08 2016

1.1.1

1.1.1.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

10/08 2016

1.1.0

1.1.0.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe

03/08 2016

1.0.4

1.0.4.0 https://github.com/brunogasparetto/AdobeConnectClient

PHP Cliente for Adobe Connect API

  Sources   Download

MIT

The Requires

  • php >=5.6.0
  • lib-curl *
  • ext-curl *
  • ext-simplexml *
  • ext-mbstring *

 

by Bruno Gasparetto

api client connect adobe