Skip to content

Instantly share code, notes, and snippets.

@prashantdawar
Last active January 11, 2019 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prashantdawar/a27c06597b3729f9882ed1d999eed78b to your computer and use it in GitHub Desktop.
Save prashantdawar/a27c06597b3729f9882ed1d999eed78b to your computer and use it in GitHub Desktop.
upload mysql dump to google drive
<?php
require __DIR__ . '/vendor/autoload.php';
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Drive API PHP Quickstart');
$client->setScopes(Google_Service_Drive::DRIVE_METADATA_READONLY);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setPrompt('select_account consent');
// Load previously authorized token from a file, if it exists.
$tokenPath = 'token.json';
if (file_exists($tokenPath)) {
$accessToken = json_decode(file_get_contents($tokenPath), true);
$client->setAccessToken($accessToken);
}
// If there is no previous token or it's expired.
if ($client->isAccessTokenExpired()) {
// Refresh the token if possible, else fetch a new one.
if ($client->getRefreshToken()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
$client->setAccessToken($accessToken);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken)) {
throw new Exception(join(', ', $accessToken));
}
}
// Save the token to a file.
if (!file_exists(dirname($tokenPath))) {
mkdir(dirname($tokenPath), 0700, true);
}
file_put_contents($tokenPath, json_encode($client->getAccessToken()));
}
return $client;
}
exec('mysqldump -u root -pq123 --all-databases > all_db_backup.sql');
// Get the API client and construct the service object.
$client = getClient();
$driveService = new Google_Service_Drive($client);
// folder id of already created folder
$folderId = '10KFQ93xE-8mW4_fzCqD7MksNHPazw9EZ';
$prefix = time();
$fileMetadata = new Google_Service_Drive_DriveFile(array(
'name' => $prefix.'_'.'all_db_backup.sql',
'parents' => array($folderId)
));
$content = file_get_contents('all_db_backup.sql');
$file = $driveService->files->create($fileMetadata, array(
'data' => $content,
'mimeType' => mime_content_type('all_db_backup.sql'),
'uploadType' => 'multipart',
'fields' => 'id'));
printf("File ID: %s\n", $file->id);
exec('rm all_db_backup.sql');
@prashantdawar
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment