summaryrefslogtreecommitdiffstats
path: root/acf/model/combination.lua
blob: 7228233898acfc68e4ae2ffe939e0e072c279c33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--[[
Copyright (c) 2012-2013 Kaarle Ritvanen
See LICENSE file for license details
--]]

module(..., package.seeall)

local err = require('acf.error')
local raise = err.raise

local fld = require('acf.model.field')
local String = fld.String

local to_field = require('acf.model.model').to_field

local object = require('acf.object')
local class = object.class
local super = object.super


require 'stringy'


Range = class(String)

function Range:init(params)
   super(self, Range):init(params)
   if not self.type then self.type = fld.Integer end
end

function Range:validate(context, value)
   local comps = stringy.split(value, '-')
   if #comps > 2 then raise(context.path, 'Invalid range') end
   for _, v in ipairs(comps) do to_field(self.type):_validate(context, v) end
end


Union = class(String)

function Union:validate(context, value)
   super(self, Union):validate(context, value)
   for _, tpe in ipairs(self.types) do
      local field = to_field(tpe)
      if err.call(field.validate, field, context, value) then return end
   end
   raise(context.path, self.error or 'Invalid value')
end