sudiptochoudhury / php-time-doctor
PHP Client Library to consume Time Doctor API
Requires
- php: ^7.1
- sudiptochoudhury/php-api-client-forge: dev-master
Requires (Dev)
- mockery/mockery: ^1.1.0
- phpunit/phpunit: ^7.2.0
- psr/log: ^1.0@dev
- sudiptochoudhury/php-cli: dev-master
This package is auto-updated.
Last update: 2024-11-20 00:51:43 UTC
README
PHP API Client for Time Doctor
Read all about Time Doctor API from timedoctor.com
use SudiptoChoudhury\TimeDoctor\Api; $td = new Api([ 'access_token' => '<<access_token>>' ]); $result = $td->getCompanies(); $result = $td->getWorklogs([ 'company_id' => '2348758', "start_date" => '2020-08-16', 'end_date' => '2020-08-31' ]);
Installation
Requirements
- Any flavour of PHP 7.1+ should do
Install With Composer
You can install the library via Composer by adding the following line to the require block of your composer.json file (replace dev-master with the latest stable version):
"sudiptochoudhury/php-time-doctor": "dev-master"
or run the following command:
composer require sudiptochoudhury/php-time-doctor
Setting up
Authenticate
Below are two OAuth2.0 strategies you can choose when implementing this.
Before this, you need to register your Time Doctor Application as described here, setup
redirect_url
and get theclient_id
,client_secret
from the application.
For Web Server based/Desktop/Native applications
Authorization Code Grant flow: This flow is useful if you have your own server for your app (most common for traditional web apps, as well as native desktop and mobile apps).
Step 1 - Get Code
use SudiptoChoudhury\TimeDoctor\OAuth; $tdOAuth = new OAuth(); $tdOAuth->getAuthCode([ 'client_id' => '', // pass your client_id here 'redirect_uri' => '' // set your redirect_url here ]);
This will open authentication portal of your Time Doctor Application and on successful authentication redirect to the
given redirect_url
(an url of your main application) (provided that this url is registered in your Time Doctor Application) with a code
in it's querystring.
Your site's code should collect and store this code for the next step.
Step 2 - Generate access_token
use SudiptoChoudhury\TimeDoctor\OAuth; $tdOAuth = new OAuth(); $tdOAuth->getToken([ 'client_id' => '', // pass your client_id here 'client_secret' => '', // pass your client_secret here 'redirect_uri' => '', // pass your redirect_url here 'code' => '' // set here the code you received in Step 1 stated above ]);
You will receive a set of values similar to the one give below:
{
"access_token": "342019_MGQ1MjNiNDEzNzJmMGEzNDgyYWY3M2QA2YTZimjY3ZTFFYzBhNTAxMjEyMjM0MmMwMTFiOWJjOZzZ2NiZDMzMQ",
"expires_in": 432000,
"token_type": "bearer",
"scope": null,
"refresh_token": "342019_MjQyN2U4ZQAxMzA4ZjRlQTExNGMzQDMzZmQlZjM0QTQwMQU1OTdQNjI0OQNlZDlmNmJiOXZkNWRjOTc3N2YjNg"
}
Store the access_token
and refresh_token
for future use.
access_token
will be required in all Time Doctor API calls, while
refresh_token
will be needed to re-generate access token on expiration.
access_token
has a limited life span as shown by expires_in
(in seconds) property of the received data. The expires_in
shown in the example data above calculated to 5 days.
The step below shows how to re-generate access_token
on expiration.
Retrieve access_token on expiration using Refresh Token
use SudiptoChoudhury\TimeDoctor\OAuth; $tdOAuth = new OAuth(); $tdOAuth->refreshToken([ 'client_id' => '', // pass your client_id here 'client_secret' => '', // set your client_secret here 'refresh_token' => '' // set your refresh_token here ]);
For Web Server-less applications
Implicit Grant flow: Useful when you don't have your own server for your app (suitable for in-browser web apps, such as single-site apps written in JavaScript that cannot make arbitrary GET requests to our public API).
use SudiptoChoudhury\TimeDoctor\OAuth; $tdOAuth = new OAuth(); $tdOAuth->getAuthToken([ 'client_id' => '', // pass your client_id here 'redirect_uri' => '' // pass your redirect_url here ]);
Use
All you need to do is to pass TimeDoctor access_token
to the constructor.
use SudiptoChoudhury\TimeDoctor\Api; new Api([ 'access_token' => '<<access_token>>', ]);
Additionally, you can set a logger via log
property.
- You can set log to
false
to disable logging. - You can also pass an array with
file
andpath
properties.
use SudiptoChoudhury\TimeDoctor\Api; new Api([ 'access_token' => '<<access_token>>', 'log' => ['file' => 'TimeDoctor.log', 'path' => '/your/log/path'] ]);
- You can also pass a
Monolog\Logger
instance.
use SudiptoChoudhury\TimeDoctor\Api; new Api([ 'access_token' => '<<access_token>>', 'log' => ['logger' => $monologInstance] ]);
You can use client
property to forward to GuzzleHttp\Client
constructor.
use SudiptoChoudhury\TimeDoctor\Api; new Api([ 'access_token' => '<<access_token>>', 'client' => ['timeout' => 5] ]);
If you wish to tap into request and response handler stacks use settings
instead of using client
's handlers
property.
'settings' => [ 'responseHandler' => function (ResponseInterface $response) { // do something return $response; }, 'requestHandler' => function (RequestInterface $request) { // some action return $request; }, ],
How to use
Next, call the desired method from the table given below. In most methods you may need to pass parameters. The parameters are to be passed as an associative array.
Examples:
use SudiptoChoudhury\TimeDoctor\Api; $td = new Api([ 'access_token' => '<<access_token>>' ]); $result = $td->getCompanies(); $result = $td->getWorklogs([ 'company_id' => '2348758', "start_date" => '2020-08-16', 'end_date' => '2020-08-31' ]);