move-thread-thread.tcl

Move a thread to other thread of same forum or other forum.

Location:
/packages/forums/www/moderate/move-thread-thread.tcl
Author:
Natalia Pérez <nperper@it.uc3m.es>
Created:
2005-03-29

Related Files

[ hide source ] | [ make this the default ]

File Contents

ad_page_contract {

    Move a thread to other thread of same forum or other forum.

    @author Natalia Pérez (nperper@it.uc3m.es)
    @creation-date 2005-03-29   

} {
    msg_id:object_type(forums_message),notnull
    selected_message:object_type(forums_message),notnull
    {confirm_p:boolean 0}
}

set table_border_color [parameter::get -parameter table_border_color]

# Select the stuff
forum::message::get -message_id $msg_id -array message

# Check that the user can moderate the forum
forum::security::require_moderate_forum -forum_id $message(forum_id)

#form to confirm
ad_form \
    -name confirmed_move -mode {display} \
    -actions [list [list [_ forums.Yes] yes] [list No no] ] -export {
        msg_id return_url selected_message
    } -html {enctype multipart/form-data} -form {
        {data:text(hidden)  {value 0}}
    }
#get the clicked button
set action [template::form::get_action confirmed_move]

if {$action eq "yes"} {
    set confirm_p 1    
}
if {$action eq "no"} {
    set confirm_p 2    
}

set message_id $selected_message   
db_0or1row forums::move_thread_thread::get_forum_name { }

# Confirmed
if {$confirm_p == 1} {        
    
    #update the final message: increase reply_count, approved_reply_count and max_child_sortkey
    db_dml forums::move_thread_thread::update_final_message {}
      
    #get the tree_sortkey and max_child_sortkey of final message
    db_0or1row forums::move_thread_thread::get_father_tree_sortkey {}
        
    #get all descendents
    db_foreach forums::move_thread_thread::get_all_child {} {
       set join_tree_sortkey $father_tree_sortkey
       append join_tree_sortkey $father_max_child_sortkey
       append join_tree_sortkey $child_tree_sortkey
       #update the children's initial message: update tree_sortkey       
       db_dml forums::move_thread_thread::update_child_thread_father {} 
       #update the final message: increase reply_count and approved_reply_count
       db_dml forums::move_thread_thread::update_final_reply_count {}          
    }     
       
    #update the initial message
    set join_tree_sortkey $father_tree_sortkey
    append join_tree_sortkey $father_max_child_sortkey
    db_dml forums::move_thread_thread::update_thread_father {}    
    
    #update last_child_post final father message
    db_dml forums::move_thread_thread::update_last_child_post {}  
    
    #update the initial forum: decrease thread_count, approved_thread_count and max_child_sortkey    
    db_0or1row forums::move_thread_thread::select_data_forum_initial {}    
    db_dml forums::move_thread_thread::update_forum_initial {}        
           
    
    #update the final forum     
    db_dml forums::move_thread_thread::update_forums_final {}
    
    # Redirect to the forum
    ad_returnredirect "../forum-view?forum_id=$forum_id"
    ad_script_abort
}


set msg_id $message(message_id)
set return_url "../message-view"

if {$confirm_p == 2} {
   ad_returnredirect "../message-view?message_id=$message(message_id)"
}
set url_vars [export_vars {msg_id return_url selected_message}]

if {[info exists alt_template] && $alt_template ne ""} {
  ad_return_template $alt_template
}

# Local variables:
#    mode: tcl
#    tcl-indent-level: 4
#    indent-tabs-mode: nil
# End: