twitfeedbot.UpdateStatusServlet.java Source code

Java tutorial

Introduction

Here is the source code for twitfeedbot.UpdateStatusServlet.java

Source

/*
 * TwitFeedBot is licenced under the The MIT License (MIT)
 * 
 * Copyright (c) 2017 Brett daloonik@gmail.com
 * 
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package twitfeedbot;

import java.io.IOException;
import java.io.FileNotFoundException;

import com.sun.syndication.io.FeedException;

import java.util.Random;

import twitter4j.Twitter;
import twitter4j.TwitterException;
import twitter4j.TwitterFactory;
import twitter4j.conf.ConfigurationBuilder;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import net.jeremybrooks.knicker.KnickerException;
import net.jeremybrooks.knicker.WordApi;
import net.jeremybrooks.knicker.WordsApi;

@SuppressWarnings("serial")

public class UpdateStatusServlet extends HttpServlet {
    //Replace these values with your own
    public static final String feedsFile = "WEB-INF/StaticFiles/feeds";
    public static final String CONSUMER_KEY = "your consumer key";
    public static final String CONSUMER_SECRET = "your consumer secret";
    public static final String ACCESS_TOKEN = "your access code";
    public static final String ACCESS_SECRET = "your access secret";
    public static final String WORDNIK_KEY = "your wordnik key";

    public static final String[] separator = new String[] { "?", "!", ",", "-", ".", " " };

    public Twitter twit;

    @Override
    public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
        StringBuilder builder = new StringBuilder(140);
        GetFeed feed = new GetFeed(feedsFile);
        Random r = new Random();

        resp.setContentType("text/plain; charset=UTF-8");

        try {
            resp.getWriter().println("Updating status...");
            ConfigurationBuilder twitterConfigBuilder = new ConfigurationBuilder();
            twitterConfigBuilder.setDebugEnabled(false);

            System.setProperty("WORDNIK_API_KEY", WORDNIK_KEY);
            twitterConfigBuilder.setOAuthConsumerKey(CONSUMER_KEY);
            twitterConfigBuilder.setOAuthConsumerSecret(CONSUMER_SECRET);
            twitterConfigBuilder.setOAuthAccessToken(ACCESS_TOKEN);
            twitterConfigBuilder.setOAuthAccessTokenSecret(ACCESS_SECRET);

            twit = new TwitterFactory(twitterConfigBuilder.build()).getInstance();

            //Append feed title
            try {
                builder.append(feed.title()).append(separator[(r.nextInt(separator.length))]);
            } catch (FeedException e) {
                resp.getWriter().println("Problem with RSS Feed <br> <pre>");
                e.printStackTrace(resp.getWriter());
            }

            //Append Wordnik example sentence
            builder.append(WordApi.topExample(WordsApi.randomWord().getWord()).getText());
            if (builder.length() > 140) //Tweets are maximum 140 characters
            {
                if (builder.lastIndexOf(";", 110) > 0)
                    builder.setLength(builder.lastIndexOf(";", 110));
                else if (builder.lastIndexOf(":", 110) > 0)
                    builder.setLength(builder.lastIndexOf(":", 110));
                else if (builder.lastIndexOf(",", 110) > 0)
                    builder.setLength(builder.lastIndexOf(",", 110));
                else
                    builder.setLength(110);
            }
            //Add a global trend
            builder.append(
                    " " + twit.getPlaceTrends(1).getTrends()[r.nextInt(twit.getPlaceTrends(1).getTrends().length)]
                            .getName());
            // Make up a trend by combining two words
            builder.append(" #" + WordsApi.randomWord().getWord() + WordsApi.randomWord().getWord());

            if (builder.length() > 140)
                builder.setLength(140); //Tweets are limited to 140 characters

            twit.updateStatus(builder.toString());
            resp.getWriter().println("Tweet posted: " + builder.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace(System.err);
            resp.getWriter().println("Input file(s) not found<br>");

            resp.getWriter().println("<pre>");
            e.printStackTrace(resp.getWriter());
            resp.getWriter().println("</pre>");
        } catch (TwitterException e) {
            resp.getWriter().println("Problem with Twitter <br>");
            resp.getWriter().println("<pre>");
            e.printStackTrace(resp.getWriter());
            resp.getWriter().println("</pre>");
        } catch (KnickerException e) {
            e.printStackTrace(System.err);
            resp.getWriter().println("Problem with Wordnik <br>");
            resp.getWriter().println("<pre>");
            e.printStackTrace(resp.getWriter());
            resp.getWriter().println("</pre>");
        } catch (Exception e) {
            e.printStackTrace(System.err);
            resp.getWriter().println("<pre>");
            e.printStackTrace(resp.getWriter());
            resp.getWriter().println("</pre>");
        }
    }
}