SWITCH_DECLARE(void) switch_core_setrlimits(void);
SWITCH_DECLARE(void) switch_time_sync(void);
SWITCH_DECLARE(time_t) switch_timestamp(time_t *t);
-SWITCH_DECLARE(switch_status_t) switch_strftime_tz(const char *tz, const char *format, char *date, size_t len);
+SWITCH_DECLARE(switch_status_t) switch_strftime_tz(const char *tz, const char *format, char *date, size_t len, switch_time_t thetime);
+SWITCH_DECLARE(switch_status_t) switch_time_exp_tz_name(const char *tz, switch_time_exp_t *tm, switch_time_t thetime);
SWITCH_DECLARE(void) switch_load_network_lists(switch_bool_t reload);
SWITCH_DECLARE(switch_bool_t) switch_check_network_list_ip_token(const char *ip_str, const char *list_name, const char **token);
#define switch_check_network_list_ip(_ip_str, _list_name) switch_check_network_list_ip_token(_ip_str, _list_name, NULL)
}
}
- if (switch_strftime_tz(tz_name, format, date, sizeof(date)) == SWITCH_STATUS_SUCCESS) { /* The lookup of the zone may fail. */
+ if (switch_strftime_tz(tz_name, format, date, sizeof(date), 0) == SWITCH_STATUS_SUCCESS) { /* The lookup of the zone may fail. */
stream->write_function(stream, "%s", date);
} else {
stream->write_function(stream, "-ERR Invalid Timezone\n");
}
- x_params = switch_xml_child(x_user, "params");
+
thepass = thehash = NULL;
switch_snprintf(sql, sizeof(sql), "select * from voicemail_prefs where username='%s' and domain='%s'", myid, domain_name);
vm_execute_sql_callback(profile, profile->mutex, sql, prefs_callback, &cbt);
+
+ x_params = switch_xml_child(x_user, "variables");
+ for (x_param = switch_xml_child(x_params, "variable"); x_param; x_param = x_param->next) {
+ const char *var = switch_xml_attr_soft(x_param, "name");
+ const char *val = switch_xml_attr_soft(x_param, "value");
+
+ if (!strcasecmp(var, "timezone")) {
+ switch_channel_set_variable(channel, var, val);
+ }
+ }
+
+ x_params = switch_xml_child(x_user, "params");
for (x_param = switch_xml_child(x_params, "param"); x_param; x_param = x_param->next) {
const char *var = switch_xml_attr_soft(x_param, "name");
const char *val = switch_xml_attr_soft(x_param, "value");
vm_email = switch_core_session_strdup(session, val);
} else if (!strcasecmp(var, "storage-dir")) {
vm_storage_dir = switch_core_session_strdup(session, val);
+
+ } else if (!strcasecmp(var, "timezone")) {
+ switch_channel_set_variable(channel, var, val);
}
}
filename = path;
}
+ x_params = switch_xml_child(x_user, "variables");
+ for (x_param = switch_xml_child(x_params, "variable"); x_param; x_param = x_param->next) {
+ const char *var = switch_xml_attr_soft(x_param, "name");
+ const char *val = switch_xml_attr_soft(x_param, "value");
+
+ if (!strcasecmp(var, "timezone")) {
+ vm_timezone = switch_core_strdup(pool, val);
+ }
+ }
+
x_params = switch_xml_child(x_user, "params");
for (x_param = switch_xml_child(x_params, "param"); x_param; x_param = x_param->next) {
message_count(profile, myid, domain_name, myfolder, &total_new_messages, &total_saved_messages,
&total_new_urgent_messages, &total_saved_urgent_messages);
- if (switch_strlen_zero(vm_timezone) || (switch_strftime_tz(vm_timezone, profile->date_fmt, date, sizeof(date)) != SWITCH_STATUS_SUCCESS)) {
+ if (switch_strlen_zero(vm_timezone) || (switch_strftime_tz(vm_timezone, profile->date_fmt, date, sizeof(date), 0) != SWITCH_STATUS_SUCCESS)) {
switch_time_exp_lt(&tm, switch_timestamp_now());
switch_strftime(date, &retsize, sizeof(date), profile->date_fmt, &tm);
}
switch_time_t target = 0;
switch_time_exp_t tm;
uint8_t say_date = 0, say_time = 0;
-
+ switch_channel_t *channel = switch_core_session_get_channel(session);
+ const char *tz = switch_channel_get_variable(channel, "timezone");
+
if (type == SST_TIME_MEASUREMENT) {
int64_t hours = 0;
int64_t minutes = 0;
}
}
} else {
- if ((seconds = atoi(tosay)) <= 0) {
+ if ((seconds = atol(tosay)) <= 0) {
seconds = (int64_t) switch_timestamp(NULL);
}
return SWITCH_STATUS_SUCCESS;
}
- if ((t = atoi(tosay)) > 0) {
+ if ((t = atol(tosay)) > 0) {
target = switch_time_make(t, 0);
} else {
target = switch_timestamp_now();
}
- switch_time_exp_lt(&tm, target);
+
+ if (tz) {
+ int check = atoi(tz);
+ if (check) {
+ switch_time_exp_tz(&tm, target, check);
+ } else {
+ switch_time_exp_tz_name(tz, &tm, target);
+ }
+ } else {
+ switch_time_exp_lt(&tm, target);
+ }
switch (type) {
case SST_CURRENT_DATE_TIME:
static void tztime(const time_t * const timep, const char *tzstring, struct tm * const tmp );
-SWITCH_DECLARE(switch_status_t) switch_strftime_tz(const char *tz, const char *format, char *date, size_t len)
+SWITCH_DECLARE(switch_status_t) switch_time_exp_tz_name(const char *tz, switch_time_exp_t *tm, switch_time_t thetime)
+{
+ struct tm xtm = { 0 };
+ const char *tz_name = tz;
+ const char *tzdef;
+ time_t timep;
+
+ if (!thetime) {
+ thetime = switch_timestamp_now();
+ }
+
+ timep = (thetime) / (int64_t) (1000000);
+
+ if (!switch_strlen_zero(tz_name)) {
+ tzdef = switch_lookup_timezone( tz_name );
+ } else {
+ /* We set the default timezone to GMT. */
+ tz_name="GMT";
+ tzdef="GMT";
+ }
+
+ if (tzdef) { /* The lookup of the zone may fail. */
+ tztime( &timep, tzdef, &xtm );
+ tm2switchtime( &xtm, tm);
+ return SWITCH_STATUS_SUCCESS;
+ }
+
+ return SWITCH_STATUS_FALSE;
+
+}
+
+SWITCH_DECLARE(switch_status_t) switch_strftime_tz(const char *tz, const char *format, char *date, size_t len, switch_time_t thetime)
{
- switch_time_t thetime;
time_t timep;
const char *tz_name = tz;
struct tm tm = { 0 };
switch_time_exp_t stm;
- thetime = switch_timestamp_now();
+ if (!thetime) {
+ thetime = switch_timestamp_now();
+ }
timep = (thetime) / (int64_t) (1000000);