Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
a1a73283
Commit
a1a73283
authored
Sep 22, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mvc) add AutoNumberField for auto numbering fields
parent
dfd37ca2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
142 additions
and
0 deletions
+142
-0
AutoNumberField.php
...c/app/models/OPNsense/Base/FieldTypes/AutoNumberField.php
+142
-0
No files found.
src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/AutoNumberField.php
0 → 100644
View file @
a1a73283
<?php
/**
* Copyright (C) 2015 Deciso B.V.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
namespace
OPNsense\Base\FieldTypes
;
use
OPNsense\Base\Validators\MinMaxValidator
;
use
OPNsense\Base\Validators\IntegerValidator
;
/**
* Class AutoNumberField auto numbering integer type field, using it's direct neighbours to determine the already used
* numbers.
* @package OPNsense\Base\FieldTypes
*/
class
AutoNumberField
extends
BaseField
{
/**
* @var bool marks if this is a data node or a container
*/
protected
$internalIsContainer
=
false
;
/**
* maximum value for this field
* @var integer
*/
private
$maximum_value
;
/**
* minimum value for this field
* @var integer
*/
private
$minimum_value
;
/**
* constructor, set absolute min and max values
* @param null|string $ref direct reference to this object
* @param null|string $tagname xml tagname to use
*/
public
function
__construct
(
$ref
=
null
,
$tagname
=
null
)
{
parent
::
__construct
(
$ref
,
$tagname
);
$this
->
minimum_value
=
0
;
$this
->
maximum_value
=
PHP_INT_MAX
-
1
;
}
/**
* applyDefault is the trigger for requesting a new sequence number, when a child field is created by
* ArrayField it always receives all of it's defaults after clone.
* (see ArrayField for how this works).
*
* In this case, the default is a new sequence based on the same field in this fields direct neighbours.
*/
public
function
applyDefault
()
{
// collect all used sequence numbers
$allIds
=
array
();
if
(
isset
(
$this
->
internalParentNode
->
internalParentNode
))
{
foreach
(
$this
->
internalParentNode
->
internalParentNode
->
__items
as
$node
)
{
$allIds
[]
=
(
string
)
$node
->
{
$this
->
internalXMLTagName
};
}
}
// find first unused sequence
for
(
$newId
=
$this
->
minimum_value
;
$newId
<=
$this
->
maximum_value
+
1
;
++
$newId
)
{
if
(
!
in_array
(
$newId
,
$allIds
))
{
break
;
}
}
$this
->
internalValue
=
(
string
)
$newId
;
}
/**
* setter for maximum value
* @param integer $value
*/
public
function
setMaximumValue
(
$value
)
{
if
(
is_numeric
(
$value
))
{
$this
->
maximum_value
=
$value
;
}
}
/**
* setter for minimum value
* @param integer $value
*/
public
function
setMinimumValue
(
$value
)
{
if
(
is_numeric
(
$value
))
{
$this
->
minimum_value
=
$value
;
}
}
/**
* @return array returns Text/regex validator
*/
public
function
getValidators
()
{
if
(
$this
->
internalValidationMessage
==
null
)
{
$msg
=
"invalid integer value"
;
}
else
{
$msg
=
$this
->
internalValidationMessage
;
}
if
((
$this
->
internalIsRequired
==
true
||
$this
->
internalValue
!=
null
))
{
$result
=
array
();
$result
[]
=
new
MinMaxValidator
(
array
(
'message'
=>
$msg
,
"min"
=>
$this
->
minimum_value
,
"max"
=>
$this
->
maximum_value
));
$result
[]
=
new
IntegerValidator
(
array
(
'message'
=>
$msg
));
return
$result
;
}
else
{
// empty field and not required, skip this validation.
return
array
();
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment