npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sudame/chatwork-gas

v0.1.0

Published

Google Apps Script用のChatworkクライアント

Downloads

1

Readme

ChatworkGAS

Google Apps Script のための Chatwork クライアント

注意

このライブラリはChatwork社公式のものではありません

このライブラリは @sudame が独自に作成したものであり、ライブラリに関する権利・責務は @sudame 個人に帰します。また、このライブラリを作るにあたり、ソースコードを含め、Chatwork社のいかなる内部情報も利用していません。

使い方

Google Apps Script へのライブラリの追加

次のスクリプト ID を Google Apps Script のエディタ上で追加してください。

1KDjPcT6QSGO-urrEPV9BtQyaxAke27Cv_lA3-EhusZTIeGZ3qi0GzOHL

Google Apps Scriptのエディタ上の左側に、「コード」や「サービス」と並んで「ライブラリ」のボタンがあります。

コード例

// ログイン
const chatwork = ChatworkGAS.login("あなたのAPIトークン");

// 例1.
// チャット一覧を取得する
const res1 = chatwork.rooms.get();
const rooms = res1.data;
// チャット一覧のデータを表示する
console.log(rooms);
// チャット一覧取得直後の、APIのレートリミットを表示する
console.log(res1.rateLimit);
// チャット一覧取得時のHTTPステータスを表示する
console.log(res1.statusCode);

// 例2.
// (あるチャット内の)チャットのメッセージ一覧を取得する
const res2 = chatwork.rooms.roomId(1234).messages.get();
const messages = res2.data;
// メッセージ一覧を表示する
console.log(messages);

TypeScript / JavaScript

Google Apps Script は @google/clasp を用いることで、TypeScript を用いた開発ができます。

このライブラリを clasp を介して用いる場合、型情報を利用することができます。

インストール

npm i @sudame/chatwork-gas

利用

インポート時に as 句を用いて、 Google Apps Scirpt のエディタ上でライブラリを追加する際に自身で指定した名前空間配下にインポートされるようにしてください。

import * as ChatworkGAS from "@sudame/chatwork-gas";

const chatwork = ChatworkGAS.login("あなたのAPIトークン");
// ...

NG 例:

次のように login だけをインポートすることも TypeScript 上は可能ですが、 Google Apps Script 上では login 関数は ChatworkGAS (または自身が指定した名前) 名前空間の配下に配置されるため、実行できません。

import { login } from "@sudame/chatwork-gas";

const chatwork = login("あなたのAPIトークン");

注意

npm モジュールとしてインストールされるのは型情報のみです。 @sudame/chatwork-gas は名前の通り Google Apps Script に強く依存していますので、ローカルマシン上で実行することはできません。

API

ライブラリは https://developer.chatwork.com/reference/ に準拠するように設計されています。

例えば「チャットのメッセージを未読にする」エンドポイントである

PUT /rooms/{room_id}/messages/unread

を実行したい場合、次のようなプログラムで実行できます。

// ログイン
const chatwork = login("あなたのAPIトークン");

// 実行
const params = { message_id: 101 };
chatwork.rooms.roomId(1234).messages.unread.put(params);

実装状況

  • [x] GET /me
  • [x] GET /my/status
  • [x] GET /my/tasks
  • [ ] GET /contacts
  • [x] GET /rooms
  • [ ] POST /rooms
  • [x] GET /rooms/{room_id}
  • [ ] PUT /rooms/{room_id}
  • [ ] DELETE /rooms/{room_id}
  • [x] GET /rooms/{room_id}/members
  • [x] PUT /rooms/{room_id}/members
  • [x] GET /rooms/{room_id}/messages
  • [x] POST /rooms/{room_id}/messages
  • [ ] PUT /rooms/{room_id}/messages/read
  • [ ] PUT /rooms/{room_id}/messages/unread
  • [ ] GET /rooms/{room_id}/messages/{message_id}
  • [ ] PUT /rooms/{room_id}/messages/{message_id}
  • [ ] DELETE /rooms/{room_id}/messages/{message_id}
  • [x] GET /rooms/{room_id}/tasks
  • [ ] POST /rooms/{room_id}/tasks
  • [ ] GET /rooms/{room_id}/tasks/{task_id}
  • [ ] PUT /rooms/{room_id}/tasks/{task_id}/status
  • [ ] GET /rooms/{room_id}/files
  • [ ] POST /rooms/{room_id}/files
  • [ ] GET /rooms/{room_id}/files/{file_id}
  • [ ] GET /rooms/{room_id}/link
  • [ ] PUT /rooms/{room_id}/link
  • [ ] POST /rooms/{room_id}/link
  • [ ] DELETE /rooms/{room_id}/link
  • [ ] GET /incoming_requests
  • [ ] PUT /incoming_requests/{request_id}
  • [ ] DELETE /incoming_requests/{request_id}