View file upload/engine/inc/rebuild.php

File size: 10.3Kb
<?php
/*
=====================================================
 DataLife Engine - by SoftNews Media Group 
-----------------------------------------------------
 https://dle-news.ru/
-----------------------------------------------------
 Copyright (c) 2004-2025 SoftNews Media Group
=====================================================
 This code is protected by copyright
=====================================================
 File: rebuild.php
-----------------------------------------------------
 Use: Rebuild news
=====================================================
*/

if( !defined( 'DATALIFEENGINE' ) OR !defined( 'LOGGED_IN' ) ) {
	header( "HTTP/1.1 403 Forbidden" );
	header ( 'Location: ../../' );
	die( "Hacking attempt!" );
}

if($member_id['user_group'] != 1){ msg("error", $lang['addnews_denied'], $lang['db_denied']); }

$db->query( "INSERT INTO " . USERPREFIX . "_admin_logs (name, date, ip, action, extras) values ('".$db->safesql($member_id['name'])."', '{$_TIME}', '{$_IP}', '49', '')" );

$row = $db->super_query( "SELECT COUNT(*) as count FROM " . PREFIX . "_post" );

echoheader("<i class=\"fa fa-refresh position-left\"></i><span class=\"text-semibold\">{$lang['opt_srebuild']}</span>", $lang['header_re_1']);

echo <<<HTML
<div class="panel panel-default">
  <div class="panel-heading">
    {$lang['opt_srebuild']}
  </div>

	<div class="panel-body">
	  {$lang['rebuild_info']}
	</div>

	<div class="panel-body">
		<div class="progress">
        <div id="progressbar" class="progress-bar progress-blue" style="width:0%;"><span></span></div>
    </div>
	<div class="form-group">
		{$lang['rebuild_s_1']}&nbsp;&nbsp;<input type="text" class="form-control" style="width:90px;" name="start_from" id="start_from" value="0">&nbsp;&nbsp;{$lang['rebuild_s_2']}
	</div>
	<div class="form-group">
		{$lang['rebuild_s_4']}&nbsp;&nbsp;<input type="text" class="form-control" style="width:90px;" name="count_per_step" id="count_per_step" value="100"><i class="help-button visible-lg-inline-block text-primary-600 fa fa-question-circle position-right" data-rel="popover" data-trigger="hover" data-placement="auto right" data-content="{$lang['rebuild_s_5']}"></i>
	</div>
	</div>
	<div class="panel-body">
		{$lang['stat_allnews']}&nbsp;{$row['count']},&nbsp;{$lang['rebuild_count']}&nbsp;<span class="text-danger"><span id="newscount">0</span></span>&nbsp;<span id="progress"></span>
	</div>
	<div class="panel-footer">
	  <input type="submit" id="button" class="btn bg-teal btn-sm btn-raised" value="{$lang['rebuild_start']}"><input type="hidden" id="rebuild_ok" name="rebuild_ok" value="0">
	</div>
</div>
<script>

  var total = {$row['count']};

	$(function() {

		$('#button').click(function() {

			$("#progress").ajaxError(function(event, request, settings){
			   $(this).html('{$lang['nl_error']}');
				$('#button').attr("disabled", false);
			 });

			$('#progress').html('{$lang['rebuild_status']}');
			$('#button').attr("disabled", "disabled");
			$('#button').val("{$lang['rebuild_forw']}");
			var start_count = 0;
			
			if ( $('#start_from').val() > 0 &&  $('#start_from').val() < total ) {
				start_count = $('#start_from').val();
			} else {
				start_count = $('#rebuild_ok').val();
			}
			
			senden( start_count );
			return false;
		});

	});

