アメリエフの技術ブログ

Amelieff Staff Blog

rcloneでGoogleドライブの"共有ドライブ"からLinuxサーバにファイルを移動する

こんにちはtsuyuhです。

10月も半ばを過ぎ、ようやく季節の変わり目が来ました。
年々"秋"が無くなってきていると思うのですが気のせいでしょうか?

さて、今回はrcloneを使ってサーバからGoogleドライブを参照する方法について書きます。
前にOneDriveに関する記事を書きましたが、今回はそれのGoogleドライブ版です。

基本的な手順はほぼ同じですが、Googleドライブの"共有ドライブ"へアクセスする際に少し戸惑ったので備忘録がてらご紹介いたします。

f:id:tsuyuh:20211015140642p:plain:w200
hito clone

作業環境

※ OneDriveの時とは違い、ローカルマシンへのrcloneのインストールは不要です!

rcloneのインストール (Linuxサーバ)

インストール方法はこちらの記事をご参照ください。↓
rcloneでOneDriveからLinuxサーバにファイルを移動する - アメリエフの技術ブログ

rcloneで接続先のGoogle Driveの情報を登録する (Linuxサーバ)

まず、rclone config で接続先の情報を登録 (リモート設定ファイルを作成) します。

$ rclone config

# 既に別の設定ファイルがある場合にはこの表示が出ます。
# 新しく設定を作りたいので"n"を入力してEnter。
Current remotes:

Name                 Type
====                 ====
fromonedrive             onedrive

e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> n

# 名前は適当に決めます。
name> gdrive

# ストレージの種類を問われるので、Google Driveを選択します。入力は "drive" でも "13" でもどちらでもOKです。
Type of storage to configure.
Enter a string value. Press Enter for the default ("").
Choose a number from below, or type in your own value
 1 / 1Fichier
   \ "fichier"
 2 / Alias for an existing remote
   \ "alias"
 3 / Amazon Drive
   \ "amazon cloud drive"
 4 / Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)
   \ "s3"
 5 / Backblaze B2
   \ "b2"
 6 / Box
   \ "box"
 7 / Cache a remote
   \ "cache"
 8 / Citrix Sharefile
   \ "sharefile"
 9 / Dropbox
   \ "dropbox"
10 / Encrypt/Decrypt a remote
   \ "crypt"
11 / FTP Connection
   \ "ftp"
12 / Google Cloud Storage (this is not Google Drive)
   \ "google cloud storage"
13 / Google Drive
   \ "drive"
14 / Google Photos
   \ "google photos"
15 / Hubic
   \ "hubic"
16 / In memory object storage system.
   \ "memory"
17 / JottaCloud
   \ "jottacloud"
18 / Koofr
   \ "koofr"
19 / Local Disk
   \ "local"
20 / Mail.ru Cloud
   \ "mailru"
21 / Mega
   \ "mega"
22 / Microsoft Azure Blob Storage
   \ "azureblob"
23 / Microsoft OneDrive
   \ "onedrive"
24 / OpenDrive
   \ "opendrive"
25 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
   \ "swift"
26 / Pcloud
   \ "pcloud"
27 / Put.io
   \ "putio"
28 / QingCloud Object Storage
   \ "qingstor"
29 / SSH/SFTP Connection
   \ "sftp"
30 / Sugarsync
   \ "sugarsync"
31 / Transparently chunk/split large files
   \ "chunker"
32 / Union merges the contents of several remotes
   \ "union"
33 / Webdav
   \ "webdav"
34 / Yandex Disk
   \ "yandex"
35 / http Connection
   \ "http"
36 / premiumize.me
   \ "premiumizeme"
Storage> drive
** See help for drive backend at: https://rclone.org/drive/ **

# 次は空欄のままEnterを押せばOKです。
Google Application Client Id
Setting your own is recommended.
See https://rclone.org/drive/#making-your-own-client-id for how to create your own.
If you leave this blank, it will use an internal key which is low performance.
Enter a string value. Press Enter for the default ("").
client_id>

