mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			815 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			815 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* -*- C -*-
 | |
|  * Asterisk -- An open source telephony toolkit.
 | |
|  *
 | |
|  * Copyright (C) 2012 - 2013, Digium, Inc.
 | |
|  *
 | |
|  * David M. Lee, II <dlee@digium.com>
 | |
|  *
 | |
|  * See http://www.asterisk.org for more information about
 | |
|  * the Asterisk project. Please do not directly contact
 | |
|  * any of the maintainers of this project for assistance;
 | |
|  * the project provides a web site, mailing lists and IRC
 | |
|  * channels for your use.
 | |
|  *
 | |
|  * This program is free software, distributed under the terms of
 | |
|  * the GNU General Public License Version 2. See the LICENSE file
 | |
|  * at the top of the source tree.
 | |
|  */
 | |
| 
 | |
| /*! \file
 | |
|  *
 | |
|  * \brief Implementation for ARI stubs.
 | |
|  *
 | |
|  * \author David M. Lee, II <dlee@digium.com>
 | |
|  */
 | |
| 
 | |
| /*** MODULEINFO
 | |
| 	<support_level>core</support_level>
 | |
|  ***/
 | |
| 
 | |
| #include "asterisk.h"
 | |
| 
 | |
| ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 | |
| 
 | |
| #include "asterisk/ast_version.h"
 | |
| #include "asterisk/buildinfo.h"
 | |
| #include "asterisk/logger.h"
 | |
| #include "asterisk/module.h"
 | |
| #include "asterisk/paths.h"
 | |
| #include "asterisk/pbx.h"
 | |
| #include "asterisk/sorcery.h"
 | |
| #include "resource_asterisk.h"
 | |
| 
 | |
| static void return_sorcery_object(struct ast_sorcery *sorcery, void *sorcery_obj,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	RAII_VAR(struct ast_json *, return_set, NULL, ast_json_unref);
 | |
| 	struct ast_variable *change_set;
 | |
| 	struct ast_variable *it_change_set;
 | |
| 
 | |
| 	return_set = ast_json_array_create();
 | |
| 	if (!return_set) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	/* Note that we can't use the sorcery JSON change set directly,
 | |
| 	 * as it will hand us back an Object (with fields), and we need
 | |
| 	 * a more generic representation of whatever the API call asked
 | |
| 	 * for, i.e., a list of tuples.
 | |
| 	 */
 | |
| 	change_set = ast_sorcery_objectset_create(sorcery, sorcery_obj);
 | |
| 	if (!change_set) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	for (it_change_set = change_set; it_change_set; it_change_set = it_change_set->next) {
 | |
| 		struct ast_json *tuple;
 | |
| 
 | |
| 		tuple = ast_json_pack("{s: s, s: s}",
 | |
| 			"attribute", it_change_set->name,
 | |
| 			"value", it_change_set->value);
 | |
| 		if (!tuple) {
 | |
| 			ast_variables_destroy(change_set);
 | |
| 			ast_ari_response_alloc_failed(response);
 | |
| 			return;
 | |
| 		}
 | |
| 
 | |
| 		if (ast_json_array_append(return_set, tuple)) {
 | |
| 			ast_json_unref(tuple);
 | |
| 			ast_variables_destroy(change_set);
 | |
| 			ast_ari_response_alloc_failed(response);
 | |
| 			return;
 | |
| 		}
 | |
| 	}
 | |
| 	ast_variables_destroy(change_set);
 | |
| 
 | |
| 	ast_ari_response_ok(response, ast_json_ref(return_set));
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_get_object(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_get_object_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	RAII_VAR(struct ast_sorcery *, sorcery, NULL, ast_sorcery_unref);
 | |
| 	RAII_VAR(struct ast_sorcery_object_type *, object_type, NULL, ao2_cleanup);
 | |
| 	RAII_VAR(void *, sorcery_obj, NULL, ao2_cleanup);
 | |
| 
 | |
| 
 | |
| 	sorcery = ast_sorcery_retrieve_by_module_name(args->config_class);
 | |
| 	if (!sorcery) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"configClass '%s' not found",
 | |
| 			args->config_class);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	object_type = ast_sorcery_get_object_type(sorcery, args->object_type);
 | |
| 	if (!object_type) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"objectType '%s' not found",
 | |
| 			args->object_type);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	sorcery_obj = ast_sorcery_retrieve_by_id(sorcery, args->object_type, args->id);
 | |
