view lib/irccd/cmd-server-cnotice.cpp @ 95:1125d90b3b44

Misc: switch to .hpp, #477
author David Demelier <markand@malikania.fr>
date Wed, 20 Apr 2016 19:45:00 +0200
parents 969f30acfb0e
children ef4bef0bf0f8
line wrap: on
line source

/*
 * cmd-server-cnotice.cpp -- implementation of server-cnotice transport command
 *
 * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include "cmd-server-cnotice.hpp"
#include "irccd.hpp"

namespace irccd {

namespace command {

ServerChannelNotice::ServerChannelNotice()
	: RemoteCommand("server-cnotice", "Server")
{
}

std::string ServerChannelNotice::help() const
{
	return "";
}

std::vector<RemoteCommand::Arg> ServerChannelNotice::args() const
{
	return {
		{ "server", true },
		{ "channel", true },
		{ "message", true }
	};
}

json::Value ServerChannelNotice::exec(Irccd &irccd, const json::Value &request) const
{
	irccd.requireServer(request.at("server").toString())->cnotice(
		request.at("channel").toString(),
		request.at("message").toString()
	);

	return RemoteCommand::exec(irccd, request);
}

} // !command

} // !irccd