function senden( startfrom ){
	var count_per_step = 100;

	if ( $('#count_per_step').val() > 0 ) {
		count_per_step = $('#count_per_step').val();
	}

	$.post("index.php?controller=ajax&mod=rebuild&user_hash={$dle_login_hash}", { startfrom: startfrom, count_per_step: count_per_step },
		function(data){

			if (data) {

				if (data.status == "ok") {

					$('#newscount').html(data.rebuildcount);
					$('#rebuild_ok').val(data.rebuildcount);

					var proc = Math.round( (100 * data.rebuildcount) / total );

					if ( proc > 100 ) proc = 100;

					$('#progressbar').css( "width", proc + '%' );


			         if (data.rebuildcount >= total) 
			         {
			              $('#progress').html('{$lang['rebuild_status_ok']}');
			         }
			         else 
			         { 
			              senden(data.rebuildcount);
			         }


				}

			}
		}, "json").fail(function() {
						$('#progress').html('{$lang['nl_error']}');
						$('#button').attr("disabled", false);
					});

	return false;
}
</script>
HTML;

$row = $db->super_query( "SELECT COUNT(*) as count FROM " . PREFIX . "_comments" );

echo <<<HTML
<div class="panel panel-default">
  <div class="panel-heading">
    {$lang['opt_crebuild']}
  </div>

	<div class="panel-body">
	  {$lang['rebuild_cinfo']}
	</div>

	<div class="panel-body">
		<div class="progress">
        <div id="progressbar3" class="progress-bar progress-blue" style="width:0%;"><span></span></div>
    </div>
	<div class="form-group">
		{$lang['rebuild_s_1']}&nbsp;&nbsp;<input type="text" class="form-control" style="width:90px;" name="start_from3" id="start_from3" value="0">&nbsp;&nbsp;{$lang['rebuild_s_3']}
	</div>	
	<div class="form-group">
		{$lang['rebuild_s_6']}&nbsp;&nbsp;<input type="text" class="form-control" style="width:90px;" name="count_per_step3" id="count_per_step3" value="500"><i class="help-button visible-lg-inline-block text-primary-600 fa fa-question-circle position-right" data-rel="popover" data-trigger="hover" data-placement="auto right" data-content="{$lang['rebuild_s_7']}"></i>
	</div>
	</div>
	<div class="panel-body">
		{$lang['stat_comments']}&nbsp;{$row['count']},&nbsp;{$lang['rebuild_count']}&nbsp;<span class="text-danger"><span id="newscount3">0</span></span>&nbsp;<span id="progress3"></span>
	</div>
	<div class="panel-footer">
	  <input type="submit" id="button3" class="btn bg-teal btn-sm btn-raised" value="{$lang['rebuild_start']}"><input type="hidden" id="rebuild_ok3" name="rebuild_ok3" value="0">
	</div>
</div>
<script>

  var total3 = {$row['count']};

	$(function() {

		$('#button3').click(function() {

			$("#progress3").ajaxError(function(event, request, settings){
			   $(this).html('{$lang['nl_error']}');
				$('#button3').attr("disabled", false);
			 });

			$('#progress3').html('{$lang['rebuild_status']}');
			$('#button3').attr("disabled", "disabled");
			$('#button3').val("{$lang['rebuild_forw']}");
			var start_count = 0;
			
			if ( $('#start_from3').val() > 0 &&  $('#start_from3').val() < total3 ) {
				start_count = $('#start_from3').val();
			} else {
				start_count = $('#rebuild_ok3').val();
			}
			
			senden_comments( start_count );
			return false;
		});

	});

function senden_comments( startfrom ) {
	var count_per_step = 500;

	if ( $('#count_per_step3').val() > 0 ) {
		count_per_step = $('#count_per_step3').val();
	}

	$.post("index.php?controller=ajax&mod=rebuild&user_hash={$dle_login_hash}", { startfrom: startfrom, count_per_step: count_per_step, area: 'comments' },
		function(data){

			if (data) {

				if (data.status == "ok") {

					$('#newscount3').html(data.rebuildcount);
					$('#rebuild_ok3').val(data.rebuildcount);

					var proc = Math.round( (100 * data.rebuildcount) / total3 );

					if ( proc > 100 ) proc = 100;

					$('#progressbar3').css( "width", proc + '%' );


			         if (data.rebuildcount >= total3) 
			         {
			              $('#progress3').html('{$lang['rebuild_status_ok']}');
			         }
			         else 
			         { 
			              senden_comments(data.rebuildcount);
			         }


				}

			}
		}, "json").fail(function() {
						$('#progress3').html('{$lang['nl_error']}');
						$('#button3').attr("disabled", false);
					});

	return false;
}
</script>
HTML;

$row = $db->super_query( "SELECT COUNT(*) as count FROM " . PREFIX . "_static WHERE allow_br !='2'" );

echo <<<HTML
<div class="panel panel-default">
  <div class="panel-heading">
    {$lang['opt_statrebuild']}
  </div>

	<div class="panel-body">
	 {$lang['rebuild_stat_info']}
	</div>
	<div class="panel-body">
		<div class="progress">
          <div id="progressbar2" class="progress-bar progress-blue" style="width:0%;"><span></span></div>
        </div>
		{$lang['stat_allstaic']}&nbsp;{$row['count']},&nbsp;{$lang['rebuild_count']}&nbsp;<span class="text-danger"><span id="statcount">0</span></span>&nbsp;<span id="statprogress"></span>
	</div>
	<div class="panel-footer">
	  <input type="submit" id="button2" class="btn bg-teal btn-sm btn-raised" value="{$lang['rebuild_start']}"><input type="hidden" id="rebuild_ok2" name="rebuild_ok2" value="0">
	</div>	
</div>
<script>

  var total2 = {$row['count']};

	$(function() {

		$('#button2').click(function() {

			$("#statprogress").ajaxError(function(event, request, settings){
			   $(this).html('{$lang['nl_error']}');
				$('#button2').attr("disabled", false);
			 });


			$('#statprogress').html('{$lang['rebuild_status']}');
			$('#button2').attr("disabled", "disabled");
			$('#button2').val("{$lang['rebuild_forw']}");
			senden_stat( $('#rebuild_ok2').val() );
			return false;
		});

	});

function senden_stat( startfrom ){

	$.post("index.php?controller=ajax&mod=rebuild&user_hash={$dle_login_hash}", { startfrom: startfrom, area: 'static' },
		function(data){

			if (data) {

				if (data.status == "ok") {

					$('#statcount').html(data.rebuildcount);
					$('#rebuild_ok2').val(data.rebuildcount);

					var proc = Math.round( (100 * data.rebuildcount) / total2 );

					if ( proc > 100 ) proc = 100;

					$('#progressbar2').css( "width", proc + '%' );

			         if (data.rebuildcount >= total2) 
			         {
			              $('#statprogress').html('{$lang['rebuild_status_ok']}');
			         }
			         else 
			         { 
			              senden_stat(data.rebuildcount);
			         }


				}

			}
		}, "json");

	return false;
}
</script>
HTML;


echo <<<HTML
<div class="panel panel-default">
  <div class="panel-heading">
    {$lang['opt_relrebuild']}
  </div>
	<div class="panel-body">
	 {$lang['rebuild_rel_info']}
	</div>
	<div class="panel-footer">
	  <input type="submit" id="button4" class="btn bg-teal btn-sm btn-raised" value="{$lang['rebuild_start']}">&nbsp;<span id="relprogress"></span>
	</div>	
</div>
<script>

	$(function() {

		$('#button4').click(function() {

			$('#relprogress').html('{$lang['rebuild_status']}');
			$('#button4').attr("disabled", "disabled");

			$.post("index.php?controller=ajax&mod=rebuild&user_hash={$dle_login_hash}", { area: 'related' },
				function(data){
		
					if (data) {
		
						if (data.status == "ok") {
		
							$('#relprogress').html('{$lang['rebuild_status_ok']}');
		
						}
		
					}
				}, "json");

			return false;
		});

	});
</script>
HTML;

echofooter();
?>