| 	if (!sorcery_obj) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Object with id '%s' not found",
 | |
| 			args->id);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	return_sorcery_object(sorcery, sorcery_obj, response);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_update_object(struct ast_variable *headers, struct ast_ari_asterisk_update_object_args *args, struct ast_ari_response *response)
 | |
| {
 | |
| 	RAII_VAR(struct ast_sorcery *, sorcery, NULL, ast_sorcery_unref);
 | |
| 	RAII_VAR(struct ast_sorcery_object_type *, object_type, NULL, ao2_cleanup);
 | |
| 	RAII_VAR(void *, sorcery_obj, NULL, ao2_cleanup);
 | |
| 	struct ast_json *fields;
 | |
| 	struct ast_variable *update_set = NULL;
 | |
| 	int created = 0;
 | |
| 
 | |
| 	sorcery = ast_sorcery_retrieve_by_module_name(args->config_class);
 | |
| 	if (!sorcery) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"configClass '%s' not found",
 | |
| 			args->config_class);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	object_type = ast_sorcery_get_object_type(sorcery, args->object_type);
 | |
| 	if (!object_type) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"objectType '%s' not found",
 | |
| 			args->object_type);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	sorcery_obj = ast_sorcery_retrieve_by_id(sorcery, args->object_type, args->id);
 | |
| 	if (!sorcery_obj) {
 | |
| 		ast_debug(5, "Sorcery object '%s' does not exist; creating it\n", args->id);
 | |
| 		sorcery_obj = ast_sorcery_alloc(sorcery, args->object_type, args->id);
 | |
| 		if (!sorcery_obj) {
 | |
| 			ast_ari_response_alloc_failed(response);
 | |
| 			return;
 | |
| 		}
 | |
| 
 | |
| 		created = 1;
 | |
| 	} else {
 | |
| 		void *copy;
 | |
| 
 | |
| 		copy = ast_sorcery_copy(sorcery, sorcery_obj);
 | |
| 		if (!copy) {
 | |
| 			ast_ari_response_alloc_failed(response);
 | |
| 			return;
 | |
| 		}
 | |
| 
 | |
| 		ao2_ref(sorcery_obj, -1);
 | |
| 		sorcery_obj = copy;
 | |
| 	}
 | |
| 
 | |
| 	fields = ast_json_object_get(args->fields, "fields");
 | |
