]> git.mxchange.org Git - friendica.git/blobdiff - mod/fbrowser.php
Vier: Now there are buttons for inserting bbcode elements in the comments
[friendica.git] / mod / fbrowser.php
index 33695b30f670e2947962a8e9f2d90760c1ee86f3..5ee813b4d68f1dc6e5efe66325eb251047e40561 100644 (file)
@@ -4,7 +4,9 @@
  * @subpackage FileBrowser
  * @author             Fabio Comuni <fabrixxm@kirgroup.com>
  */
+
+require_once('include/Photo.php');
+
 /**
  * @param App $a
  */
@@ -22,6 +24,9 @@ function fbrowser_content($a){
                case "image":
                        $path = array( array($a->get_baseurl()."/fbrowser/image/", t("Photos")));
                        $albums = false;
+                       $sql_extra = "";
+                       $sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
+                       
                        if ($a->argc==2){
                                $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d ",
                                        intval(local_user())
@@ -36,16 +41,26 @@ function fbrowser_content($a){
                        if ($a->argc==3){
                                $album = hex2bin($a->argv[2]);
                                $sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
+                               $sql_extra2 = "";
                                $path[]=array($a->get_baseurl()."/fbrowser/image/".$a->argv[2]."/", $album);
                        }
                                
-                       $r = q("SELECT `resource-id`, `id`, `filename`, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`  FROM `photo` WHERE `uid` = %d $sql_extra
-                               AND `scale` <= 4 $sql_extra GROUP BY `resource-id`",
+                       $r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`  
+                                       FROM `photo` WHERE `uid` = %d AND (height <= 320 AND width <= 320) $sql_extra
+                                       GROUP BY `resource-id` $sql_extra2",
                                intval(local_user())                                    
                        );
                        
-                       
-                       function files1($rr){ global $a; return array( $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['hiq'] . '.jpg', template_escape($rr['filename']), $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.jpg');  }
+                       function files1($rr){ 
+                               global $a;
+                               $types = Photo::supportedTypes();
+                               $ext = $types[$rr['type']];
+                               return array( 
+                                       $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['hiq'] . '.' .$ext, 
+                                       template_escape($rr['filename']), 
+                                       $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.'. $ext
+                               );
+                       }
                        $files = array_map("files1", $r);
                        
                        $tpl = get_markup_template("filebrowser.tpl");