post-update.php 43.1 KB
Newer Older
Scott committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<?php
/*
	Question2Answer by Gideon Greenspan and contributors
	http://www.question2answer.org/

	File: qa-include/qa-app-post-update.php
	Description: Changing questions, answer and comments (application level)


	This program 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 2
	of the License, or (at your option) any later version.

	This program 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.

	More about this license: http://www.question2answer.org/license.php
*/

	if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
		header('Location: ../');
		exit;
	}

Scott committed
28 29
	require_once QA_INCLUDE_DIR.'app/post-create.php';
	require_once QA_INCLUDE_DIR.'app/updates.php';
Scott committed
30 31 32 33
	require_once QA_INCLUDE_DIR.'db/post-create.php';
	require_once QA_INCLUDE_DIR.'db/post-update.php';
	require_once QA_INCLUDE_DIR.'db/points.php';
	require_once QA_INCLUDE_DIR.'db/hotness.php';
Scott committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63


	define('QA_POST_STATUS_NORMAL', 0);
	define('QA_POST_STATUS_HIDDEN', 1);
	define('QA_POST_STATUS_QUEUED', 2);


	function qa_question_set_content($oldquestion, $title, $content, $format, $text, $tagstring, $notify, $userid, $handle, $cookieid, $extravalue=null, $name=null, $remoderate=false, $silent=false)
/*
	Change the fields of a question (application level) to $title, $content, $format, $tagstring, $notify, $extravalue
	and $name, then reindex based on $text. For backwards compatibility if $name is null then the name will not be
	changed. Pass the question's database record before changes in $oldquestion and details of the user doing this in
	$userid, $handle and $cookieid. Set $remoderate to true if the question should be requeued for moderation if
	modified. Set $silent to true to not mark the question as edited. Reports event as appropriate. See qa-app-posts.php
	for a higher-level function which is easier to use.
*/
	{
		qa_post_unindex($oldquestion['postid']);

		$wasqueued = ($oldquestion['type'] == 'Q_QUEUED');
		$titlechanged = strcmp($oldquestion['title'], $title) !== 0;
		$contentchanged = strcmp($oldquestion['content'], $content) !== 0 || strcmp($oldquestion['format'], $format) !== 0;
		$tagschanged = strcmp($oldquestion['tags'], $tagstring) !== 0;
		$setupdated = ($titlechanged || $contentchanged || $tagschanged) && (!$wasqueued) && !$silent;

		qa_db_post_set_content($oldquestion['postid'], $title, $content, $format, $tagstring, $notify,
			$setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null,
			($titlechanged || $contentchanged) ? QA_UPDATE_CONTENT : QA_UPDATE_TAGS, $name);

		if (isset($extravalue)) {
Scott committed
64
			require_once QA_INCLUDE_DIR.'db/metas.php';
Scott committed
65 66 67 68
			qa_db_postmeta_set($oldquestion['postid'], 'qa_q_extra', $extravalue);
		}

		if ($setupdated && $remoderate) {
Scott committed
69
			require_once QA_INCLUDE_DIR.'app/posts.php';
Scott committed
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

			$answers = qa_post_get_question_answers($oldquestion['postid']);
			$commentsfollows = qa_post_get_question_commentsfollows($oldquestion['postid']);
			$closepost = qa_post_get_question_closepost($oldquestion['postid']);

			foreach ($answers as $answer)
				qa_post_unindex($answer['postid']);

			foreach ($commentsfollows as $comment) {
				if ($comment['basetype'] == 'C')
					qa_post_unindex($comment['postid']);
			}

			if (@$closepost['parentid'] == $oldquestion['postid'])
				qa_post_unindex($closepost['postid']);

			qa_db_post_set_type($oldquestion['postid'], 'Q_QUEUED');
			qa_update_counts_for_q($oldquestion['postid']);
			qa_db_queuedcount_update();
			qa_db_points_update_ifuser($oldquestion['userid'], array('qposts', 'aselects'));

			if ($oldquestion['flagcount'])
				qa_db_flaggedcount_update();

		}
95
		elseif ($oldquestion['type'] == 'Q') { // not hidden or queued
Scott committed
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
			qa_post_index($oldquestion['postid'], 'Q', $oldquestion['postid'], $oldquestion['parentid'], $title, $content, $format, $text, $tagstring, $oldquestion['categoryid']);
		}

		$eventparams=array(
			'postid' => $oldquestion['postid'],
			'title' => $title,
			'content' => $content,
			'format' => $format,
			'text' => $text,
			'tags' => $tagstring,
			'extra' => $extravalue,
			'name' => $name,
			'oldquestion' => $oldquestion,
		);

		qa_report_event('q_edit', $userid, $handle, $cookieid, $eventparams + array(
			'silent' => $silent,
			'oldtitle' => $oldquestion['title'],
			'oldcontent' => $oldquestion['content'],
			'oldformat' => $oldquestion['format'],
			'oldtags' => $oldquestion['tags'],
			'titlechanged' => $titlechanged,
			'contentchanged' => $contentchanged,
			'tagschanged' => $tagschanged,
		));

		if ($setupdated && $remoderate)
			qa_report_event('q_requeue', $userid, $handle, $cookieid, $eventparams);
	}


	function qa_question_set_selchildid($userid, $handle, $cookieid, $oldquestion, $selchildid, $answers)
/*
	Set the selected answer (application level) of $oldquestion to $selchildid. Pass details of the user doing this
	in $userid, $handle and $cookieid, and the database records for all answers to the question in $answers.
	Handles user points values and notifications.
	See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		$oldselchildid=$oldquestion['selchildid'];

		qa_db_post_set_selchildid($oldquestion['postid'], isset($selchildid) ? $selchildid : null, $userid, qa_remote_ip_address());
		qa_db_points_update_ifuser($oldquestion['userid'], 'aselects');
		qa_db_unselqcount_update();

		if (isset($oldselchildid) && isset($answers[$oldselchildid])) {
			qa_db_points_update_ifuser($answers[$oldselchildid]['userid'], 'aselecteds');

			qa_report_event('a_unselect', $userid, $handle, $cookieid, array(
				'parentid' => $oldquestion['postid'],
				'parent' => $oldquestion,
				'postid' => $oldselchildid,
				'answer' => $answers[$oldselchildid],
			));
		}

		if (isset($selchildid)) {
			qa_db_points_update_ifuser($answers[$selchildid]['userid'], 'aselecteds');

			qa_report_event('a_select', $userid, $handle, $cookieid, array(
				'parentid' => $oldquestion['postid'],
				'parent' => $oldquestion,
				'postid' => $selchildid,
				'answer' => $answers[$selchildid],
			));
		}
	}


	function qa_question_close_clear($oldquestion, $oldclosepost, $userid, $handle, $cookieid)
/*
	Reopen $oldquestion if it was closed. Pass details of the user doing this in $userid, $handle and $cookieid, and the
	$oldclosepost (to match $oldquestion['closedbyid']) if any.
	See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		if (isset($oldquestion['closedbyid'])) {
			qa_db_post_set_closed($oldquestion['postid'], null, $userid, qa_remote_ip_address());

			if (isset($oldclosepost) && ($oldclosepost['parentid']==$oldquestion['postid'])) {
				qa_post_unindex($oldclosepost['postid']);
				qa_db_post_delete($oldclosepost['postid']);
			}

			qa_report_event('q_reopen', $userid, $handle, $cookieid, array(
				'postid' => $oldquestion['postid'],
				'oldquestion' => $oldquestion,
			));
		}
	}


	function qa_question_close_duplicate($oldquestion, $oldclosepost, $originalpostid, $userid, $handle, $cookieid)
/*
	Close $oldquestion as a duplicate of the question with id $originalpostid. Pass details of the user doing this in
	$userid, $handle and $cookieid, and the $oldclosepost (to match $oldquestion['closedbyid']) if any. See
	qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		qa_question_close_clear($oldquestion, $oldclosepost, $userid, $handle, $cookieid);

		qa_db_post_set_closed($oldquestion['postid'], $originalpostid, $userid, qa_remote_ip_address());

		qa_report_event('q_close', $userid, $handle, $cookieid, array(
			'postid' => $oldquestion['postid'],
			'oldquestion' => $oldquestion,
			'reason' => 'duplicate',
			'originalid' => $originalpostid,
		));
	}


	function qa_question_close_other($oldquestion, $oldclosepost, $note, $userid, $handle, $cookieid)
/*
	Close $oldquestion with the reason given in $note. Pass details of the user doing this in $userid, $handle and
	$cookieid, and the $oldclosepost (to match $oldquestion['closedbyid']) if any.
	See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		qa_question_close_clear($oldquestion, $oldclosepost, $userid, $handle, $cookieid);

		$postid=qa_db_post_create('NOTE', $oldquestion['postid'], $userid, isset($userid) ? null : $cookieid,
			qa_remote_ip_address(), null, $note, '', null, null, $oldquestion['categoryid']);

		qa_db_posts_calc_category_path($postid);

		if ($oldquestion['type']=='Q')
			qa_post_index($postid, 'NOTE', $oldquestion['postid'], $oldquestion['postid'], null, $note, '', $note, null, $oldquestion['categoryid']);

		qa_db_post_set_closed($oldquestion['postid'], $postid, $userid, qa_remote_ip_address());

		qa_report_event('q_close', $userid, $handle, $cookieid, array(
			'postid' => $oldquestion['postid'],
			'oldquestion' => $oldquestion,
			'reason' => 'other',
			'note' => $note,
		));
	}


	function qa_question_set_hidden($oldquestion, $hidden, $userid, $handle, $cookieid, $answers, $commentsfollows, $closepost=null)
/*
	Set $oldquestion to hidden if $hidden is true, visible/normal if otherwise. All other parameters are as for qa_question_set_status(...)
	This function is included mainly for backwards compatibility.
*/
	{
		qa_question_set_status($oldquestion, $hidden ? QA_POST_STATUS_HIDDEN : QA_POST_STATUS_NORMAL, $userid, $handle, $cookieid, $answers, $commentsfollows, $closepost);
	}


	function qa_question_set_status($oldquestion, $status, $userid, $handle, $cookieid, $answers, $commentsfollows, $closepost=null)