# これも同様に空欄のままEnter。
OAuth Client Secret
Leave blank normally.
Enter a string value. Press Enter for the default ("").
client_secret>

# これも同様。このあたりからOneDriveの設定では出てこなかったメッセージがいっぱい出てきます。
Scope that rclone should use when requesting access from drive.
Enter a string value. Press Enter for the default ("").
Choose a number from below, or type in your own value
 1 / Full access all files, excluding Application Data Folder.
   \ "drive"
 2 / Read-only access to file metadata and file contents.
   \ "drive.readonly"
   / Access to files created by rclone only.
 3 | These are visible in the drive website.
   | File authorization is revoked when the user deauthorizes the app.
   \ "drive.file"
   / Allows read and write access to the Application Data folder.
 4 | This is not visible in the drive website.
   \ "drive.appfolder"
   / Allows read-only access to file metadata but
 5 | does not allow any access to read or download file content.
   \ "drive.metadata.readonly"
scope>

# これも同様に空欄のままEnter。
ID of the root folder
Leave blank normally.

Fill in to access "Computers" folders (see docs), or for rclone to use
a non root folder as its starting point.

Enter a string value. Press Enter for the default ("").
root_folder_id>

# これも同様に空欄のままEnter。
Service Account Credentials JSON file path
Leave blank normally.
Needed only if you want use SA instead of interactive login.

Leading `~` will be expanded in the file name as will environment variables such as `${RCLONE_CONFIG_DIR}`.

Enter a string value. Press Enter for the default ("").
service_account_file>

# これはデフォルト "n" でOKです。
Edit advanced config? (y/n)
y) Yes
n) No (default)
y/n> n

# Linuxサーバでは直接Webブラウザを開けないのでauto configはできません。"n" を入力します。
Remote config
Use auto config?
 * Say Y if not sure
 * Say N if you are working on a remote or headless machine
y) Yes (default)
n) No
y/n> n

# URLが表示されるので、ローカルマシンでブラウザを開いてそこにアクセスします。Tera TermではURLをダブルクリックすれば開けます。 
Please go to the following link: https://accounts.google.com/o/oauth2/auth?access_type=offline&client_id=202264815644.apps.googleusercontent.com&redirect_uri=(略)
Log in and authorize rclone for access
Enter verification code>

# ページが開いたら、自分のGoogleアカウントでログインします。
# ログインが完了すると、コードが表示されるのでそれをコピーします。
# コピーしたコードを先ほどのTera Termの画面にペーストします。

Enter verification code> 4/1AX4XfWgzS (略) GXet85geS_fKbK2o

# 共有ドライブを参照したい場合はYesを入力します
Configure this as a team drive?
y) Yes
n) No (default)
y/n>

# 共有ドライブの全てのフォルダを参照できるわけではなく、その中のひとつを選ぶ必要があるようです。
# 例えば "共有ドライブ2" を参照したい場合は "2" を入力します。
Fetching team drive list...
Choose a number from below, or type in your own value
 1 / 共有ドライブ1
   \ "0A (略) VA"
 2 / 共有ドライブ2
   \ "0A (略) VA"

Enter a Team Drive ID> 2

# 設定の詳細が表示されるので、OKなら "y" を入力します。
--------------------
[gdrive]
type = drive
scope = drive
token = {"access_token":"ya2 (略) 88668+09:00"}
team_drive = 0A (略) VA
root_folder_id =
--------------------
y) Yes this is OK (default)
e) Edit this remote
d) Delete this remote
y/e/d>

# 作成した設定が追加されました。
# 作成完了であれば "q" を入力します。
Current remotes:

Name                 Type
====                 ====
from onedrive    onedrive
gdrive                drive

e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> q

これで登録完了です。

Googleドライブにアクセスする (Linuxサーバ)

使えるrcloneのコマンドはOneDriveの場合と全く同じなので、詳細はこちらの記事をご覧ください。↓
rcloneでOneDriveからLinuxサーバにファイルを移動する - アメリエフの技術ブログ

まとめ

rcloneを使えば、サーバからGoogleドライブの共有ドライブに簡単にアクセスできます。