Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96213000
PhabricatorSearchIndexController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Dec 23, 20:09
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 20:09 (2 d)
Engine
blob
Format
Raw Data
Handle
23138334
Attached To
rPH Phabricator
PhabricatorSearchIndexController.php
View Options
<?php
/*
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @group search
*/
class
PhabricatorSearchIndexController
extends
PhabricatorSearchBaseController
{
private
$phid
;
public
function
shouldRequireAdmin
()
{
// This basically shows you all the text of any object in the system, so
// make it admin-only.
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
phid
=
$data
[
'phid'
];
}
public
function
processRequest
()
{
$engine
=
PhabricatorSearchEngineSelector
::
newSelector
()->
newEngine
();
$document
=
$engine
->
reconstructDocument
(
$this
->
phid
);
if
(!
$document
)
{
return
new
Aphront404Response
();
}
$panels
=
array
();
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Abstract Document Index'
);
$props
=
array
(
'PHID'
=>
phutil_escape_html
(
$document
->
getPHID
()),
'Title'
=>
phutil_escape_html
(
$document
->
getDocumentTitle
()),
'Type'
=>
phutil_escape_html
(
$document
->
getDocumentType
()),
);
$rows
=
array
();
foreach
(
$props
as
$name
=>
$value
)
{
$rows
[]
=
array
(
$name
,
$value
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setColumnClasses
(
array
(
'header'
,
''
,
));
$panel
->
appendChild
(
$table
);
$panels
[]
=
$panel
;
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Document Fields'
);
$fields
=
$document
->
getFieldData
();
$rows
=
array
();
foreach
(
$fields
as
$field
)
{
list
(
$name
,
$corpus
,
$aux_phid
)
=
$field
;
$rows
[]
=
array
(
phutil_escape_html
(
$name
),
phutil_escape_html
(
nonempty
(
$aux_phid
,
null
)),
str_replace
(
"
\n
"
,
'<br />'
,
phutil_escape_html
(
$corpus
)),
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setHeaders
(
array
(
'Field'
,
'Aux PHID'
,
'Corpus'
,
));
$table
->
setColumnClasses
(
array
(
''
,
''
,
'wide'
,
));
$panel
->
appendChild
(
$table
);
$panels
[]
=
$panel
;
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Document Relationships'
);
$relationships
=
$document
->
getRelationshipData
();
$phids
=
ipull
(
$relationships
,
1
);
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$phids
))->
loadHandles
();
$rows
=
array
();
foreach
(
$relationships
as
$relationship
)
{
list
(
$type
,
$phid
,
$rtype
,
$time
)
=
$relationship
;
$rows
[]
=
array
(
phutil_escape_html
(
$type
),
phutil_escape_html
(
$phid
),
phutil_escape_html
(
$rtype
),
$handles
[
$phid
]->
renderLink
(),
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setHeaders
(
array
(
'Relationship'
,
'Related PHID'
,
'Related Type'
,
'Related Handle'
,
));
$table
->
setColumnClasses
(
array
(
''
,
''
,
''
,
'wide'
,
));
$panel
->
appendChild
(
$table
);
$panels
[]
=
$panel
;
return
$this
->
buildStandardPageResponse
(
$panels
,
array
(
'title'
=>
'Raw Index'
,
));
}
}
Event Timeline
Log In to Comment