/*
	Set the status (application level) of $oldquestion to $status, one of the QA_POST_STATUS_* constants above. Pass
	details of the user doing this in $userid, $handle and $cookieid, the database records for all answers to the
	question in $answers, the database records for all comments on the question or the question's answers in
	$commentsfollows ($commentsfollows can also contain records for follow-on questions which are ignored), and
	$closepost to match $oldquestion['closedbyid'] (if any). Handles indexing, user points, cached counts and event
	reports. See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
Scott committed
256 257
		require_once QA_INCLUDE_DIR.'app/format.php';
		require_once QA_INCLUDE_DIR.'app/updates.php';
Scott committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365

		$washidden=($oldquestion['type']=='Q_HIDDEN');
		$wasqueued=($oldquestion['type']=='Q_QUEUED');
		$wasrequeued=$wasqueued && isset($oldquestion['updated']);

		qa_post_unindex($oldquestion['postid']);

		foreach ($answers as $answer)
			qa_post_unindex($answer['postid']);

		foreach ($commentsfollows as $comment)
			if ($comment['basetype']=='C')
				qa_post_unindex($comment['postid']);

		if (@$closepost['parentid']==$oldquestion['postid'])
			qa_post_unindex($closepost['postid']);

		$setupdated=false;
		$event=null;

		if ($status==QA_POST_STATUS_QUEUED) {
			$newtype='Q_QUEUED';
			if (!$wasqueued)
				$event='q_requeue'; // same event whether it was hidden or shown before

		} elseif ($status==QA_POST_STATUS_HIDDEN) {
			$newtype='Q_HIDDEN';
			if (!$washidden) {
				$event=$wasqueued ? 'q_reject' : 'q_hide';
				if (!$wasqueued)
					$setupdated=true;
			}

		} elseif ($status==QA_POST_STATUS_NORMAL) {
			$newtype='Q';
			if ($wasqueued)
				$event='q_approve';
			elseif ($washidden) {
				$event='q_reshow';
				$setupdated=true;
			}

		} else
			qa_fatal_error('Unknown status in qa_question_set_status(): '.$status);

		qa_db_post_set_type($oldquestion['postid'], $newtype, $setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null, QA_UPDATE_VISIBLE);

		if ( $wasqueued && ($status==QA_POST_STATUS_NORMAL) && qa_opt('moderate_update_time') ) { // ... for approval of a post, can set time to now instead
			if ($wasrequeued) // reset edit time to now if there was one, since we're approving the edit...
				qa_db_post_set_updated($oldquestion['postid'], null);

			else { // ... otherwise we're approving original created post
				qa_db_post_set_created($oldquestion['postid'], null);
				qa_db_hotness_update($oldquestion['postid']);
			}
		}

		qa_update_counts_for_q($oldquestion['postid']);
		qa_db_points_update_ifuser($oldquestion['userid'], array('qposts', 'aselects'));

		if ($wasqueued || ($status==QA_POST_STATUS_QUEUED))
			qa_db_queuedcount_update();

		if ($oldquestion['flagcount'])
			qa_db_flaggedcount_update();

		if ($status==QA_POST_STATUS_NORMAL) {
			qa_post_index($oldquestion['postid'], 'Q', $oldquestion['postid'], $oldquestion['parentid'], $oldquestion['title'], $oldquestion['content'],
				$oldquestion['format'], qa_viewer_text($oldquestion['content'], $oldquestion['format']), $oldquestion['tags'], $oldquestion['categoryid']);

			foreach ($answers as $answer)
				if ($answer['type']=='A') // even if question visible, don't index hidden or queued answers
					qa_post_index($answer['postid'], $answer['type'], $oldquestion['postid'], $answer['parentid'], null,
						$answer['content'], $answer['format'], qa_viewer_text($answer['content'], $answer['format']), null, $answer['categoryid']);

			foreach ($commentsfollows as $comment)
				if ($comment['type']=='C') {
					$answer=@$answers[$comment['parentid']];

					if ( (!isset($answer)) || ($answer['type']=='A') ) // don't index comment if it or its parent is hidden
						qa_post_index($comment['postid'], $comment['type'], $oldquestion['postid'], $comment['parentid'], null,
							$comment['content'], $comment['format'], qa_viewer_text($comment['content'], $comment['format']), null, $comment['categoryid']);
				}

			if ($closepost['parentid']==$oldquestion['postid'])
				qa_post_index($closepost['postid'], $closepost['type'], $oldquestion['postid'], $closepost['parentid'], null,
					$closepost['content'], $closepost['format'], qa_viewer_text($closepost['content'], $closepost['format']), null, $closepost['categoryid']);
		}

		$eventparams=array(
			'postid' => $oldquestion['postid'],
			'parentid' => $oldquestion['parentid'],
			'parent' => isset($oldquestion['parentid']) ? qa_db_single_select(qa_db_full_post_selectspec(null, $oldquestion['parentid'])) : null,
			'title' => $oldquestion['title'],
			'content' => $oldquestion['content'],
			'format' => $oldquestion['format'],
			'text' => qa_viewer_text($oldquestion['content'], $oldquestion['format']),
			'tags' => $oldquestion['tags'],
			'categoryid' => $oldquestion['categoryid'],
			'name' => $oldquestion['name'],
		);

		if (isset($event))
			qa_report_event($event, $userid, $handle, $cookieid, $eventparams + array(
				'oldquestion' => $oldquestion,
			));

		if ($wasqueued && ($status==QA_POST_STATUS_NORMAL) && !$wasrequeued) {
Scott committed
366
			require_once QA_INCLUDE_DIR.'db/selects.php';
Scott committed
367
			require_once QA_INCLUDE_DIR.'util/string.php';
Scott committed
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434

			qa_report_event('q_post', $oldquestion['userid'], $oldquestion['handle'], $oldquestion['cookieid'], $eventparams + array(
				'notify' => isset($oldquestion['notify']),
				'email' => qa_email_validate($oldquestion['notify']) ? $oldquestion['notify'] : null,
				'delayed' => $oldquestion['created'],
			));
		}
	}


	function qa_question_set_category($oldquestion, $categoryid, $userid, $handle, $cookieid, $answers, $commentsfollows, $closepost=null, $silent=false)
/*
	Sets the category (application level) of $oldquestion to $categoryid. Pass details of the user doing this in
	$userid, $handle and $cookieid, the database records for all answers to the question in $answers, the database
	records for all comments on the question or the question's answers in $commentsfollows ($commentsfollows can also
	contain records for follow-on questions which are ignored), and $closepost to match $oldquestion['closedbyid'] (if any).
	Set $silent to true to not mark the question as edited. Handles cached counts and event reports and will reset category
	IDs and paths for all answers and comments. See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		$oldpath=qa_db_post_get_category_path($oldquestion['postid']);

		qa_db_post_set_category($oldquestion['postid'], $categoryid, $silent ? null : $userid, $silent ? null : qa_remote_ip_address());
		qa_db_posts_calc_category_path($oldquestion['postid']);

		$newpath=qa_db_post_get_category_path($oldquestion['postid']);

		qa_db_category_path_qcount_update($oldpath);
		qa_db_category_path_qcount_update($newpath);

		$otherpostids=array();
		foreach ($answers as $answer)
			$otherpostids[]=$answer['postid'];

		foreach ($commentsfollows as $comment)
			if ($comment['basetype']=='C')
				$otherpostids[]=$comment['postid'];

		if (@$closepost['parentid']==$oldquestion['postid'])
			$otherpostids[]=$closepost['postid'];

		qa_db_posts_set_category_path($otherpostids, $newpath);

		$searchmodules=qa_load_modules_with('search', 'move_post');
		foreach ($searchmodules as $searchmodule) {
			$searchmodule->move_post($oldquestion['postid'], $categoryid);
			foreach ($otherpostids as $otherpostid)
				$searchmodule->move_post($otherpostid, $categoryid);
		}

		qa_report_event('q_move', $userid, $handle, $cookieid, array(
			'postid' => $oldquestion['postid'],
			'oldquestion' => $oldquestion,
			'categoryid' => $categoryid,
			'oldcategoryid' => $oldquestion['categoryid'],
		));
	}


	function qa_question_delete($oldquestion, $userid, $handle, $cookieid, $oldclosepost=null)
/*
	Permanently delete a question (application level) from the database. The question must not have any answers or
	comments on it. Pass details of the user doing this in $userid, $handle and $cookieid, and $closepost to match
	$oldquestion['closedbyid'] (if any). Handles unindexing, votes, points, cached counts and event reports.
	See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
Scott committed
435
		require_once QA_INCLUDE_DIR.'db/votes.php';
Scott committed
436 437 438 439

		if ($oldquestion['type']!='Q_HIDDEN')
			qa_fatal_error('Tried to delete a non-hidden question');

440 441
		qa_report_event('q_delete_before', $userid, $handle, $cookieid, $params);

Scott committed
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
		if (isset($oldclosepost) && ($oldclosepost['parentid']==$oldquestion['postid'])) {
			qa_db_post_set_closed($oldquestion['postid'], null); // for foreign key constraint
			qa_post_unindex($oldclosepost['postid']);
			qa_db_post_delete($oldclosepost['postid']);
		}

		$useridvotes=qa_db_uservote_post_get($oldquestion['postid']);
		$oldpath=qa_db_post_get_category_path($oldquestion['postid']);

		$params = array(
			'postid' => $oldquestion['postid'],
			'oldquestion' => $oldquestion,
		);

		qa_post_unindex($oldquestion['postid']);
		qa_db_post_delete($oldquestion['postid']); // also deletes any related voteds due to foreign key cascading
		qa_update_counts_for_q(null);
		qa_db_category_path_qcount_update($oldpath); // don't do inside qa_update_counts_for_q() since post no longer exists
		qa_db_points_update_ifuser($oldquestion['userid'], array('qposts', 'aselects', 'qvoteds', 'upvoteds', 'downvoteds'));

		foreach ($useridvotes as $voteruserid => $vote)
			qa_db_points_update_ifuser($voteruserid, ($vote>0) ? 'qupvotes' : 'qdownvotes');
				// could do this in one query like in qa_db_users_recalc_points() but this will do for now - unlikely to be many votes

		qa_report_event('q_delete', $userid, $handle, $cookieid, $params);
	}


	function qa_question_set_userid($oldquestion, $userid, $handle, $cookieid)
/*
	Set the author (application level) of $oldquestion to $userid and also pass $handle and $cookieid
	of user. Updates points and reports events as appropriate.
*/
	{
Scott committed
476
		require_once QA_INCLUDE_DIR.'db/votes.php';
Scott committed
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531

		$postid = $oldquestion['postid'];

		qa_db_post_set_userid($postid, $userid);
		qa_db_uservote_remove_own($postid);
		qa_db_post_recount_votes($postid);

		qa_db_points_update_ifuser($oldquestion['userid'], array('qposts', 'aselects', 'qvoteds', 'upvoteds', 'downvoteds'));
		qa_db_points_update_ifuser($userid, array('qposts', 'aselects', 'qvoteds', 'qupvotes', 'qdownvotes', 'upvoteds', 'downvoteds'));

		qa_report_event('q_claim', $userid, $handle, $cookieid, array(
			'postid' => $postid,
			'oldquestion' => $oldquestion,
		));
	}


	function qa_post_unindex($postid)