| 	if (!fields && !created) {
 | |
| 		/* Whoops. We need data. */
 | |
| 		ast_ari_response_error(
 | |
| 			response, 400, "Bad request",
 | |
| 			"Fields must be provided to update object '%s'",
 | |
| 			args->id);
 | |
| 		return;
 | |
| 	} else if (fields) {
 | |
| 		size_t i;
 | |
| 
 | |
| 		for (i = 0; i < ast_json_array_size(fields); i++) {
 | |
| 			struct ast_variable *new_var;
 | |
| 			struct ast_json *json_value = ast_json_array_get(fields, i);
 | |
| 
 | |
| 			if (!json_value) {
 | |
| 				continue;
 | |
| 			}
 | |
| 
 | |
| 			new_var = ast_variable_new(
 | |
| 				ast_json_string_get(ast_json_object_get(json_value, "attribute")),
 | |
| 				ast_json_string_get(ast_json_object_get(json_value, "value")),
 | |
| 				"");
 | |
| 			if (!new_var) {
 | |
| 				ast_variables_destroy(update_set);
 | |
| 				ast_ari_response_alloc_failed(response);
 | |
| 				return;
 | |
| 			}
 | |
| 			ast_variable_list_append(&update_set, new_var);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/* APPLY! Note that a NULL update_set is fine (and necessary), as it
 | |
| 	 * will force validation on a newly created object.
 | |
| 	 */
 | |
| 	if (ast_sorcery_objectset_apply(sorcery, sorcery_obj, update_set)) {
 | |
| 		ast_variables_destroy(update_set);
 | |
| 		ast_ari_response_error(
 | |
| 			response, 400, "Bad request",
 | |
| 			"%s of object '%s' failed field value validation",
 | |
| 			created ? "Creation" : "Update",
 | |
| 			args->id);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_variables_destroy(update_set);
 | |
| 
 | |
| 	if (created) {
 | |
| 		if (ast_sorcery_create(sorcery, sorcery_obj)) {
 | |
| 			ast_ari_response_error(
 | |
| 				response, 403, "Forbidden",
 | |
| 				"Cannot create sorcery objects of type '%s'",
 | |
| 				args->object_type);
 | |
| 			return;
 | |
| 		}
 | |
| 	} else {
 | |
| 		if (ast_sorcery_update(sorcery, sorcery_obj)) {
 | |
| 			ast_ari_response_error(
 | |
| 				response, 403, "Forbidden",
 | |
| 				"Cannot update sorcery objects of type '%s'",
 | |
| 				args->object_type);
 | |
| 			return;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return_sorcery_object(sorcery, sorcery_obj, response);
 | |
| }
 | |
| 
 | |
| 
 | |
| void ast_ari_asterisk_delete_object(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_delete_object_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	RAII_VAR(struct ast_sorcery *, sorcery, NULL, ast_sorcery_unref);
 | |
| 	RAII_VAR(struct ast_sorcery_object_type *, object_type, NULL, ao2_cleanup);
 | |
| 	RAII_VAR(void *, sorcery_obj, NULL, ao2_cleanup);
 | |
| 
 | |
| 	sorcery = ast_sorcery_retrieve_by_module_name(args->config_class);
 | |
| 	if (!sorcery) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"configClass '%s' not found",
 | |
| 			args->config_class);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	object_type = ast_sorcery_get_object_type(sorcery, args->object_type);
 | |
| 	if (!object_type) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"objectType '%s' not found",
 | |
| 			args->object_type);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	sorcery_obj = ast_sorcery_retrieve_by_id(sorcery, args->object_type, args->id);
 | |
| 	if (!sorcery_obj) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Object with id '%s' not found",
 | |
| 			args->id);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	if (ast_sorcery_delete(sorcery, sorcery_obj)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 403, "Forbidden",
 | |
| 			"Could not delete object with id '%s'",
 | |
| 			args->id);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| 
 | |
| void ast_ari_asterisk_get_info(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_get_info_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	RAII_VAR(struct ast_json *, json, NULL, ast_json_unref);
 | |
| 	int show_all = args->only_count == 0;
 | |
| 	int show_build = show_all;
 | |
| 	int show_system = show_all;
 | |
| 	int show_config = show_all;
 | |
| 	int show_status = show_all;
 | |
| 	size_t i;
 | |
| 	int res = 0;
 | |
| 
 | |
| 	for (i = 0; i < args->only_count; ++i) {
 | |
| 		if (strcasecmp("build", args->only[i]) == 0) {
 | |
| 			show_build = 1;
 | |
| 		} else if (strcasecmp("system", args->only[i]) == 0) {
 | |
| 			show_system = 1;
 | |
| 		} else if (strcasecmp("config", args->only[i]) == 0) {
 | |
| 			show_config = 1;
 | |
| 		} else if (strcasecmp("status", args->only[i]) == 0) {
 | |
| 			show_status = 1;
 | |
| 		} else {
 | |
| 			ast_log(LOG_WARNING, "Unrecognized info section '%s'\n",
 | |
| 				args->only[i]);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	json = ast_json_object_create();
 | |
| 
 | |
| 	if (show_build) {
 | |
| 		res |= ast_json_object_set(json, "build",
 | |
| 			ast_json_pack(
 | |
| 				"{ s: s, s: s, s: s,"
 | |
| 				"  s: s, s: s, s: s }",
 | |
| 
 | |
| 				"os", ast_build_os,
 | |
| 				"kernel", ast_build_kernel,
 | |
| 				"machine", ast_build_machine,
 | |
| 
 | |
| 				"options", AST_BUILDOPTS,
 | |
| 				"date", ast_build_date,
 | |
| 				"user", ast_build_user));
 | |
| 	}
 | |
| 
 | |
| 	if (show_system) {
 | |
| 		char eid_str[128];
 | |
| 
 | |
| 		ast_eid_to_str(eid_str, sizeof(eid_str), &ast_eid_default);
 | |
| 
 | |
| 		res |= ast_json_object_set(json, "system",
 | |
| 			ast_json_pack("{ s: s, s: s }",
 | |
| 				"version", ast_get_version(),
 | |
| 				"entity_id", eid_str));
 | |
| 	}
 | |
| 
 | |
| 	if (show_config) {
 | |
| 		struct ast_json *config = ast_json_pack(
 | |
| 			"{ s: s, s: s,"
 | |
| 			" s: { s: s, s: s } }",
 | |
| 
 | |
| 			"name", ast_config_AST_SYSTEM_NAME,
 | |
| 			"default_language", ast_defaultlanguage,
 | |
| 
 | |
| 			"setid",
 | |
| 			"user", ast_config_AST_RUN_USER,
 | |
| 			"group", ast_config_AST_RUN_GROUP);
 | |
| 
 | |
| 		res |= ast_json_object_set(json, "config", config);
 | |
| 
 | |
| 		if (ast_option_maxcalls) {
 | |
| 			res |= ast_json_object_set(config, "max_channels",
 | |
| 				ast_json_integer_create(ast_option_maxcalls));
 | |
| 		}
 | |
| 
 | |
| 		if (ast_option_maxfiles) {
 | |
| 			res |= ast_json_object_set(config, "max_open_files",
 | |
| 				ast_json_integer_create(ast_option_maxfiles));
 | |
| 		}
 | |
| 
 | |
| 		if (ast_option_maxload) {
 | |
| 			res |= ast_json_object_set(config, "max_load",
 | |
| 				ast_json_real_create(ast_option_maxload));
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if (show_status) {
 | |
| 		res |= ast_json_object_set(json, "status",
 | |
| 			ast_json_pack("{ s: o, s: o }",
 | |
| 				"startup_time",
 | |
| 				ast_json_timeval(ast_startuptime, NULL),
 | |
| 				"last_reload_time",
 | |
| 				ast_json_timeval(ast_lastreloadtime, NULL)));
 | |
| 	}
 | |
| 
 | |
| 	if (res != 0) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_ok(response, ast_json_ref(json));
 | |
| }
 | |
| 
 | |
| /*!
 | |
|  * \brief Process module information and append to a json array
 | |
|  * \param module Resource name
 | |
|  * \param description Resource description
 | |
|  * \param usecnt Resource use count
 | |
|  * \param status Resource running status
 | |
|  * \param like
 | |
|  * \param support_level Resource support level
 | |
|  * \param module_data_list Resource array
 | |
|  *
 | |
|  * \retval 0 if no resource exists
 | |
|  * \retval 1 if resource exists
 | |
|  */
 | |
| static int process_module_list(const char *module, const char *description, int usecnt,
 | |
|                                const char *status, const char *like,
 | |
|                                enum ast_module_support_level support_level, void *module_data_list)
 | |
| {
 | |
| 	struct ast_json *module_info;
 | |
| 
 | |
| 	module_info = ast_json_pack("{s: s, s: s, s: i, s: s, s: s}",
 | |
|                               "name", module,
 | |
|                               "description", description,
 | |
|                               "use_count", usecnt,
 | |
|                               "status", status,
 | |
|                               "support_level", ast_module_support_level_to_string(support_level));
 | |
| 	if (!module_info) {
 | |
| 		return 0;
 | |
| 	}
 | |
| 	ast_json_array_append(module_data_list, module_info);
 | |
| 	return 1;
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_list_modules(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_list_modules_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	struct ast_json *json;
 | |
| 
 | |
| 	json = ast_json_array_create();
 | |
| 	if (!json) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 	ast_update_module_list_data(&process_module_list, NULL, json);
 | |
| 
 | |
| 	ast_ari_response_ok(response, json);
 | |
| }
 | |
| 
 | |
| /*!
 | |
|  * \brief Identify module by name and process resource information
 | |
|  * \param module Resource name
 | |
|  * \param description Resource description
 | |
|  * \param usecnt Resource use count
 | |
|  * \param status Resource running status
 | |
|  * \param like
 | |
|  * \param support_level Resource support level
 | |
|  * \param data JSON body for resource
 | |
|  * \param condition Name to match resource to
 | |
|  *
 | |
|  * \retval 0 if no resource exists
 | |
|  * \retval 1 if resource exists
 | |
|  */
 | |
| static int identify_module(const char *module, const char *description, int usecnt,
 | |
|                            const char *status, const char *like,
 | |
|                            enum ast_module_support_level support_level, void *data,
 | |
|                            const char *condition)
 | |
| {
 | |
| 	int json_obj_set = 0;
 | |
| 
 | |
| 	if (strcmp(condition, module) != 0) {
 | |
| 		return 0;
 | |
| 	}
 | |
| 
 | |
| 	json_obj_set += ast_json_object_set(data, "name", ast_json_string_create(module));
 | |
| 	json_obj_set += ast_json_object_set(data, "description", ast_json_string_create(description));
 | |
| 	json_obj_set += ast_json_object_set(data, "use_count", ast_json_integer_create(usecnt));
 | |
| 	json_obj_set += ast_json_object_set(data, "status", ast_json_string_create(status));
 | |
| 	json_obj_set += ast_json_object_set(data, "support_level", ast_json_string_create(
 | |
| 	                                    ast_module_support_level_to_string(support_level)));
 | |
| 
 | |
| 	if (json_obj_set != 0) {
 | |
| 		return 0;
 | |
| 	}
 | |
| 
 | |
| 	return 1;
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_get_module(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_get_module_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	struct ast_json *json;
 | |
| 	int module_retrieved = 0;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	if (!ast_module_check(args->module_name)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Module could not be found in running modules");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	json = ast_json_object_create();
 | |
| 	if (!json) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	module_retrieved = ast_update_module_list_condition(&identify_module, NULL, json,
 | |
| 	                                                    args->module_name);
 | |
| 	if (!module_retrieved) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module information could not be retrieved");
 | |
| 		ast_json_unref(json);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_ok(response, json);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_load_module(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_load_module_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	enum ast_module_load_result load_result;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	if (ast_module_check(args->module_name)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module is already loaded");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	load_result = ast_load_resource(args->module_name);
 | |
| 
 | |
| 	if (load_result == AST_MODULE_LOAD_DECLINE) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module load declined");
 | |
| 		return;
 | |
| 	} else if (load_result == AST_MODULE_LOAD_SKIP) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module was skipped");
 | |
| 		return;
 | |
| 	} else if (load_result == AST_MODULE_LOAD_FAILURE) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module could not be loaded properly");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_unload_module(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_unload_module_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	int unload_result;
 | |
| 	enum ast_module_unload_mode unload_mode = AST_FORCE_SOFT;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	if (!ast_module_check(args->module_name)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Module not found in running modules");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	unload_result = ast_unload_resource(args->module_name, unload_mode);
 | |
| 
 | |
| 	if (unload_result != 0) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module could not be unloaded");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_reload_module(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_reload_module_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	enum ast_module_reload_result reload_result;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	if (!ast_module_check(args->module_name)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Module not found in running modules");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	reload_result = ast_module_reload(args->module_name);
 | |
| 
 | |
| 	if (reload_result == AST_MODULE_RELOAD_NOT_FOUND) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Module could not be found");
 | |
| 		return;
 | |
| 	} else if (reload_result == AST_MODULE_RELOAD_ERROR) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"An unknown error occurred while reloading the module");
 | |
| 		return;
 | |
| 	} else if (reload_result == AST_MODULE_RELOAD_IN_PROGRESS) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Another reload is currently in progress");
 | |
| 		return;
 | |
| 	} else if (reload_result == AST_MODULE_RELOAD_UNINITIALIZED) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module has not been initialized");
 | |
| 		return;
 | |
| 	} else if (reload_result == AST_MODULE_RELOAD_NOT_IMPLEMENTED) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 409, "Conflict",
 | |
| 			"Module does not support reloading");
 | |
| 		return;
 | |
| 	} else if (reload_result == AST_MODULE_RELOAD_QUEUED) {
 | |
| 		ast_ari_response_accepted(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| /*!
 | |
|  * \brief Process logger information and append to a json array
 | |
|  * \param channel Resource logger channel name path
 | |
|  * \param type Resource log type
 | |
|  * \param status Resource log status
 | |
|  * \param configuration Resource logger levels
 | |
|  * \param log_data_list Resource array
 | |
|  *
 | |
|  * \retval -1 if no resource exists
 | |
|  * \retval 0 if resource exists
 | |
|  */
 | |
| static int process_log_list(const char *channel, const char *type,
 | |
| 	const char *status, const char *configuration, void *log_data_list)
 | |
| {
 | |
| 	struct ast_json *logger_info;
 | |
| 
 | |
| 	logger_info = ast_json_pack("{s: s, s: s, s: s, s: s}",
 | |
| 		"channel", channel, "type", type, "status", status, "configuration",
 | |
| 		configuration);
 | |
| 
 | |
| 	if (!logger_info) {
 | |
| 		return AST_LOGGER_FAILURE;
 | |
| 	}
 | |
| 
 | |
| 	ast_json_array_append(log_data_list, logger_info);
 | |
| 	return AST_LOGGER_SUCCESS;
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_list_log_channels(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_list_log_channels_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	struct ast_json *json;
 | |
| 	int res;
 | |
| 
 | |
| 	json = ast_json_array_create();
 | |
| 	res = ast_logger_get_channels(&process_log_list, json);
 | |
| 
 | |
| 	if (res == AST_LOGGER_FAILURE) {
 | |
| 		ast_ari_response_error(response, 500, "Internal Server Error",
 | |
| 			"Response body is not valid");
 | |
| 		ast_json_unref(json);
 | |
| 		return;
 | |
| 	} else if (res == AST_LOGGER_ALLOC_ERROR) {
 | |
| 		ast_ari_response_error(response, 500, "Internal Server Error",
 | |
| 			"Allocation Failed");
 | |
| 		ast_json_unref(json);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_ok(response, json);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_add_log(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_add_log_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	int res;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	res = ast_logger_create_channel(args->log_channel_name, args->configuration);
 | |
| 
 | |
| 	if (res == AST_LOGGER_DECLINE) {
 | |
| 		ast_ari_response_error(response, 400, "Bad Request",
 | |
| 			"Configuration levels are required");
 | |
| 		return;
 | |
| 	} else if (res == AST_LOGGER_FAILURE) {
 | |
| 		ast_ari_response_error(response, 409, "Conflict",
 | |
| 			"Log channel already exists");
 | |
| 		return;
 | |
| 	} else if (res == AST_LOGGER_ALLOC_ERROR) {
 | |
| 		ast_ari_response_error(response, 500, "Internal Server Error",
 | |
| 			"Allocation failed");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_rotate_log(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_rotate_log_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	int res;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	res = ast_logger_rotate_channel(args->log_channel_name);
 | |
| 
 | |
| 	if (res == AST_LOGGER_FAILURE) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 404, "Not Found",
 | |
| 			"Log channel does not exist");
 | |
| 		return;
 | |
| 	} else if (res == AST_LOGGER_ALLOC_ERROR) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 500, "Internal Server Error",
 | |
| 			"Allocation failed");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_delete_log(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_delete_log_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	int res;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	res = ast_logger_remove_channel(args->log_channel_name);
 | |
| 
 | |
| 	if (res == AST_LOGGER_FAILURE) {
 | |
| 		ast_ari_response_error(response, 404, "Not Found",
 | |
| 			"Log channel does not exist");
 | |
| 		return;
 | |
| 	} else if (res == AST_LOGGER_ALLOC_ERROR) {
 | |
| 		ast_ari_response_error(response, 500, "Internal Server Error",
 | |
| 			"Allocation failed");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_get_global_var(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_get_global_var_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	RAII_VAR(struct ast_json *, json, NULL, ast_json_unref);
 | |
| 	RAII_VAR(struct ast_str *, tmp, NULL, ast_free);
 | |
| 
 | |
| 	const char *value;
 | |
| 
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	if (ast_strlen_zero(args->variable)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 400, "Bad Request",
 | |
| 			"Variable name is required");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	tmp = ast_str_create(32);
 | |
| 	if (!tmp) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	value = ast_str_retrieve_variable(&tmp, 0, NULL, NULL, args->variable);
 | |
| 
 | |
| 	if (!(json = ast_json_pack("{s: s}", "value", S_OR(value, "")))) {
 | |
| 		ast_ari_response_alloc_failed(response);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	ast_ari_response_ok(response, ast_json_ref(json));
 | |
| }
 | |
| 
 | |
| void ast_ari_asterisk_set_global_var(struct ast_variable *headers,
 | |
| 	struct ast_ari_asterisk_set_global_var_args *args,
 | |
| 	struct ast_ari_response *response)
 | |
| {
 | |
| 	ast_assert(response != NULL);
 | |
| 
 | |
| 	if (ast_strlen_zero(args->variable)) {
 | |
| 		ast_ari_response_error(
 | |
| 			response, 400, "Bad Request",
 | |
| 			"Variable name is required");
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	pbx_builtin_setvar_helper(NULL, args->variable, args->value);
 | |
| 
 | |
| 	ast_ari_response_no_content(response);
 | |
| }
 |