【GAS】Google Apps Script活用事例 Google Calendar APIを有効にして、ファイルを添付した予定を作成する方法
GASで出来ない事もあるなぁ……。
こちらを参考にしました!!
やりたかった事としては、作成済みのイベントに添付ファイルを追加したかったのですが出来ませんでした。その過程を記録に残しておきます。
添付ファイル付きで予定を新規作成する
function attatchmentFile(){
const calendarId = 'sample@gmail.com';
const eventParam = {
summary: 'Google Calendar APIによる登録', // カレンダーの予定名
description: 'テスト',
location: '〒105-0011 東京都港区芝公園四丁目2番8号',
start: {
'dateTime': (new Date('2023-11-12T10:00:00')).toISOString(),
'timeZone': 'Asia/Tokyo'
},
end: {
'dateTime': (new Date('2023-11-12T11:00:00')).toISOString(),
'timeZone': 'Asia/Tokyo'
},
attachments:[{
fileUrl: 'https://drive.google.com/file/d/**************/view',
title: 'サンプルファイル',
}]
};
Calendar.Events.insert(eventParam, calendarId, { supportsAttachments: true });
}
Bing Chatで聞いてみた回答 (Chat GPT 4)
予定を取得する方法
function getEvents() {
const calendarId = 'sample@gmail.com';
const optionals = {
timeMin: (new Date('2023/11/11 00:00')).toISOString(),
showDeleted: false,
singleEvents: true,
maxResults: 2, //予定を取得する件数
orderBy: 'startTime'
};
const events = Calendar.Events.list(calendarId, optionals);
console.log(events);
console.log(`メールアドレス:${events.items[0].creator.email}`);
}
これは、別にCalendar APIを使わなくても出来るんだよなぁー….。
iCalUID: '*******@google.com' が、event.getId()などお馴染みの書き方で取れるイベントIDと同じみたいです。
作成した予定に変更を加える方法
function updateEvent() {
const calendarId = 'sample@gmail.com';
const eventId = 'あなたのイベントID'; // 更新したいイベントのIDを指定します
// イベントを取得
const event = Calendar.Events.get(calendarId, eventId);
// 場所を変更する
event.location = "新しい住所";
// イベントを更新
Calendar.Events.patch(event, calendarId, eventId);
}
会議室が空いているかどうかを調べるスクリプト
こちらは別件で、Google Calendar APIを使用して会議室が空いているかどうかを調べるスクリプトを作成しました。カレンダーAPIを使わなくても出来ます……。カレンダーAPIを使わないと出来ないのは、添付ファイルの追加だけです。
function isBookedMeetingRoom() {
const calendarId = '****************@resource.calendar.google.com';
const startTime = new Date('2023/11/14 11:00:00');
const endTime = new Date('2023/11/14 12:00:00');
const optionalArgs = {
timeMin: (startTime).toISOString(),
timeMax: (endTime).toISOString(),
showDeleted: false,
singleEvents: true,
maxResults: 2,
orderBy: 'startTime'
};
const response = Calendar.Events.list(calendarId, optionalArgs);
const events = response.items;
const isBooked = (0 < events.length);
// 会議室が予約されていない場合は [] 配列のlengthが0で返ってくる
console.log(events);
isBooked ? console.warn(`${isBooked}: 会議室は予約されています`) : console.log(`${isBooked}: 会議室は空いています`);
return isBooked
}
自分の所属先の会社だと、30分ないし、1時間で会議が設定される事が多いので、maxResults: 2としておくと、その間に会議があれば、何らかのデータが返ってきます。
上記のスクリプトで空き状況を確認、false 、会議室が空いていなければ、予約するという事が出来そうです。
この記事が気に入ったらサポートをしてみませんか?