/*
	Remove post $postid from our index and update appropriate word counts. Calls through to all search modules.
*/
	{
		global $qa_post_indexing_suspended;

		if ($qa_post_indexing_suspended>0)
			return;

	//	Send through to any search modules for unindexing

		$searchmodules=qa_load_modules_with('search', 'unindex_post');
		foreach ($searchmodules as $searchmodule)
			$searchmodule->unindex_post($postid);
	}


	function qa_answer_set_content($oldanswer, $content, $format, $text, $notify, $userid, $handle, $cookieid, $question, $name=null, $remoderate=false, $silent=false)
/*
	Change the fields of an answer (application level) to $content, $format, $notify and $name, then reindex based on
	$text. For backwards compatibility if $name is null then the name will not be changed. Pass the answer's database
	record before changes in $oldanswer, the question's in $question, and details of the user doing this in $userid,
	$handle and $cookieid. Set $remoderate to true if the question should be requeued for moderation if modified. Set
	$silent to true to not mark the question as edited. Handle indexing and event reports as appropriate. See
	qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		qa_post_unindex($oldanswer['postid']);

		$wasqueued=($oldanswer['type']=='A_QUEUED');
		$contentchanged=strcmp($oldanswer['content'], $content) || strcmp($oldanswer['format'], $format);
		$setupdated=$contentchanged && (!$wasqueued) && !$silent;

		qa_db_post_set_content($oldanswer['postid'], $oldanswer['title'], $content, $format, $oldanswer['tags'], $notify,
			$setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null, QA_UPDATE_CONTENT, $name);

		if ($setupdated && $remoderate) {
Scott committed
532
			require_once QA_INCLUDE_DIR.'app/posts.php';
Scott committed
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593

			$commentsfollows=qa_post_get_answer_commentsfollows($oldanswer['postid']);

			foreach ($commentsfollows as $comment)
				if ( ($comment['basetype']=='C') && ($comment['parentid']==$oldanswer['postid']) )
					qa_post_unindex($comment['postid']);

			qa_db_post_set_type($oldanswer['postid'], 'A_QUEUED');
			qa_update_q_counts_for_a($question['postid']);
			qa_db_queuedcount_update();
			qa_db_points_update_ifuser($oldanswer['userid'], array('aposts', 'aselecteds'));

			if ($oldanswer['flagcount'])
				qa_db_flaggedcount_update();

		} elseif ( ($oldanswer['type']=='A') && ($question['type']=='Q') ) { // don't index if question or answer are hidden/queued
			qa_post_index($oldanswer['postid'], 'A', $question['postid'], $oldanswer['parentid'], null, $content, $format, $text, null, $oldanswer['categoryid']);
		}

		$eventparams=array(
			'postid' => $oldanswer['postid'],
			'parentid' => $oldanswer['parentid'],
			'parent' => $question,
			'content' => $content,
			'format' => $format,
			'text' => $text,
			'name' => $name,
			'oldanswer' => $oldanswer,
		);

		qa_report_event('a_edit', $userid, $handle, $cookieid, $eventparams + array(
			'silent' => $silent,
			'oldcontent' => $oldanswer['content'],
			'oldformat' => $oldanswer['format'],
			'contentchanged' => $contentchanged,
		));

		if ($setupdated && $remoderate)
			qa_report_event('a_requeue', $userid, $handle, $cookieid, $eventparams);
	}


	function qa_answer_set_hidden($oldanswer, $hidden, $userid, $handle, $cookieid, $question, $commentsfollows)
/*
	Set $oldanswer to hidden if $hidden is true, visible/normal if otherwise. All other parameters are as for qa_answer_set_status(...)
	This function is included mainly for backwards compatibility.
*/
	{
		qa_answer_set_status($oldanswer, $hidden ? QA_POST_STATUS_HIDDEN : QA_POST_STATUS_NORMAL, $userid, $handle, $cookieid, $question, $commentsfollows);
	}


	function qa_answer_set_status($oldanswer, $status, $userid, $handle, $cookieid, $question, $commentsfollows)
