com.techcavern.wavetact.ircCommands.utils.Title.java Source code

Java tutorial

Introduction

Here is the source code for com.techcavern.wavetact.ircCommands.utils.Title.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.techcavern.wavetact.ircCommands.utils;

import com.techcavern.wavetact.annot.IRCCMD;
import com.techcavern.wavetact.objects.IRCCommand;
import com.techcavern.wavetact.utils.GeneralUtils;
import com.techcavern.wavetact.utils.IRCUtils;
import org.apache.commons.lang3.StringUtils;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.pircbotx.Channel;
import org.pircbotx.PircBotX;
import org.pircbotx.User;

/**
 * @author jztech101
 */
@IRCCMD
public class Title extends IRCCommand {

    public Title() {
        super(GeneralUtils.toArray("title"), 0, "title [url]", "gets title", false);
    }

    @Override
    public void onCommand(User user, PircBotX network, String prefix, Channel channel, boolean isPrivate,
            int userPermLevel, String... args) throws Exception {
        Document doc = Jsoup.connect(args[0]).userAgent(
                "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17")
                .get();
        IRCUtils.sendMessage(user, network, channel, doc.title(), prefix);
    }
}