/* * Copyright (c) 2006-2015 DMDirc Developers * * 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 com.dmdirc.addons.ui_swing; import com.dmdirc.addons.ui_swing.events.SwingActiveWindowChangeRequestEvent; import com.dmdirc.addons.ui_swing.events.SwingEventBus; import com.dmdirc.events.LinkChannelClickedEvent; import com.dmdirc.events.LinkNicknameClickedEvent; import com.dmdirc.events.LinkUrlClickedEvent; import com.dmdirc.interfaces.Connection; import com.dmdirc.interfaces.WindowModel; import com.dmdirc.parser.common.ChannelJoinRequest; import com.dmdirc.ui.core.util.URLHandler; import java.util.Optional; import javax.inject.Inject; import javax.inject.Singleton; import net.engio.mbassy.listener.Handler; /** * Handles response to users clicking on links within the Swing UI. */ @Singleton public class SwingLinkHandler { private final URLHandler urlHandler; private final SwingEventBus eventBus; private final SwingWindowFactory windowFactory; @Inject public SwingLinkHandler( final SwingEventBus eventBus, final URLHandler urlHandler, final SwingWindowFactory windowFactory) { this.urlHandler = urlHandler; this.eventBus = eventBus; this.windowFactory = windowFactory; } @Handler public void handleChannelClick(final LinkChannelClickedEvent event) { final WindowModel container = event.getWindow(); container.getConnection() .map(Connection::getGroupChatManager) .ifPresent(c -> c.join(new ChannelJoinRequest(event.getTarget()))); } @Handler public void handleLinkClick(final LinkUrlClickedEvent event) { urlHandler.launchApp(event.getTarget()); } @Handler public void handleNicknameClick(final LinkNicknameClickedEvent event) { final WindowModel container = event.getWindow(); container.getConnection().ifPresent(c -> eventBus.publishAsync(new SwingActiveWindowChangeRequestEvent(Optional.ofNullable( windowFactory.getSwingWindow(c.getQuery(event.getTarget())))))); } }