]> git.mxchange.org Git - friendica.git/blobdiff - mod/videos.php
Merge pull request #2148 from annando/issue-1871
[friendica.git] / mod / videos.php
index 5553bbbeb3a601cdbf79aa58d05bb12cbb84ae63..7ea09d6a93d419475341a305b978f712b88d6391 100644 (file)
@@ -15,27 +15,38 @@ function videos_init(&$a) {
                return;
        }
 
+       nav_set_selected('home');
+
        $o = '';
 
        if($a->argc > 1) {
                $nick = $a->argv[1];
-               $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
+               $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
                        dbesc($nick)
                );
 
-               if(! count($r))
+               if(! count($user))
                        return;
 
-               $a->data['user'] = $r[0];
+               $a->data['user'] = $user[0];
+               $a->profile_uid = $user[0]['uid'];
+
+               $profile = get_profiledata_by_nick($nick, $a->profile_uid);
 
-                $profilephoto = $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg');
+               if((x($profile['page-flags']) == 2) || (x($profile['page-flags']) == 5))
+                       $account_type = t('Forum');
+               else
+                       $account_type = "";
 
-                $tpl = get_markup_template("vcard-widget.tpl");
+               $tpl = get_markup_template("vcard-widget.tpl");
 
-               $vcard_widget = replace_macros($tpl, array(
-                        '$name' => $a->data['user']['username'],
-                        '$photo' => $profilephoto
-                ));
+               $vcard_widget .= replace_macros($tpl, array(
+                       '$name' => $profile['name'],
+                       '$photo' => $profile['photo'],
+                       '$addr' => (($profile['addr'] != "") ? $profile['addr'] : ""),
+                       '$account_type' => $account_type,
+                       '$pdesc' => (($profile['pdesc'] != "") ? $profile['pdesc'] : ""),
+               ));
 
 
                /*$sql_extra = permissions_sql($a->data['user']['uid']);
@@ -47,12 +58,12 @@ function videos_init(&$a) {
                if(count($albums)) {
                        $a->data['albums'] = $albums;
 
-                       $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true);     
+                       $albums_visible = ((intval($a->data['user']['hidewall']) && (! local_user()) && (! remote_user())) ? false : true);
 
                        if($albums_visible) {
-                               $o .= '<div id="side-bar-photos-albums" class="widget">';
+                               $o .= '<div id="sidebar-photos-albums" class="widget">';
                                $o .= '<h3>' . '<a href="' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '">' . t('Photo Albums') . '</a></h3>';
-                                       
+
                                $o .= '<ul>';
                                foreach($albums as $album) {
 
@@ -61,7 +72,7 @@ function videos_init(&$a) {
 
                                        if((! strlen($album['album'])) || ($album['album'] === 'Contact Photos') || ($album['album'] === t('Contact Photos')))
                                                continue;
-                                       $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>'; 
+                                       $o .= '<li>' . '<a href="photos/' . $a->argv[1] . '/album/' . bin2hex($album['album']) . '" >' . $album['album'] . '</a></li>';
                                }
                                $o .= '</ul>';
                        }
@@ -96,9 +107,76 @@ function videos_init(&$a) {
 
 function videos_post(&$a) {
 
-       return;
+       $owner_uid = $a->data['user']['uid'];
+
+       if (local_user() != $owner_uid) goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
+
+       if(($a->argc == 2) && x($_POST,'delete') && x($_POST, 'id')) {
+
+               // Check if we should do HTML-based delete confirmation
+               if(!x($_REQUEST,'confirm')) {
+                       if(x($_REQUEST,'canceled')) goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
+
+                       $drop_url = $a->query_string;
+                       $a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
+                               '$method' => 'post',
+                               '$message' => t('Do you really want to delete this video?'),
+                               '$extra_inputs' => array(
+                                       array('name'=>'id', 'value'=> $_POST['id']),
+                                       array('name'=>'delete', 'value'=>'x')
+                               ),
+                               '$confirm' => t('Delete Video'),
+                               '$confirm_url' => $drop_url,
+                               '$confirm_name' => 'confirm', // Needed so that confirmation will bring us back into this if statement
+                               '$cancel' => t('Cancel'),
+
+                       ));
+                       $a->error = 1; // Set $a->error so the other module functions don't execute
+                       return;
+               }
+
+               $video_id = $_POST['id'];
+
+
+               $r = q("SELECT `id`  FROM `attach` WHERE `uid` = %d AND `id` = '%s' LIMIT 1",
+                       intval(local_user()),
+                       dbesc($video_id)
+               );
+
+               if(count($r)) {
+                       q("DELETE FROM `attach` WHERE `uid` = %d AND `id` = '%s'",
+                               intval(local_user()),
+                               dbesc($video_id)
+                       );
+                       $i = q("SELECT * FROM `item` WHERE `attach` like '%%attach/%s%%' AND `uid` = %d LIMIT 1",
+                               dbesc($video_id),
+                               intval(local_user())
+                       );
+                       #echo "<pre>"; var_dump($i); killme();
+                       if(count($i)) {
+                               q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
+                                       dbesc(datetime_convert()),
+                                       dbesc(datetime_convert()),
+                                       dbesc($i[0]['uri']),
+                                       intval(local_user())
+                               );
+                               create_tags_from_itemuri($i[0]['uri'], local_user());
+                               delete_thread_uri($i[0]['uri'], local_user());
+
+                               $url = $a->get_baseurl();
+                               $drop_id = intval($i[0]['id']);
+
+                               if($i[0]['visible'])
+                                       proc_run('php',"include/notifier.php","drop","$drop_id");
+                       }
+               }
+
+               goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
+               return; // NOTREACHED
+       }
+
+    goaway($a->get_baseurl() . '/videos/' . $a->data['user']['nickname']);
 
-       // DELETED -- look at mod/photos.php if you want to implement
 }
 
 
@@ -119,8 +197,8 @@ function videos_content(&$a) {
                notice( t('Public access denied.') . EOL);
                return;
        }
-       
-       
+
+
        require_once('include/bbcode.php');
        require_once('include/security.php');
        require_once('include/conversation.php');
@@ -135,7 +213,7 @@ function videos_content(&$a) {
        $_SESSION['video_return'] = $a->cmd;
 
        //
-       // Parse arguments 
+       // Parse arguments
        //
 
        if($a->argc > 3) {
@@ -237,7 +315,7 @@ function videos_content(&$a) {
 
        // tabs
        $_is_owner = (local_user() && (local_user() == $owner_uid));
-       $o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']);        
+       $o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']);
 
        //
        // dispatch request
@@ -255,7 +333,7 @@ function videos_content(&$a) {
                return; // no albums for now
 
                // DELETED -- look at mod/photos.php if you want to implement
-       }       
+       }
 
 
        if($datatype === 'video') {
@@ -311,20 +389,21 @@ function videos_content(&$a) {
                                        'name'  => $name_e,
                                        'alt'   => t('View Album'),
                                ),
-                               
+
                        );
                }
        }
-       
-       $tpl = get_markup_template('videos_recent.tpl'); 
+
+       $tpl = get_markup_template('videos_recent.tpl');
        $o .= replace_macros($tpl, array(
                '$title' => t('Recent Videos'),
                '$can_post' => $can_post,
                '$upload' => array(t('Upload New Videos'), $a->get_baseurl().'/videos/'.$a->data['user']['nickname'].'/upload'),
                '$videos' => $videos,
+        '$delete_url' => (($can_post)?$a->get_baseurl().'/videos/'.$a->data['user']['nickname']:False)
        ));
 
-       
+
        $o .= paginate($a);
        return $o;
 }