Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
php-solr
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dmj
php-solr
Commits
64d4fe0a
Commit
64d4fe0a
authored
8 years ago
by
David Maus
Browse files
Options
Downloads
Patches
Plain Diff
Improve support for result grouping
parent
bad56b2c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/HAB/Solr/Response/Json/Group.php
+63
-0
63 additions, 0 deletions
src/HAB/Solr/Response/Json/Group.php
src/HAB/Solr/Response/Json/RecordCollection.php
+13
-3
13 additions, 3 deletions
src/HAB/Solr/Response/Json/RecordCollection.php
with
76 additions
and
3 deletions
src/HAB/Solr/Response/Json/Group.php
0 → 100644
+
63
−
0
View file @
64d4fe0a
<?php
/**
* This file is part of HAB Solr.
*
* HAB Solr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HAB Solr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HAB Solr. If not, see <http://www.gnu.org/licenses/>.
*
* @author David Maus <maus@hab.de>
* @copyright (c) 2017 by Herzog August Bibliothek Wolfenbüttel
* @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v3 or higher
*/
namespace
HAB\Solr\Response\Json
;
use
Countable
;
/**
* Result group.
*
* @author David Maus <maus@hab.de>
* @copyright (c) 2017 by Herzog August Bibliothek Wolfenbüttel
* @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v3 or higher
*/
class
Group
implements
Countable
{
private
$groupValue
;
private
$records
;
public
function
__construct
(
array
$group
)
{
$this
->
groupValue
=
$group
[
'groupValue'
];
$this
->
records
=
array
();
foreach
(
$group
[
'doclist'
][
'docs'
]
as
$record
)
{
$this
->
records
[]
=
new
Record
(
$record
);
}
}
public
function
getGroupValue
()
{
return
$this
->
groupValue
;
}
public
function
count
()
{
return
count
(
$this
->
records
);
}
public
function
getRecords
()
{
return
$this
->
records
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/HAB/Solr/Response/Json/RecordCollection.php
+
13
−
3
View file @
64d4fe0a
...
...
@@ -51,7 +51,7 @@ class RecordCollection implements Iterator
*/
protected
static
$template
=
array
(
'responseHeader'
=>
array
(),
'response'
=>
array
(
'numFound'
=>
0
,
'start'
=>
0
),
'response'
=>
array
(
'numFound'
=>
0
,
'start'
=>
0
,
'docs'
=>
array
()
),
'spellcheck'
=>
array
(
'suggestions'
=>
array
()),
'facet_counts'
=>
array
(),
);
...
...
@@ -275,8 +275,18 @@ class RecordCollection implements Iterator
*/
public
function
getGroups
()
{
return
isset
(
$this
->
response
[
'grouped'
])
?
$this
->
response
[
'grouped'
]
:
array
();
if
(
is_null
(
$this
->
groups
))
{
$this
->
groups
=
array
();
if
(
isset
(
$this
->
response
[
'grouped'
]))
{
foreach
(
$this
->
response
[
'grouped'
]
as
$field
=>
$group
)
{
$this
->
groups
[
$field
]
=
array
();
foreach
(
$group
[
'groups'
]
as
$data
)
{
$this
->
groups
[
$field
]
[]
=
new
Group
(
$data
);
}
}
}
}
return
$this
->
groups
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment