Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ega4432/weekly-office-cleaning-notification-bot
A bot that sends a message to slack using Google Apps Script
https://github.com/ega4432/weekly-office-cleaning-notification-bot
clasp gas google-apps-script google-calendar-api google-spreadsheet-api slack
Last synced: 25 days ago
JSON representation
A bot that sends a message to slack using Google Apps Script
- Host: GitHub
- URL: https://github.com/ega4432/weekly-office-cleaning-notification-bot
- Owner: ega4432
- Created: 2020-02-29T14:54:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-19T05:40:03.000Z (over 2 years ago)
- Last Synced: 2024-04-22T05:08:15.621Z (7 months ago)
- Topics: clasp, gas, google-apps-script, google-calendar-api, google-spreadsheet-api, slack
- Language: JavaScript
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# weekly-office-cleaning-notification-bot
| [日本語](https://github.com/yossiee/weekly-office-cleaning-notification-bot/blob/master/README.md) | [英語](https://github.com/yossiee/weekly-office-cleaning-notification-bot/blob/master/README_EN.md) |
| :---: | :---: |## 概要
毎週月曜日にオフィスを掃除しますが、掃除当番グループが決まっており、グループは毎週順番に回していきます。
今回作ったのは、今週どのグループが担当なのかを毎週時間になると slack に通知するボットを作成しました。## 依存ソフトウェア
- Google Account
- Git
- Node/npm## アーキテクチャ
- Google サービス
- Google Apps Script
- Google スプレッドシート
- Google カレンダー
- Slack APIs
- [chat.postMessage](https://api.slack.com/methods/chat.postMessage)
- ローカル開発環境
- [GitHub](https://github.com)
- [clasp](https://github.com/google/clasp)## 仕様
1. Google スプレッドシートにマスタデータが格納してあります。
2. データを取得して今週アサインされるグループに所属するユーザの slackID を取得します。
3. Google calendar API 本日が祝日かどうか調べます。Google が「日本の祝日」を公開しているのでそれを利用しています。
4. 本日が月曜日かつ祝日でない場合は、取得したユーザに対してメンションをつけたメッセージをチャンネルへ送信します。
5. 最後に、スプレッドシートにデータを保存して処理を終了します。## `clasp` の使い方メモ
clasp とは、ローカル環境で Google Apps Script を実行できるプラットフォームです。
[公式ドキュメント](https://developers.google.com/apps-script/guides/clasp) はこちらをご参照下さい。```sh
# npm パッケージをグローバルインストールします。
$ npm install @google/clasp -g# ログイン
$ clasp login
# ブラウザが開きどの Google アカウントで認証するか聞かれるので利用するアカウントを選択します。
# 認証に成功したら `~/.clasprc.json` にログイン情報が保存されます。# ログアウト
$ clasp logout# プロジェクトを作成
$ clasp create --rootDir ./src
Create new script https://script.google.com/d/xxxxxxxxxxxxxxxxxxxx
Cloned 1 file.
└─ appsscript.json# 作成したプロジェクトのエディタをブラウザで開きます。
$ clasp open
```