/*
	Set the status (application level) of $oldanswer to $status, one of the QA_POST_STATUS_* constants above. Pass
	details of the user doing this in $userid, $handle and $cookieid, the database record for the question in $question,
	and the database records for all comments on the answer in $commentsfollows ($commentsfollows can also contain other
	records which are ignored). Handles indexing, user points, cached counts and event reports. See qa-app-posts.php for
	a higher-level function which is easier to use.
*/
	{
Scott committed
594
		require_once QA_INCLUDE_DIR.'app/format.php';
Scott committed
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678

		$washidden=($oldanswer['type']=='A_HIDDEN');
		$wasqueued=($oldanswer['type']=='A_QUEUED');
		$wasrequeued=$wasqueued && isset($oldanswer['updated']);

		qa_post_unindex($oldanswer['postid']);

		foreach ($commentsfollows as $comment)
			if ( ($comment['basetype']=='C') && ($comment['parentid']==$oldanswer['postid']) )
				qa_post_unindex($comment['postid']);

		$setupdated=false;
		$event=null;

		if ($status==QA_POST_STATUS_QUEUED) {
			$newtype='A_QUEUED';
			if (!$wasqueued)
				$event='a_requeue'; // same event whether it was hidden or shown before

		} elseif ($status==QA_POST_STATUS_HIDDEN) {
			$newtype='A_HIDDEN';
			if (!$washidden) {
				$event=$wasqueued ? 'a_reject' : 'a_hide';
				if (!$wasqueued)
					$setupdated=true;
			}

		} elseif ($status==QA_POST_STATUS_NORMAL) {
			$newtype='A';
			if ($wasqueued)
				$event='a_approve';
			elseif ($washidden) {
				$event='a_reshow';
				$setupdated=true;
			}

		} else
			qa_fatal_error('Unknown status in qa_answer_set_status(): '.$status);

		qa_db_post_set_type($oldanswer['postid'], $newtype, $setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null, QA_UPDATE_VISIBLE);

		if ( $wasqueued && ($status==QA_POST_STATUS_NORMAL) && qa_opt('moderate_update_time') ) { // ... for approval of a post, can set time to now instead
			if ($wasrequeued)
				qa_db_post_set_updated($oldanswer['postid'], null);
			else
				qa_db_post_set_created($oldanswer['postid'], null);
		}

		qa_update_q_counts_for_a($question['postid']);
		qa_db_points_update_ifuser($oldanswer['userid'], array('aposts', 'aselecteds'));

		if ($wasqueued || ($status==QA_POST_STATUS_QUEUED))
			qa_db_queuedcount_update();

		if ($oldanswer['flagcount'])
			qa_db_flaggedcount_update();

		if (($question['type']=='Q') && ($status==QA_POST_STATUS_NORMAL)) { // even if answer visible, don't index if question is hidden or queued
			qa_post_index($oldanswer['postid'], 'A', $question['postid'], $oldanswer['parentid'], null, $oldanswer['content'],
				$oldanswer['format'], qa_viewer_text($oldanswer['content'], $oldanswer['format']), null, $oldanswer['categoryid']);

			foreach ($commentsfollows as $comment)
				if ( ($comment['type']=='C') && ($comment['parentid']==$oldanswer['postid']) ) // and don't index hidden/queued comments
					qa_post_index($comment['postid'], $comment['type'], $question['postid'], $comment['parentid'], null, $comment['content'],
						$comment['format'], qa_viewer_text($comment['content'], $comment['format']), null, $comment['categoryid']);
		}

		$eventparams=array(
			'postid' => $oldanswer['postid'],
			'parentid' => $oldanswer['parentid'],
			'parent' => $question,
			'content' => $oldanswer['content'],
			'format' => $oldanswer['format'],
			'text' => qa_viewer_text($oldanswer['content'], $oldanswer['format']),
			'categoryid' => $oldanswer['categoryid'],
			'name' => $oldanswer['name'],
		);

		if (isset($event))
			qa_report_event($event, $userid, $handle, $cookieid, $eventparams + array(
				'oldanswer' => $oldanswer,
			));

		if ($wasqueued && ($status==QA_POST_STATUS_NORMAL) && !$wasrequeued) {
Scott committed
679
			require_once QA_INCLUDE_DIR.'util/string.php';
Scott committed
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697

			qa_report_event('a_post', $oldanswer['userid'], $oldanswer['handle'], $oldanswer['cookieid'], $eventparams + array(
				'notify' => isset($oldanswer['notify']),
				'email' => qa_email_validate($oldanswer['notify']) ? $oldanswer['notify'] : null,
				'delayed' => $oldanswer['created'],
			));
		}
	}


	function qa_answer_delete($oldanswer, $question, $userid, $handle, $cookieid)
