コード例 #1
0
ファイル: mark-parent.php プロジェクト: jrunning/thinktank
}
//TODO: check that parent id and all orphan id's are valid and in the db, pass a success or error message back
echo $_GET["pid"];
echo "<br />";
$pid = $_GET["pid"];
$oid = $_GET["oid"];
$template = $_GET["t"];
$cache_key = $_GET["ck"];
foreach ($oid as $o) {
    echo $o;
    echo "<br />";
}
// set up
chdir("..");
require_once 'config.webapp.inc.php';
ini_set("include_path", ini_get("include_path") . PATH_SEPARATOR . $INCLUDE_PATH);
require_once "init.php";
$cfg = new Config();
$pd = new PostDAO($db);
foreach ($oid as $o) {
    echo "<br />";
    if (isset($_GET["fp"])) {
        $pd->assignParent($pid, $o, $_GET["fp"]);
    } else {
        $pd->assignParent($pid, $o);
    }
}
$db->closeConnection($conn);
$s = new SmartyThinkTank();
$s->clear_cache($template, $cache_key);
echo 'Assignment complete.<br /><a href="' . $THINKTANK_CFG['site_root_path'] . '?u=' . $_GET['u'] . '#replies">Back home</a>.';
コード例 #2
0
ファイル: postdao_test.php プロジェクト: ukd1/thinktank
 function testAssignParent()
 {
     //Add two "parent" posts
     $q = "INSERT INTO tt_posts (post_id, author_user_id, author_username, author_fullname, author_avatar, post_text, source, pub_date, mention_count_cache, retweet_count_cache) VALUES (550, 19, 'linkbaiter', 'Link Baiter', 'avatar.jpg', 'This is parent post 1', 'web', '2006-03-01 00:01:00', 1, 0);";
     $this->db->exec($q);
     $q = "INSERT INTO tt_posts (post_id, author_user_id, author_username, author_fullname, author_avatar, post_text, source, pub_date, mention_count_cache, retweet_count_cache) VALUES (551, 19, 'linkbaiter', 'Link Baiter', 'avatar.jpg', 'This is parent post 2', 'web', '2006-03-01 00:01:00', 0, 0);";
     $this->db->exec($q);
     //Add a post with the parent post 550
     $q = "INSERT INTO tt_posts (post_id, author_user_id, author_username, author_fullname, author_avatar, post_text, source, pub_date, mention_count_cache, retweet_count_cache, in_reply_to_post_id) VALUES (552, 19, 'linkbaiter', 'Link Baiter', 'avatar.jpg', 'This is a reply with the wrong parent', 'web', '2006-03-01 00:01:00', 0, 0, 550);";
     $this->db->exec($q);
     $pdao = new PostDAO($this->db, $this->logger);
     $post = $pdao->getPost(552);
     //Assert parent post is 550
     $this->assertEqual($post->in_reply_to_post_id, 550);
     //Change parent post to 551
     $pdao->assignParent(551, 552);
     $child_post = $pdao->getPost(552);
     //Assert parent post is now 551
     $this->assertEqual($child_post->in_reply_to_post_id, 551);
     //Assert old parent post has one fewer reply total
     $old_parent = $pdao->getPost(550);
     $this->assertEqual($old_parent->mention_count_cache, 0);
     //Assert new parent post has one more reply total
     $new_parent = $pdao->getPost(551);
     $this->assertEqual($new_parent->mention_count_cache, 1);
 }