File: list.c

package info (click to toggle)
atheme-services 7.2.12-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,256 kB
  • sloc: ansic: 95,899; sh: 8,462; php: 5,032; perl: 3,327; makefile: 1,279; sed: 16; ruby: 15; python: 3
file content (54 lines) | stat: -rw-r--r-- 1,275 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* list.c - rpgserv LIST command
 */

#include "atheme.h"

DECLARE_MODULE_V1
(
	"rpgserv/list", false, _modinit, _moddeinit,
	PACKAGE_STRING,
	VENDOR_STRING
);

static void rs_cmd_list(sourceinfo_t *si, int parc, char *parv[]);

command_t rs_list = { "LIST", N_("Lists games."),
                      AC_NONE, 0, rs_cmd_list, { .path = "rpgserv/list" } };

static void rs_cmd_list(sourceinfo_t *si, int parc, char *parv[])
{
	mowgli_patricia_iteration_state_t state;
	mychan_t *mc;
	unsigned int listed = 0;
	char *desc;

	MOWGLI_PATRICIA_FOREACH(mc, &state, mclist)
	{
		if (!mc->chan)
			continue;
		if (CMODE_SEC & mc->chan->modes || CMODE_PRIV & mc->chan->modes)
			continue;

		if (!metadata_find(mc, "private:rpgserv:enabled"))
			continue;
		if (!metadata_find(mc, "private:rpgserv:summary"))
			desc = _("<no summary>");
		else
			desc = metadata_find(mc, "private:rpgserv:summary")->value;
		command_success_nodata(si, "\2%s\2: %s", mc->name, desc);
		listed++;
	}
	command_success_nodata(si, _("Listed \2%d\2 channels."), listed);

	logcommand(si, CMDLOG_GET, "RPGSERV:LIST");
}

void _modinit(module_t *m)
{
	service_named_bind_command("rpgserv", &rs_list);
}

void _moddeinit(module_unload_intent_t intent)
{
	service_named_unbind_command("rpgserv", &rs_list);
}