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
70c502ba
Commit
70c502ba
authored
Feb 09, 2017
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mvc: flatten ModelRelationField logic and always use continue
parent
77dedce0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
27 deletions
+31
-27
ModelRelationField.php
...pp/models/OPNsense/Base/FieldTypes/ModelRelationField.php
+31
-27
No files found.
src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/ModelRelationField.php
View file @
70c502ba
...
...
@@ -2,7 +2,6 @@
/**
* Copyright (C) 2015 Deciso B.V.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
...
...
@@ -25,8 +24,8 @@
* 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
Phalcon\Validation\Validator\InclusionIn
;
...
...
@@ -83,36 +82,41 @@ class ModelRelationField extends BaseField
self
::
$internalOptionList
[
$this
->
internalCacheKey
]
=
array
();
foreach
(
$mdlStructure
as
$modelData
)
{
// only handle valid model sources
if
(
isset
(
$modelData
[
'source'
])
&&
isset
(
$modelData
[
'items'
])
&&
isset
(
$modelData
[
'display'
]))
{
$className
=
str_replace
(
"."
,
"
\\
"
,
$modelData
[
'source'
]);
// handle optional/missing classes, i.e. from plugins
if
(
!
class_exists
(
$className
))
{
continue
;
}
$modelObj
=
new
$className
;
foreach
(
$modelObj
->
getNodeByReference
(
$modelData
[
'items'
])
->
__items
as
$node
)
{
$displayKey
=
$modelData
[
'display'
];
if
(
isset
(
$node
->
getAttributes
()[
"uuid"
])
&&
$node
->
$displayKey
!=
null
)
{
// check for filters and apply if found
$isMatched
=
true
;
if
(
isset
(
$modelData
[
'filters'
]))
{
foreach
(
$modelData
[
'filters'
]
as
$filterKey
=>
$filterValue
)
{
$fieldData
=
$node
->
$filterKey
;
if
(
!
preg_match
(
$filterValue
,
$fieldData
)
&&
$fieldData
!=
null
)
{
$isMatched
=
false
;
break
;
}
if
(
!
isset
(
$modelData
[
'source'
])
||
!
isset
(
$modelData
[
'items'
])
||
!
isset
(
$modelData
[
'display'
]))
{
continue
;
}
// handle optional/missing classes, i.e. from plugins
$className
=
str_replace
(
'.'
,
'\\'
,
$modelData
[
'source'
]);
if
(
!
class_exists
(
$className
))
{
continue
;
}
$modelObj
=
new
$className
;
foreach
(
$modelObj
->
getNodeByReference
(
$modelData
[
'items'
])
->
__items
as
$node
)
{
$displayKey
=
$modelData
[
'display'
];
if
(
isset
(
$node
->
getAttributes
()[
"uuid"
])
&&
$node
->
$displayKey
!=
null
)
{
// check for filters and apply if found
$isMatched
=
true
;
if
(
isset
(
$modelData
[
'filters'
]))
{
foreach
(
$modelData
[
'filters'
]
as
$filterKey
=>
$filterValue
)
{
$fieldData
=
$node
->
$filterKey
;
if
(
!
preg_match
(
$filterValue
,
$fieldData
)
&&
$fieldData
!=
null
)
{
$isMatched
=
false
;
break
;
}
}
if
(
$isMatched
)
{
$uuid
=
$node
->
getAttributes
()[
'uuid'
];
self
::
$internalOptionList
[
$this
->
internalCacheKey
][
$uuid
]
=
$node
->
$displayKey
->
__toString
();
}
}
if
(
$isMatched
)
{
$uuid
=
$node
->
getAttributes
()[
'uuid'
];
self
::
$internalOptionList
[
$this
->
internalCacheKey
][
$uuid
]
=
$node
->
$displayKey
->
__toString
();
}
}
unset
(
$modelObj
);
}
unset
(
$modelObj
);
}
}
}
...
...
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