1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

QiitaOrganizationのLGTM数をGASでSlackに通知する

Last updated at Posted at 2020-10-22

この記事は移行しました!最新の内容はこちらをご覧ください😀

やったこと

QiitaOrganizationのページからLGTM数を取得して

image.png

こんな感じで毎週Slackに通知。

image.png

なぜやったのか

  • 社内でQiitaを盛り上げたい、関心UP
  • 投稿へのモチベーションUP
  • いっぱい投稿が増えるといいな

実装メモ

コード(GAS)

スプレッドシートからツール→スクリプトエディタを開く。
下記をコピペしてurlとwebhook_urlを書き換えればOK。

function notifyContributions() {
  const url = 'QiitaOrganizationのURL'; // 例: https://qiita.com/organizations/sousei-tech
  const webhook_url = "Incoming WebhookのURL"; // 例)https://hooks.slack.com/services/HOGE/FUGA/HOGA

  const response = UrlFetchApp.fetch(url);
  const html = response.getContentText();
  
  let contributions;
  // NOTE: HTML構成変わると動かなくなる。そのときはwebページをソース表示して該当箇所のHTMLを見つけて修正する。
  // NOTE: 2020/3/10時点 "likesCount":1096,
  const targetLeft = '"likesCount":';
  const targetRight = ',';
  let index = html.indexOf(targetLeft)
  // Logger.log(index);
  if (index !== -1) {
    let tmp = html.substring(index + targetLeft.length);
    index = tmp.indexOf(targetRight);
    if (index !== -1) {
      contributions = tmp.substring(0, index);
    }
  }
  
  const book = SpreadsheetApp.getActiveSpreadsheet();
  const sheet = book.getSheetByName("シート1");

  const last_row = sheet.getDataRange().getLastRow();
  const before_contributions = sheet.getRange(last_row, 2).getValue();
  const target_row = last_row + 1;
  sheet.getRange(target_row, 1).setValue(new Date());
  sheet.getRange(target_row, 2).setValue(contributions);
  // Logger.log(before_contributions);
  
  const message = contributions + ' LGTM :tada: (前回から+' + (contributions - before_contributions) + ')' + "\n" + url;
  
// エラーで動かなくなったときはここでリターンして調査するとよい。(Slackへの通知をやめる)
//  Logger.log(contributions);
//  return;

  const jsonData = {
    "text" : message,
    "link_names" : 1,
  };
  const payload = JSON.stringify(jsonData);  
  const options = {
    "method" : "post",
    "contentType" : "application/json",
    "payload" : payload,
  };
  UrlFetchApp.fetch(webhook_url, options);

おまけ

社員の投稿を通知したい場合はslackでfeedを購読しておけばOK!(これもGASで実装しようかと思っていた😅)
/feed subscribe https://qiita.com/organizations/sousei-tech/activities.atom

さいごに

それではステキなQiitaOrganizationライフを。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?