/* Icecast * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2014-2018, Philipp "ph3-der-loewe" Schafft , */ #ifdef HAVE_CONFIG_H #include #endif #include #include "event.h" #include "util.h" #include "cfgfile.h" #include "logging.h" #define CATMODULE "event_log" typedef struct event_log { char *prefix; int level; } event_log_t; static int event_log_emit(void *state, event_t *event) { event_log_t *self = state; ICECAST_LOG(self->level, ICECAST_LOGFLAG_NONE, "%s%strigger=\"%s\" uri=\"%s\" " "connection_id=%lu connection_ip=\"%s\" connection_time=%lli " "client_role=\"%s\" client_username=\"%s\" client_useragent=\"%s\" client_admin_command=%i", self->prefix ? self->prefix : "", self->prefix ? ": " : "", event->trigger, event->uri, event->connection_id, event->connection_ip, (long long int)event->connection_time, event->client_role, event->client_username, event->client_useragent, event->client_admin_command); return 0; } static void event_log_free(void *state) { event_log_t *self = state; free(self->prefix); free(self); } int event_get_log(event_registration_t *er, config_options_t *options) { event_log_t *self = calloc(1, sizeof(event_log_t)); if (!self) return -1; self->prefix = strdup("Event"); self->level = ICECAST_LOGLEVEL_INFO; if (options) { do { if (options->type) continue; if (!options->name) continue; /* BEFORE RELEASE 2.5.0 DOCUMENT: Document supported options: *