/*
	Permanently delete an answer (application level) from the database. The answer must not have any comments or
	follow-on questions. Pass the database record for the question in $question and details of the user doing this
	in $userid, $handle and $cookieid. Handles unindexing, votes, points, cached counts and event reports.
	See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
Scott committed
698
		require_once QA_INCLUDE_DIR.'db/votes.php';
Scott committed
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738

		if ($oldanswer['type']!='A_HIDDEN')
			qa_fatal_error('Tried to delete a non-hidden answer');

		$useridvotes=qa_db_uservote_post_get($oldanswer['postid']);

		$params = array(
			'postid' => $oldanswer['postid'],
			'parentid' => $oldanswer['parentid'],
			'oldanswer' => $oldanswer,
		);

		qa_report_event('a_delete_before', $userid, $handle, $cookieid, $params);

		qa_post_unindex($oldanswer['postid']);
		qa_db_post_delete($oldanswer['postid']); // also deletes any related voteds due to cascading

		if ($question['selchildid']==$oldanswer['postid']) {
			qa_db_post_set_selchildid($question['postid'], null);
			qa_db_points_update_ifuser($question['userid'], 'aselects');
			qa_db_unselqcount_update();
		}

		qa_update_q_counts_for_a($question['postid']);
		qa_db_points_update_ifuser($oldanswer['userid'], array('aposts', 'aselecteds', 'avoteds', 'upvoteds', 'downvoteds'));

		foreach ($useridvotes as $voteruserid => $vote)
			qa_db_points_update_ifuser($voteruserid, ($vote>0) ? 'aupvotes' : 'adownvotes');
				// could do this in one query like in qa_db_users_recalc_points() but this will do for now - unlikely to be many votes

		qa_report_event('a_delete', $userid, $handle, $cookieid, $params);
	}


	function qa_answer_set_userid($oldanswer, $userid, $handle, $cookieid)
/*
	Set the author (application level) of $oldanswer to $userid and also pass $handle and $cookieid
	of user. Updates points and reports events as appropriate.
*/
	{
Scott committed
739
		require_once QA_INCLUDE_DIR.'db/votes.php';
Scott committed
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831

		$postid = $oldanswer['postid'];

		qa_db_post_set_userid($postid, $userid);
		qa_db_uservote_remove_own($postid);
		qa_db_post_recount_votes($postid);

		qa_db_points_update_ifuser($oldanswer['userid'], array('aposts', 'aselecteds', 'avoteds', 'upvoteds', 'downvoteds'));
		qa_db_points_update_ifuser($userid, array('aposts', 'aselecteds', 'avoteds', 'aupvotes', 'adownvotes', 'upvoteds', 'downvoteds'));

		qa_report_event('a_claim', $userid, $handle, $cookieid, array(
			'postid' => $postid,
			'parentid' => $oldanswer['parentid'],
			'oldanswer' => $oldanswer,
		));
	}


	function qa_comment_set_content($oldcomment, $content, $format, $text, $notify, $userid, $handle, $cookieid, $question, $parent, $name=null, $remoderate=false, $silent=false)
/*
	Change the fields of a comment (application level) to $content, $format, $notify and $name, then reindex based on
	$text. For backwards compatibility if $name is null then the name will not be changed. Pass the comment's database
	record before changes in $oldcomment, details of the user doing this in $userid, $handle and $cookieid, the
	antecedent question in $question and the answer's database record in $answer if this is a comment on an answer,
	otherwise null. Set $remoderate to true if the question should be requeued for moderation if modified. Set $silent
	to true to not mark the question as edited. Handles unindexing and event reports. See qa-app-posts.php for a
	higher-level function which is easier to use.
*/
	{
		if (!isset($parent))
			$parent=$question; // for backwards compatibility with old answer parameter

		qa_post_unindex($oldcomment['postid']);

		$wasqueued=($oldcomment['type']=='C_QUEUED');
		$contentchanged=strcmp($oldcomment['content'], $content) || strcmp($oldcomment['format'], $format);
		$setupdated=$contentchanged && (!$wasqueued) && !$silent;

		qa_db_post_set_content($oldcomment['postid'], $oldcomment['title'], $content, $format, $oldcomment['tags'], $notify,
			$setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null, QA_UPDATE_CONTENT, $name);

		if ($setupdated && $remoderate) {
			qa_db_post_set_type($oldcomment['postid'], 'C_QUEUED');
			qa_db_ccount_update();
			qa_db_queuedcount_update();
			qa_db_points_update_ifuser($oldcomment['userid'], array('cposts'));

			if ($oldcomment['flagcount'])
				qa_db_flaggedcount_update();

		} elseif ( ($oldcomment['type']=='C') && ($question['type']=='Q') && (($parent['type']=='Q') || ($parent['type']=='A')) ) { // all must be visible
			qa_post_index($oldcomment['postid'], 'C', $question['postid'], $oldcomment['parentid'], null, $content, $format, $text, null, $oldcomment['categoryid']);
		}

		$eventparams=array(
			'postid' => $oldcomment['postid'],
			'parentid' => $oldcomment['parentid'],
			'parenttype' => $parent['basetype'],
			'parent' => $parent,
			'questionid' => $question['postid'],
			'question' => $question,
			'content' => $content,
			'format' => $format,
			'text' => $text,
			'name' => $name,
			'oldcomment' => $oldcomment,
		);

		qa_report_event('c_edit', $userid, $handle, $cookieid, $eventparams + array(
			'silent' => $silent,
			'oldcontent' => $oldcomment['content'],
			'oldformat' => $oldcomment['format'],
			'contentchanged' => $contentchanged,
		));

		if ($setupdated && $remoderate)
			qa_report_event('c_requeue', $userid, $handle, $cookieid, $eventparams);
	}


	function qa_answer_to_comment($oldanswer, $parentid, $content, $format, $text, $notify, $userid, $handle, $cookieid, $question, $answers, $commentsfollows, $name=null, $remoderate=false, $silent=false)
/*
	Convert an answer to a comment (application level) and set its fields to $content, $format, $notify and $name. For
	backwards compatibility if $name is null then the name will not be changed. Pass the answer's database record before
	changes in $oldanswer, the new comment's $parentid to be, details of the user doing this in $userid, $handle and
	$cookieid, the antecedent question's record in $question, the records for all answers to that question in $answers,
	and the records for all comments on the (old) answer and questions following from the (old) answer in
	$commentsfollows ($commentsfollows can also contain other records which are ignored). Set $remoderate to true if the
	question should be requeued for moderation if modified. Set $silent to true to not mark the question as edited.
	Handles indexing (based on $text), user points, cached counts and event reports.
*/
	{
Scott committed
832
		require_once QA_INCLUDE_DIR.'db/votes.php';
Scott committed
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919

		$parent=isset($answers[$parentid]) ? $answers[$parentid] : $question;

		qa_post_unindex($oldanswer['postid']);

		$wasqueued=($oldanswer['type']=='A_QUEUED');
		$contentchanged=strcmp($oldanswer['content'], $content) || strcmp($oldanswer['format'], $format);
		$setupdated=$contentchanged && (!$wasqueued) && !$silent;

		if ($setupdated && $remoderate)
			$newtype='C_QUEUED';
		else
			$newtype=substr_replace($oldanswer['type'], 'C', 0, 1);

		qa_db_post_set_type($oldanswer['postid'], $newtype, ($wasqueued || $silent) ? null : $userid,
			($wasqueued || $silent) ? null : qa_remote_ip_address(), QA_UPDATE_TYPE);
		qa_db_post_set_parent($oldanswer['postid'], $parentid);
		qa_db_post_set_content($oldanswer['postid'], $oldanswer['title'], $content, $format, $oldanswer['tags'], $notify,
			$setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null, QA_UPDATE_CONTENT, $name);

		foreach ($commentsfollows as $commentfollow)
			if ($commentfollow['parentid']==$oldanswer['postid']) // do same thing for comments and follows
				qa_db_post_set_parent($commentfollow['postid'], $parentid);

		qa_update_q_counts_for_a($question['postid']);
		qa_db_ccount_update();
		qa_db_points_update_ifuser($oldanswer['userid'], array('aposts', 'aselecteds', 'cposts', 'avoteds'));

		$useridvotes=qa_db_uservote_post_get($oldanswer['postid']);
		foreach ($useridvotes as $voteruserid => $vote)
			qa_db_points_update_ifuser($voteruserid, ($vote>0) ? 'aupvotes' : 'adownvotes');
				// could do this in one query like in qa_db_users_recalc_points() but this will do for now - unlikely to be many votes

		if ($setupdated && $remoderate) {
			qa_db_queuedcount_update();

			if ($oldanswer['flagcount'])
				qa_db_flaggedcount_update();

		} elseif ( ($oldanswer['type']=='A') && ($question['type']=='Q') && (($parent['type']=='Q') || ($parent['type']=='A')) ) // only if all fully visible
			qa_post_index($oldanswer['postid'], 'C', $question['postid'], $parentid, null, $content, $format, $text, null, $oldanswer['categoryid']);

		$eventparams=array(
			'postid' => $oldanswer['postid'],
			'parentid' => $parentid,
			'parenttype' => $parent['basetype'],
			'parent' => $parent,
			'questionid' => $question['postid'],
			'question' => $question,
			'content' => $content,
			'format' => $format,
			'text' => $text,
			'name' => $name,
			'oldanswer' => $oldanswer,
		);

		qa_report_event('a_to_c', $userid, $handle, $cookieid, $eventparams + array(
			'silent' => $silent,
			'oldcontent' => $oldanswer['content'],
			'oldformat' => $oldanswer['format'],
			'contentchanged' => $contentchanged,
		));

		if ($setupdated && $remoderate)
			qa_report_event('c_requeue', $userid, $handle, $cookieid, $eventparams);
				// a-to-c conversion can be detected by presence of $event['oldanswer'] instead of $event['oldcomment']
	}


	function qa_comment_set_hidden($oldcomment, $hidden, $userid, $handle, $cookieid, $question, $parent)
/*
	Set $oldcomment to hidden if $hidden is true, visible/normal if otherwise. All other parameters are as for qa_comment_set_status(...)
	This function is included mainly for backwards compatibility.
*/
	{
		qa_comment_set_status($oldcomment, $hidden ? QA_POST_STATUS_HIDDEN : QA_POST_STATUS_NORMAL, $userid, $handle, $cookieid, $question, $parent);
	}


	function qa_comment_set_status($oldcomment, $status, $userid, $handle, $cookieid, $question, $parent)
/*
	Set the status (application level) of $oldcomment to $status, one of the QA_POST_STATUS_* constants above. Pass the
	antecedent question's record in $question, details of the user doing this in $userid, $handle and $cookieid, and the
	answer's database record in $answer if this is a comment on an answer, otherwise null. Handles indexing, user
	points, cached counts and event reports. See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
Scott committed
920
		require_once QA_INCLUDE_DIR.'app/format.php';
Scott committed
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000

		if (!isset($parent))
			$parent=$question; // for backwards compatibility with old answer parameter

		$washidden=($oldcomment['type']=='C_HIDDEN');
		$wasqueued=($oldcomment['type']=='C_QUEUED');
		$wasrequeued=$wasqueued && isset($oldcomment['updated']);

		qa_post_unindex($oldcomment['postid']);

		$setupdated=false;
		$event=null;

		if ($status==QA_POST_STATUS_QUEUED) {
			$newtype='C_QUEUED';
			if (!$wasqueued)
				$event='c_requeue'; // same event whether it was hidden or shown before

		} elseif ($status==QA_POST_STATUS_HIDDEN) {
			$newtype='C_HIDDEN';
			if (!$washidden) {
				$event=$wasqueued ? 'c_reject' : 'c_hide';
				if (!$wasqueued)
					$setupdated=true;
			}

		} elseif ($status==QA_POST_STATUS_NORMAL) {
			$newtype='C';
			if ($wasqueued)
				$event='c_approve';
			elseif ($washidden) {
				$event='c_reshow';
				$setupdated=true;
			}

		} else
			qa_fatal_error('Unknown status in qa_comment_set_status(): '.$status);

		qa_db_post_set_type($oldcomment['postid'], $newtype, $setupdated ? $userid : null, $setupdated ? qa_remote_ip_address() : null, QA_UPDATE_VISIBLE);

		if ( $wasqueued && ($status==QA_POST_STATUS_NORMAL) && qa_opt('moderate_update_time') ) { // ... for approval of a post, can set time to now instead
			if ($wasrequeued)
				qa_db_post_set_updated($oldcomment['postid'], null);
			else
				qa_db_post_set_created($oldcomment['postid'], null);
		}

		qa_db_ccount_update();
		qa_db_points_update_ifuser($oldcomment['userid'], array('cposts'));

		if ($wasqueued || ($status==QA_POST_STATUS_QUEUED))
			qa_db_queuedcount_update();

		if ($oldcomment['flagcount'])
			qa_db_flaggedcount_update();

		if ( ($question['type']=='Q') && (($parent['type']=='Q') || ($parent['type']=='A')) && ($status==QA_POST_STATUS_NORMAL)) // only index if none of the things it depends on are hidden or queued
			qa_post_index($oldcomment['postid'], 'C', $question['postid'], $oldcomment['parentid'], null, $oldcomment['content'],
				$oldcomment['format'], qa_viewer_text($oldcomment['content'], $oldcomment['format']), null, $oldcomment['categoryid']);

		$eventparams=array(
			'postid' => $oldcomment['postid'],
			'parentid' => $oldcomment['parentid'],
			'parenttype' => $parent['basetype'],
			'parent' => $parent,
			'questionid' => $question['postid'],
			'question' => $question,
			'content' => $oldcomment['content'],
			'format' => $oldcomment['format'],
			'text' => qa_viewer_text($oldcomment['content'], $oldcomment['format']),
			'categoryid' => $oldcomment['categoryid'],
			'name' => $oldcomment['name'],
		);

		if (isset($event))
			qa_report_event($event, $userid, $handle, $cookieid, $eventparams + array(
				'oldcomment' => $oldcomment,
			));

		if ($wasqueued && ($status==QA_POST_STATUS_NORMAL) && !$wasrequeued) {
Scott committed
1001
			require_once QA_INCLUDE_DIR.'db/selects.php';
Scott committed
1002
			require_once QA_INCLUDE_DIR.'util/string.php';
Scott committed
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059

			$commentsfollows=qa_db_single_select(qa_db_full_child_posts_selectspec(null, $oldcomment['parentid']));
			$thread=array();

			foreach ($commentsfollows as $comment)
				if (($comment['type']=='C') && ($comment['parentid']==$parent['postid']))
					$thread[]=$comment;

			qa_report_event('c_post', $oldcomment['userid'], $oldcomment['handle'], $oldcomment['cookieid'], $eventparams + array(
				'thread' => $thread,
				'notify' => isset($oldcomment['notify']),
				'email' => qa_email_validate($oldcomment['notify']) ? $oldcomment['notify'] : null,
				'delayed' => $oldcomment['created'],
			));
		}
	}


	function qa_comment_delete($oldcomment, $question, $parent, $userid, $handle, $cookieid)
/*
	Permanently delete a comment in $oldcomment (application level) from the database. Pass the database question in $question
	and the answer's database record in $answer if this is a comment on an answer, otherwise null. Pass details of the user
	doing this in $userid, $handle and $cookieid. Handles unindexing, points, cached counts and event reports.
	See qa-app-posts.php for a higher-level function which is easier to use.
*/
	{
		if (!isset($parent))
			$parent=$question; // for backwards compatibility with old answer parameter

		if ($oldcomment['type']!='C_HIDDEN')
			qa_fatal_error('Tried to delete a non-hidden comment');

		$params = array(
			'postid' => $oldcomment['postid'],
			'parentid' => $oldcomment['parentid'],
			'oldcomment' => $oldcomment,
			'parenttype' => $parent['basetype'],
			'questionid' => $question['postid'],
		);

		qa_report_event('c_delete_before', $userid, $handle, $cookieid, $params);

		qa_post_unindex($oldcomment['postid']);
		qa_db_post_delete($oldcomment['postid']);
		qa_db_points_update_ifuser($oldcomment['userid'], array('cposts'));
		qa_db_ccount_update();

		qa_report_event('c_delete', $userid, $handle, $cookieid, $params);
	}


	function qa_comment_set_userid($oldcomment, $userid, $handle, $cookieid)
/*
	Set the author (application level) of $oldcomment to $userid and also pass $handle and $cookieid
	of user. Updates points and reports events as appropriate.
*/
	{
Scott committed
1060
		require_once QA_INCLUDE_DIR.'db/votes.php';
Scott committed
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

		$postid = $oldcomment['postid'];

		qa_db_post_set_userid($postid, $userid);
		qa_db_uservote_remove_own($postid);
		qa_db_post_recount_votes($postid);

		qa_db_points_update_ifuser($oldcomment['userid'], array('cposts'));
		qa_db_points_update_ifuser($userid, array('cposts'));

		qa_report_event('c_claim', $userid, $handle, $cookieid, array(
			'postid' => $postid,
			'parentid' => $oldcomment['parentid'],
			'oldcomment' => $oldcomment,
		));
	}

/*
	Omit PHP closing tag to help avoid accidental output
Gideon Greenspan committed
1080
*/