Skip to content
Snippets Groups Projects
app_sayunixtime.c 3.44 KiB
Newer Older
  • Learn to ignore specific revisions
  •  * Asterisk -- An open source telephony toolkit.
    
     *
     * Copyright (c) 2003 Tilghman Lesher.  All rights reserved.
    
     * Copyright (c) 2006 Digium, Inc.
    
     *
     * Tilghman Lesher <app_sayunixtime__200309@the-tilghman.com>
     *
    
    Mark Spencer's avatar
    Mark Spencer committed
     * This code is released by the author with no restrictions on usage.
    
     * 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.
     *
     */
    
    
     * \brief SayUnixTime application
    
     *
     * \author Tilghman Lesher <app_sayunixtime__200309@the-tilghman.com>
    
    Russell Bryant's avatar
    Russell Bryant committed
     * \ingroup applications
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <string.h>
    
    
    #include "asterisk.h"
    
    ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
    
    
    #include "asterisk/file.h"
    #include "asterisk/logger.h"
    #include "asterisk/options.h"
    #include "asterisk/channel.h"
    #include "asterisk/pbx.h"
    #include "asterisk/module.h"
    #include "asterisk/say.h"
    
    #include "asterisk/app.h"
    
    
    static char *tdesc = "Say time";
    
    static char *app_sayunixtime = "SayUnixTime";
    
    static char *app_datetime = "DateTime";
    
    
    static char *sayunixtime_synopsis = "Says a specified time in a custom format";
    
    static char *sayunixtime_descrip =
    "SayUnixTime([unixtime][|[timezone][|format]])\n"
    "  unixtime: time, in seconds since Jan 1, 1970.  May be negative.\n"
    "              defaults to now.\n"
    "  timezone: timezone, see /usr/share/zoneinfo for a list.\n"
    "              defaults to machine default.\n"
    "  format:   a format the time is to be said in.  See voicemail.conf.\n"
    
    Kevin P. Fleming's avatar
    Kevin P. Fleming committed
    "              defaults to \"ABdY 'digits/at' IMp\"\n";
    
    static char *datetime_descrip =
    "DateTime([unixtime][|[timezone][|format]])\n"
    "  unixtime: time, in seconds since Jan 1, 1970.  May be negative.\n"
    "              defaults to now.\n"
    "  timezone: timezone, see /usr/share/zoneinfo for a list.\n"
    "              defaults to machine default.\n"
    "  format:   a format the time is to be said in.  See voicemail.conf.\n"
    
    Kevin P. Fleming's avatar
    Kevin P. Fleming committed
    "              defaults to \"ABdY 'digits/at' IMp\"\n";
    
    
    STANDARD_LOCAL_USER;
    
    LOCAL_USER_DECL;
    
    static int sayunixtime_exec(struct ast_channel *chan, void *data)
    {
    
    	AST_DECLARE_APP_ARGS(args,
    			     AST_APP_ARG(timeval);
    			     AST_APP_ARG(timezone);
    			     AST_APP_ARG(format);
    	);
    	char *parse;
    	int res = 0;
    
    	struct localuser *u;
    	time_t unixtime;
    
    	if (!data)
    		return 0;
    
    	if (!(parse = ast_strdupa(data)))
    		return -1;
    
    
    	args.format = "c";		/* default datetime */
    
    	AST_STANDARD_APP_ARGS(args, parse);
    
    	ast_get_time_t(args.timeval, &unixtime, time(NULL));
    
    		res = ast_answer(chan);
    
    		res = ast_say_date_with_format(chan, unixtime, AST_DIGIT_ANY,
    					       chan->language, args.format, args.timezone);
    
    	res = ast_unregister_application(app_sayunixtime);
    
    	res |= ast_unregister_application(app_datetime);
    
    	STANDARD_HANGUP_LOCALUSERS;
    	
    	return res;
    
    	res = ast_register_application(app_sayunixtime, sayunixtime_exec, sayunixtime_synopsis, sayunixtime_descrip);
    
    	res |= ast_register_application(app_datetime, sayunixtime_exec, sayunixtime_synopsis, datetime_descrip);
    	
    	return res;
    
    }
    
    char *description(void)
    {
    	return tdesc;
    }
    
    int usecount(void)
    {
    	int res;
    	STANDARD_USECOUNT(res);
    	return res;
    }
    
    char *key()
    {
    	return ASTERISK_GPL_KEY;
    }