- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/session.php'; // 세션 파일 포함
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/vendor/autoload.php';
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . '/lib/mydb.php');
|
|
|
|
// 서비스 계정 JSON 파일 경로
|
|
$serviceAccountKeyFile = $_SERVER['DOCUMENT_ROOT'] . '/tokens/mytoken.json';
|
|
|
|
// Google Drive 클라이언트 설정
|
|
$client = new Google_Client();
|
|
$client->setAuthConfig($serviceAccountKeyFile);
|
|
$client->addScope(Google_Service_Drive::DRIVE);
|
|
|
|
// Google Drive 서비스 초기화
|
|
$service = new Google_Service_Drive($client);
|
|
|
|
// 특정 폴더 확인 함수
|
|
function getFolderId($service, $folderName, $parentFolderId = null) {
|
|
$query = "name='$folderName' and mimeType='application/vnd.google-apps.folder' and trashed=false";
|
|
if ($parentFolderId) {
|
|
$query .= " and '$parentFolderId' in parents";
|
|
}
|
|
|
|
$response = $service->files->listFiles([
|
|
'q' => $query,
|
|
'spaces' => 'drive',
|
|
'fields' => 'files(id, name)'
|
|
]);
|
|
|
|
return count($response->files) > 0 ? $response->files[0]->id : null;
|
|
}
|
|
?>
|