mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_cron: Add a 'weekly' job frequency
This commit is contained in:
parent
d6070eea1f
commit
8aa16eaec0
4 changed files with 9 additions and 2 deletions
|
@ -52,6 +52,7 @@ files["plugins/"] = {
|
||||||
"module.add_identity",
|
"module.add_identity",
|
||||||
"module.add_item",
|
"module.add_item",
|
||||||
"module.add_timer",
|
"module.add_timer",
|
||||||
|
"module.weekly",
|
||||||
"module.daily",
|
"module.daily",
|
||||||
"module.hourly",
|
"module.hourly",
|
||||||
"module.broadcast",
|
"module.broadcast",
|
||||||
|
|
|
@ -521,6 +521,11 @@ function api:daily(name, fun)
|
||||||
self:cron({ name = name; when = "daily"; run = fun });
|
self:cron({ name = name; when = "daily"; run = fun });
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function api:weekly(name, fun)
|
||||||
|
if type(name) == "function" then fun, name = name, nil; end
|
||||||
|
self:cron({ name = name; when = "weekly"; run = fun });
|
||||||
|
end
|
||||||
|
|
||||||
local path_sep = package.config:sub(1,1);
|
local path_sep = package.config:sub(1,1);
|
||||||
function api:get_directory()
|
function api:get_directory()
|
||||||
return self.resource_path or self.path and (self.path:gsub("%"..path_sep.."[^"..path_sep.."]*$", "")) or nil;
|
return self.resource_path or self.path and (self.path:gsub("%"..path_sep.."[^"..path_sep.."]*$", "")) or nil;
|
||||||
|
|
|
@ -3,7 +3,7 @@ module:set_global();
|
||||||
local async = require("util.async");
|
local async = require("util.async");
|
||||||
local datetime = require("util.datetime");
|
local datetime = require("util.datetime");
|
||||||
|
|
||||||
local periods = { hourly = 3600; daily = 86400 }
|
local periods = { hourly = 3600; daily = 86400; weekly = 7 * 86400 }
|
||||||
|
|
||||||
local active_hosts = {}
|
local active_hosts = {}
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ end
|
||||||
local enum frequency
|
local enum frequency
|
||||||
"hourly"
|
"hourly"
|
||||||
"daily"
|
"daily"
|
||||||
|
"weekly"
|
||||||
end
|
end
|
||||||
|
|
||||||
local record task_spec
|
local record task_spec
|
||||||
|
@ -28,7 +29,7 @@ local record task_event
|
||||||
item : task_spec
|
item : task_spec
|
||||||
end
|
end
|
||||||
|
|
||||||
local periods : { frequency : integer } = { hourly = 3600, daily = 86400 }
|
local periods : { frequency : integer } = { hourly = 3600, daily = 86400, weekly = 7*86400 }
|
||||||
|
|
||||||
local active_hosts : { string : boolean } = { }
|
local active_hosts : { string : boolean } = { }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue