Skip to content

ramonaharrison/SlackBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Access Code 3.3 - Slack Bot Challenge 🤖


A [Slack bot](https://api.slack.com/bot-users) is a non-human "user" that interacts with the Slack messaging app. Bots might post messages to users or to channels, send reminders, look up information in response to a question or perform a calculation. In this project, we'll work in teams to build bots that can preform simple interactions with the AccessCode3-3 Slack.

slack bot example

Slack offers three different APIs that developers can use to interact with their service: the Web API, the Real Time Messaging API and the Events API . In this project, bots will only interact using the Web API. The Web API offers methods that can be used to list AccessCode3-3 channels, view message history on a given channel, and post and delete messages on the #bots channel.

Setup

The following setup steps only need to be completed once per team:

  1. Fork and clone this repo. Make sure both team members are added as contributors to the forked repo.

  2. Go to https://accesscode3-3.slack.com/apps/new/A0F7YS25R-bots. Make sure you are signed into the AccessCode3-3 Slack team. Choose a username for your bot and click the "Add bot integration" button.

  3. Make a note of your API token. The token must always be kept in a safe, secret place. We will be storing our API keys in the ../SlackBot/api_token.txt file, which has been added to our .gitignore file.

    Always be careful when sharing API tokens! Be careful to never publish

our bot user tokens in any public GitHub code repository.

  1. Complete your bot's profile. Add an avatar image/emoji, a first and last name and a description of what your bot does. When you are finished, click the "Save Integration" button.

  2. Both team members: join the #bots channel on Slack so you can see what your bot is up to.

Requirements

  1. Form a clear picture of the project requirements. Spend some time reading through:

    • This readme doc.
    • The Slack Web API docs and Basic message formatting guidelines.
    • The code that has been provided in the SlackBot project -- particulary the Slack.java class, which provides methods that your bot can use to interact with Slack's Web API.
    • Use the IntelliJ TODO panel (⌘6) to navigate to each of the project TODOs.
  2. For both of the following Slack API JSON objects, write a Java class to parse and represent it as a Java object. Each team member should be responsible for parsing at least one of the classes:

    Attachment.java and User.java files are already provided in the model subpackage -- just complete the TODOs as marked. See the Channel.java class for an example of how your completed classes should look.

  3. In Bot.java, design and implement your bot code! It's up to your team to decide what your bot does, but at a minimum, when your program runs it should post a message with some content to the #bots channel. See below for some ideas.

  4. (Optional / Bonus!) In Slack.java, implement the sendMessageWithAttachments(String messageText, List<Attachment> attachments), which should take in a String messageText and a List<Attachment> attachments to post to the #bots channel. It should return a SendMessageResponse. If your bot will send messages with attachments, you must implement this method. Read https://api.slack.com/docs/message-attachments to familiarize yourself with how attachment URL parameters should be formatted.

  5. Respect the bot etiquette guidelines:

    • Bots may only post messages to the #bots channel! No direct messages or posting to pre-existing channels like #general or #random.
    • No spamming or flooding the channel with messages: bots should post at most one or two messages at a time.
    • Keep it classroom friendly :)

Some bot ideas

  • Pig Latin Bot: looks at the text of the last message that was posted to the channel and re-posts it in pig latin (or rot13!).
  • Random Fact Bot: post a random fact or programming tip from a curated list.
  • Inspirational Image Bot: post a random image link from a selected list of favorite image URLs.
  • Mashup Bot: get and post interesting content from another API.
  • Can you implement a bot that uses message buttons?
  • Be creative! The sky is the limit 🌈

Take 15 minutes to discuss the following questions:

  • What will your bot do? What messages will it post? Be specific!
  • Draw out a rough blueprint for how you will achieve this programmatically -- it's ok if you don't know all the specifics yet, just sketch out some ideas for how your program might flow. Think about: If your bot is posting data (i.e. images, quotes, facts), where is the data coming from? How is your bot interacting with and responding to other messages / users on the channel? For example:

Cat Bot: The program will have an ArrayList of URLs of cat images that we find on the internet. When it starts, the program will check the last 100 messages on the #bots channel using the listMessages() method. If there is a message that contains the word "cat" in its text, the program with post a message with the text "CAT!!!" and a link to one of our cat image URLs.

  • How will your team divide tasks?
  • How will your team coordinate and collaborate throughout the week?
  • Submit a summary of your team's discussion using the Google Form link (check Slack!).

Resources

Submission

  1. For each feature that you work on, create a new branch in your forked SlackBot repo named XXMMDD_FeatureName, where XXMMDD are your initials and the month and day and FeatureName describes the feature you are working on. When you finish each feature, add, commit and push your changes. On GitHub, open a new Pull Request and assign it to your teammate to review and merge.

  2. This assignment is due by 9pm on Saturday 9/18. All code should be committed and pushed by the deadline. Each team member should complete the Google Form (check Slack!) to submit.

About

A Java skeleton for Access Code 3.3 SlackBot class project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages