bitcko / yii2-bitcko-google-calendar-api
Bitcko Yii2 Google Calendar Api Extension use to create and delete events from google calendar
Installs: 9 596
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 5
Open Issues: 3
Type:yii2-extension
Requires
- google/apiclient: ^2.0
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2024-11-16 18:48:45 UTC
README
Yii2 Bitcko Google Calendar Api Extension use to create and delete events from google calendar
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require bitcko/yii2-bitcko-google-calendar-api:dev-master
or add
"bitcko/bitcko/yii2-bitcko-google-calendar-api": "dev-master"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
- Download client_secret.json file from Google Developer Console.
- Move the client_secret.json to app/config dir.
- Controller example
<?php namespace app\controllers; use yii\helpers\Url; use yii\web\Controller; use bitcko\googlecalendar\GoogleCalendarApi; /** * GoogleApi controller. * * @package app\controllers * @author Mhmd Backer shehadi (bitcko) <www.bitcko.com> */ class GoogleApiController extends Controller { public function actionAuth(){ $redirectUrl = Url::to(['/google-api/auth'],true); $calendarId = 'primary'; $username="any_name"; $googleApi = new GoogleCalendarApi($username,$calendarId,$redirectUrl); if(!$googleApi->checkIfCredentialFileExists()){ $googleApi->generateGoogleApiAccessToken(); } \Yii::$app->response->data = "Google api authorization done"; } public function actionCreateEvent(){ $calendarId = 'primary'; $username="any_name"; $googleApi = new GoogleCalendarApi($username,$calendarId); if($googleApi->checkIfCredentialFileExists()){ $event = array( 'summary' => 'Google I/O 2018', 'location' => '800 Howard St., San Francisco, CA 94103', 'description' => 'A chance to hear more about Google\'s developer products.', 'start' => array( 'dateTime' => '2018-06-14T09:00:00-07:00', 'timeZone' => 'America/Los_Angeles', ), 'end' => array( 'dateTime' => '2018-06-14T17:00:00-07:00', 'timeZone' => 'America/Los_Angeles', ), 'recurrence' => array( 'RRULE:FREQ=DAILY;COUNT=2' ), 'attendees' => array( array('email' => 'lpage@example.com'), array('email' => 'sbrin@example.com'), ), 'reminders' => array( 'useDefault' => FALSE, 'overrides' => array( array('method' => 'email', 'minutes' => 24 * 60), array('method' => 'popup', 'minutes' => 10), ), ), ); $calEvent = $googleApi->createGoogleCalendarEvent($event); \Yii::$app->response->data = "New event added with id: ".$calEvent->getId(); }else{ return $this->redirect(['auth']); } } public function actionDeleteEvent(){ $calendarId = 'primary'; $username="any_name"; $googleApi = new GoogleCalendarApi($username,$calendarId); if($googleApi->checkIfCredentialFileExists()){ $eventId ='event_id' ; $googleApi->deleteGoogleCalendarEvent($eventId); \Yii::$app->response->data = "Event deleted"; }else{ return $this->redirect(['auth']); } } public function actionCalendarsList(){ $calendarId = 'primary'; $username="any_name"; $googleApi = new GoogleCalendarApi($username,$calendarId); if($googleApi->checkIfCredentialFileExists()){ $calendars = $googleApi->calendarList(); \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON; \Yii::$app->response->data = $calendars; }else{ return $this->redirect(['auth']); } } }