(Deprecated) Slack: Upload File (Bots)

info This item has been deprecated

Use the new one instead.

(Deprecated) Slack: Upload File (Bots)

(廃止予定) Slack: ファイルアップロード (Bots)

This item uploads files to Slack with Bots.

Auto Step icon
Basic Configs
Step Name
Note
Configs for this Auto Step
conf_OAuth2
C1: OAuth2 Setting *
ChannelName
C2: Slack Channel Name *
File
C3: Data item whose attached files will be uploaded (File) *

Notes

  • If you specify more than one channel to upload to, the channel names must be separated by commas

Capture

See also

Script (click to open)
  • An XML file that contains the code below is available to download
    • slack-file-upload-bots.xml (C) Questetra, Inc. (MIT License)
    • If you are using Professional, you can modify the contents of this file and use it as your own add-on auto step

function main() {
  const oauth2 = configs.getObject("conf_OAuth2");
  const channel = configs.get("ChannelName");
  const filesDef = configs.getObject("File");
//check whether files exist or not


  const files = engine.findData( filesDef );
  if (files === null){
    engine.log ("No File to upload");
    return;
  }
  //check whether number of files is under the limit
  const numOfFiles = files.length;
  if (numOfFiles > httpClient.getRequestingLimit()){
    throw "Number of Files is over the limit.";
  }
  for (let i = 0; i < numOfFiles; i++){
    upload(oauth2,files[i],channel);
  }
}
/**
  * Upload File
  * @param {AuthSettingWrapper} oauth2  OAuth2 認証設定
  * @param {String} token 
  * @param {QfileView} file
  * @param {String} channel
  */  
function upload (oauth2,file,channel){ 

  const url = 'https://slack.com/api/files.upload';
  const response = httpClient.begin()
    .authSetting(oauth2)
    .multipart('file',file)
    .multipart('channels',channel)
    .post(url);
  const status = response.getStatusCode();
  const responseTxt = response.getResponseAsString();

  let responseJson;
  try {
    responseJson = JSON.parse(responseTxt);
  } catch(e) {
    engine.log("failed to parse as json");
    engine.log(`status: ${status}`);
    engine.log(responseTxt);
    throw `Failed to upload. status: ${status}`;
  }
  if (responseJson.ok !== true) {
    const filename = file.getName();
    const error = `Failed to upload\n filename: ${filename} error: ${responseJson.error}`;
    engine.log(`status: ${status}`);
    engine.log(responseTxt);
    throw error;
  }

}
Scroll to Top

Discover more from Questetra Support

Subscribe now to keep reading and get access to the full archive.

Continue reading