Java tutorial
/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2010-2014 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.netmgt.notifd; import java.io.IOException; import java.util.List; import org.opennms.netmgt.model.notifd.Argument; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.io.Resource; import twitter4j.Status; import twitter4j.Twitter; import twitter4j.TwitterException; /** * <p>MicroblogReplyNotificationStrategy class.</p> * * @author <a href="mailto:jeffg@opennms.org>Jeff Gehlbach</a> * @author <a href="http://www.opennms.org/>OpenNMS</a> */ public class MicroblogReplyNotificationStrategy extends MicroblogNotificationStrategy { private static final Logger LOG = LoggerFactory.getLogger(MicroblogReplyNotificationStrategy.class); /** * <p>Constructor for MicroblogReplyNotificationStrategy.</p> * * @throws java.io.IOException if any. */ public MicroblogReplyNotificationStrategy() throws IOException { super(); } /** * <p>Constructor for MicroblogReplyNotificationStrategy.</p> * * @param configResource a {@link org.springframework.core.io.Resource} object. */ public MicroblogReplyNotificationStrategy(Resource configResource) { super(configResource); } /** {@inheritDoc} */ @Override public int send(final List<Argument> arguments) { final Twitter svc = buildUblogService(arguments); String destUser = findDestName(arguments); Status response; if (destUser == null || "".equals(destUser)) { LOG.error( "Cannot send a microblog reply notice to a user with no microblog username set. Either set a microblog username for this OpenNMS user or use the MicroblogUpdateNotificationStrategy instead."); return 1; } // In case the user tried to be helpful, avoid a double @@ if (destUser.startsWith("@")) destUser = destUser.substring(1); final String fullMessage = String.format("@%s %s", destUser, buildMessageBody(arguments)); LOG.debug("Dispatching microblog reply notification at base URL '{}' with message '{}'", svc.getConfiguration().getClientURL(), fullMessage); try { response = svc.updateStatus(fullMessage); } catch (final TwitterException e) { LOG.error("Microblog notification failed at service URL '{}'", svc.getConfiguration().getClientURL(), e); return 1; } LOG.info("Microblog reply notification succeeded: reply update posted with ID {}", response.getId()); return 0; } }