Browse Source

rename index action dependencies

main
yggverse 8 months ago
parent
commit
ebeef559ba
  1. 2
      example/config.json
  2. 4
      src/cli/document/crawl.php
  3. 2
      src/cli/index/init.php
  4. 16
      src/webui/explore.php

2
example/config.json

@ -122,7 +122,7 @@ @@ -122,7 +122,7 @@
}
]
},
"reindex":
"index":
{
"enabled":true
}

4
src/cli/document/crawl.php

@ -87,7 +87,7 @@ if ($config->cli->document->crawl->debug->level->notice) @@ -87,7 +87,7 @@ if ($config->cli->document->crawl->debug->level->notice)
foreach($index->search('')
->expression('random', 'rand()')
->sort('reindex', 'desc')
->sort('index', 'desc')
->sort('time', 'asc')
->sort('rank', 'asc')
->sort('random', 'asc')
@ -108,7 +108,7 @@ foreach($index->search('') @@ -108,7 +108,7 @@ foreach($index->search('')
'mime' => $document->get('mime'),
'rank' => $document->get('rank'),
'time' => $time,
'reindex' => 0
'index' => 0
];
// Debug target

2
src/cli/index/init.php

@ -88,7 +88,7 @@ $result = $index->create( @@ -88,7 +88,7 @@ $result = $index->create(
[
'type' => 'integer'
],
'reindex' =>
'index' =>
[
'type' => 'integer'
]

16
src/webui/explore.php

@ -178,8 +178,8 @@ foreach ($config->snap->storage->remote->ftp as $i => $ftp) @@ -178,8 +178,8 @@ foreach ($config->snap->storage->remote->ftp as $i => $ftp)
}
}
// Process reindex request
if ($config->webui->reindex->enabled)
// Process index request
if ($config->webui->index->enabled)
{
session_start();
@ -187,7 +187,7 @@ if ($config->webui->reindex->enabled) @@ -187,7 +187,7 @@ if ($config->webui->reindex->enabled)
{
$index->updateDocument(
[
'reindex' => time()
'index' => time()
],
$document->getId()
);
@ -488,14 +488,14 @@ if ($config->webui->reindex->enabled) @@ -488,14 +488,14 @@ if ($config->webui->reindex->enabled)
<h3><?php echo _('Cache') ?></h3>
<pre><?php echo htmlentities($document->body) ?></pre>
<?php } ?>
<?php if ($config->webui->reindex->enabled && $document->get('time')) { ?>
<h3><?php echo _('Reindex') ?></h3>
<?php if ($config->webui->index->enabled && $document->get('time')) { ?>
<h3><?php echo _('Index') ?></h3>
<div>
<?php if ($document->get('reindex')) { ?>
<?php echo sprintf(_('Request sent at %s'), date('c', $document->get('reindex'))) ?>
<?php if ($document->get('index')) { ?>
<?php echo sprintf(_('Request sent at %s'), date('c', $document->get('index'))) ?>
<?php } else { ?>
<img src="<?php echo $captcha->inline(100) ?>" alt="captcha" />
<form name="reindex" method="POST" action="explore.php?i=<?php echo $document->getId() ?>">
<form name="index" method="POST" action="explore.php?i=<?php echo $document->getId() ?>">
<fieldset>
<input type="text"
name="captcha"

Loading…
Cancel
Save