Ejemplo n.º 1
0
 public static function scan($id, $path, $storage)
 {
     $file = $storage->getLocalFile($path);
     $result = OC_Files_Antivirus::clamav_scan($file);
     switch ($result) {
         case CLAMAV_SCANRESULT_UNCHECKED:
             \OCP\Util::writeLog('files_antivirus', 'File "' . $path . '" from user "' . $user . '": is not checked', \OCP\Util::ERROR);
             break;
         case CLAMAV_SCANRESULT_INFECTED:
             $infected_action = \OCP\Config::getAppValue('files_antivirus', 'infected_action', 'only_log');
             if ($infected_action == 'delete') {
                 \OCP\Util::writeLog('files_antivirus', 'File "' . $path . '" from user "' . $user . '": is infected, file deleted', \OCP\Util::ERROR);
                 unlink($file);
             } else {
                 \OCP\Util::writeLog('files_antivirus', 'File "' . $path . '" from user "' . $user . '": is infected', \OCP\Util::ERROR);
             }
             break;
         case CLAMAV_SCANRESULT_CLEAN:
             $stmt = OCP\DB::prepare('INSERT INTO `*PREFIX*files_antivirus` (`fileid`, `check_time`) VALUES (?, ?)');
             try {
                 $result = $stmt->execute(array($id, time()));
                 if (\OC_DB::isError($result)) {
                     \OC_Log::write('files_antivirus', __METHOD__ . ', DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
                     return;
                 }
             } catch (\Exception $e) {
                 \OCP\Util::writeLog('files_antivirus', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::ERROR);
             }
             break;
     }
 }
Ejemplo n.º 2
0
 public static function get($path, $root = false)
 {
     if ($root === false) {
         $root = OC_Filesystem::getRoot();
     }
     $path = $root . $path;
     $stmt = OC_DB::prepare('SELECT `id`, `path`,`ctime`,`mtime`,`mimetype`,`size`,`encrypted`,`versioned`,`writable` FROM `*PREFIX*fscache` WHERE `path_hash`=?');
     if (!OC_DB::isError($stmt)) {
         $result = $stmt->execute(array(md5($path)));
         if (!OC_DB::isError($result)) {
             $result = $result->fetchRow();
         } else {
             OC:
             Log::write('OC_FileCache_Cached', 'could not execute get: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
             $result = false;
         }
     } else {
         OC_Log::write('OC_FileCache_Cached', 'could not prepare get: ' . OC_DB::getErrorMessage($stmt), OC_Log::ERROR);
         $result = false;
     }
     if (is_array($result)) {
         if (isset(self::$savedData[$path])) {
             $result = array_merge($result, self::$savedData[$path]);
         }
         return $result;
     } else {
         if (isset(self::$savedData[$path])) {
             return self::$savedData[$path];
         } else {
             return array();
         }
     }
 }
Ejemplo n.º 3
0
 /**
  * counts the users in the database
  *
  * @return int | bool
  */
 public function countUsers()
 {
     $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`');
     $result = $query->execute();
     if (OC_DB::isError($result)) {
         OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR);
         return false;
     }
     return $result->fetchOne();
 }
Ejemplo n.º 4
0
    /**
     * Get shared items from the database
     * @param string Item type
     * @param string Item source or target (optional)
     * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique
     * @param string User or group the item is being shared with
     * @param string User that is the owner of shared items (optional)
     * @param int Format to convert items to with formatItems()
     * @param mixed Parameters to pass to formatItems()
     * @param int Number of items to return, -1 to return all matches (optional)
     * @param bool Include collection item types (optional)
     * @param bool TODO (optional)
     * @prams bool check expire date
     * @return mixed
     *
     * See public functions getItem(s)... for parameter usage
     *
     */
    private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true)
    {
        if (!self::isEnabled()) {
            if ($limit == 1 || isset($uidOwner) && isset($item)) {
                return false;
            } else {
                return array();
            }
        }
        $backend = self::getBackend($itemType);
        $collectionTypes = false;
        // Get filesystem root to add it to the file target and remove from the
        // file source, match file_source with the file cache
        if ($itemType == 'file' || $itemType == 'folder') {
            if (!is_null($uidOwner)) {
                $root = \OC\Files\Filesystem::getRoot();
            } else {
                $root = '';
            }
            $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`';
            if (!isset($item)) {
                $where .= ' WHERE `file_target` IS NOT NULL';
            }
            $fileDependent = true;
            $queryArgs = array();
        } else {
            $fileDependent = false;
            $root = '';
            if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) {
                // If includeCollections is true, find collections of this item type, e.g. a music album contains songs
                if (!in_array($itemType, $collectionTypes)) {
                    $itemTypes = array_merge(array($itemType), $collectionTypes);
                } else {
                    $itemTypes = $collectionTypes;
                }
                $placeholders = join(',', array_fill(0, count($itemTypes), '?'));
                $where = ' WHERE `item_type` IN (' . $placeholders . '))';
                $queryArgs = $itemTypes;
            } else {
                $where = ' WHERE `item_type` = ?';
                $queryArgs = array($itemType);
            }
        }
        if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') {
            $where .= ' AND `share_type` != ?';
            $queryArgs[] = self::SHARE_TYPE_LINK;
        }
        if (isset($shareType)) {
            // Include all user and group items
            if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) {
                $where .= ' AND `share_type` IN (?,?,?)';
                $queryArgs[] = self::SHARE_TYPE_USER;
                $queryArgs[] = self::SHARE_TYPE_GROUP;
                $queryArgs[] = self::$shareTypeGroupUserUnique;
                $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith));
                $placeholders = join(',', array_fill(0, count($userAndGroups), '?'));
                $where .= ' AND `share_with` IN (' . $placeholders . ')';
                $queryArgs = array_merge($queryArgs, $userAndGroups);
                // Don't include own group shares
                $where .= ' AND `uid_owner` != ?';
                $queryArgs[] = $shareWith;
            } else {
                $where .= ' AND `share_type` = ?';
                $queryArgs[] = $shareType;
                if (isset($shareWith)) {
                    $where .= ' AND `share_with` = ?';
                    $queryArgs[] = $shareWith;
                }
            }
        }
        if (isset($uidOwner)) {
            $where .= ' AND `uid_owner` = ?';
            $queryArgs[] = $uidOwner;
            if (!isset($shareType)) {
                // Prevent unique user targets for group shares from being selected
                $where .= ' AND `share_type` != ?';
                $queryArgs[] = self::$shareTypeGroupUserUnique;
            }
            if ($itemType == 'file' || $itemType == 'folder') {
                $column = 'file_source';
            } else {
                $column = 'item_source';
            }
        } else {
            if ($itemType == 'file' || $itemType == 'folder') {
                $column = 'file_target';
            } else {
                $column = 'item_target';
            }
        }
        if (isset($item)) {
            if ($includeCollections && ($collectionTypes = self::getCollectionItemTypes($itemType))) {
                $where .= ' AND (';
            } else {
                $where .= ' AND';
            }
            // If looking for own shared items, check item_source else check item_target
            if (isset($uidOwner) || $itemShareWithBySource) {
                // If item type is a file, file source needs to be checked in case the item was converted
                if ($itemType == 'file' || $itemType == 'folder') {
                    $where .= ' `file_source` = ?';
                    $column = 'file_source';
                } else {
                    $where .= ' `item_source` = ?';
                    $column = 'item_source';
                }
            } else {
                if ($itemType == 'file' || $itemType == 'folder') {
                    $where .= ' `file_target` = ?';
                    $item = \OC\Files\Filesystem::normalizePath($item);
                } else {
                    $where .= ' `item_target` = ?';
                }
            }
            $queryArgs[] = $item;
            if ($includeCollections && $collectionTypes) {
                $placeholders = join(',', array_fill(0, count($collectionTypes), '?'));
                $where .= ' OR `item_type` IN (' . $placeholders . '))';
                $queryArgs = array_merge($queryArgs, $collectionTypes);
            }
        }
        if ($limit != -1 && !$includeCollections) {
            if ($shareType == self::$shareTypeUserAndGroups) {
                // Make sure the unique user target is returned if it exists,
                // unique targets should follow the group share in the database
                // If the limit is not 1, the filtering can be done later
                $where .= ' ORDER BY `*PREFIX*share`.`id` DESC';
            }
            // The limit must be at least 3, because filtering needs to be done
            if ($limit < 3) {
                $queryLimit = 3;
            } else {
                $queryLimit = $limit;
            }
        } else {
            $queryLimit = null;
        }
        // TODO Optimize selects
        if ($format == self::FORMAT_STATUSES) {
            if ($itemType == 'file' || $itemType == 'folder') {
                $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' . ' `share_type`, `file_source`, `path`, `expiration`, `storage`, `share_with`, `mail_send`, `uid_owner`';
            } else {
                $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `expiration`, `mail_send`, `uid_owner`';
            }
        } else {
            if (isset($uidOwner)) {
                if ($itemType == 'file' || $itemType == 'folder') {
                    $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' . ' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' . ' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`';
                } else {
                    $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' . ' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`';
                }
            } else {
                if ($fileDependent) {
                    if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) {
                        $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' . '`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' . '`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' . '`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`';
                    } else {
                        $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`,
							`*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`,
							`file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`';
                    }
                } else {
                    $select = '*';
                }
            }
        }
        $root = strlen($root);
        $query = \OC_DB::prepare('SELECT ' . $select . ' FROM `*PREFIX*share` ' . $where, $queryLimit);
        $result = $query->execute($queryArgs);
        if (\OC_DB::isError($result)) {
            \OC_Log::write('OCP\\Share', \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR);
        }
        $items = array();
        $targets = array();
        $switchedItems = array();
        $mounts = array();
        while ($row = $result->fetchRow()) {
            if (isset($row['id'])) {
                $row['id'] = (int) $row['id'];
            }
            if (isset($row['share_type'])) {
                $row['share_type'] = (int) $row['share_type'];
            }
            if (isset($row['parent'])) {
                $row['parent'] = (int) $row['parent'];
            }
            if (isset($row['file_parent'])) {
                $row['file_parent'] = (int) $row['file_parent'];
            }
            if (isset($row['file_source'])) {
                $row['file_source'] = (int) $row['file_source'];
            }
            if (isset($row['permissions'])) {
                $row['permissions'] = (int) $row['permissions'];
            }
            if (isset($row['storage'])) {
                $row['storage'] = (int) $row['storage'];
            }
            if (isset($row['stime'])) {
                $row['stime'] = (int) $row['stime'];
            }
            // Filter out duplicate group shares for users with unique targets
            if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) {
                $row['share_type'] = self::SHARE_TYPE_GROUP;
                $row['share_with'] = $items[$row['parent']]['share_with'];
                // Remove the parent group share
                unset($items[$row['parent']]);
                if ($row['permissions'] == 0) {
                    continue;
                }
            } else {
                if (!isset($uidOwner)) {
                    // Check if the same target already exists
                    if (isset($targets[$row[$column]])) {
                        // Check if the same owner shared with the user twice
                        // through a group and user share - this is allowed
                        $id = $targets[$row[$column]];
                        if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) {
                            // Switch to group share type to ensure resharing conditions aren't bypassed
                            if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {
                                $items[$id]['share_type'] = self::SHARE_TYPE_GROUP;
                                $items[$id]['share_with'] = $row['share_with'];
                            }
                            // Switch ids if sharing permission is granted on only
                            // one share to ensure correct parent is used if resharing
                            if (~(int) $items[$id]['permissions'] & PERMISSION_SHARE && (int) $row['permissions'] & PERMISSION_SHARE) {
                                $items[$row['id']] = $items[$id];
                                $switchedItems[$id] = $row['id'];
                                unset($items[$id]);
                                $id = $row['id'];
                            }
                            // Combine the permissions for the item
                            $items[$id]['permissions'] |= (int) $row['permissions'];
                            continue;
                        }
                    } else {
                        $targets[$row[$column]] = $row['id'];
                    }
                }
            }
            // Remove root from file source paths if retrieving own shared items
            if (isset($uidOwner) && isset($row['path'])) {
                if (isset($row['parent'])) {
                    // FIXME: Doesn't always construct the correct path, example:
                    // Folder '/a/b', share '/a' and '/a/b' to user2
                    // user2 reshares /Shared/b and ask for share status of /Shared/a/b
                    // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent
                    $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?');
                    $parentResult = $query->execute(array($row['parent']));
                    if (\OC_DB::isError($result)) {
                        \OC_Log::write('OCP\\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR);
                    } else {
                        $parentRow = $parentResult->fetchRow();
                        $tmpPath = '/Shared' . $parentRow['file_target'];
                        // find the right position where the row path continues from the target path
                        $pos = strrpos($row['path'], $parentRow['file_target']);
                        $subPath = substr($row['path'], $pos);
                        $splitPath = explode('/', $subPath);
                        foreach (array_slice($splitPath, 2) as $pathPart) {
                            $tmpPath = $tmpPath . '/' . $pathPart;
                        }
                        $row['path'] = $tmpPath;
                    }
                } else {
                    if (!isset($mounts[$row['storage']])) {
                        $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']);
                        if (is_array($mountPoints)) {
                            $mounts[$row['storage']] = current($mountPoints);
                        }
                    }
                    if ($mounts[$row['storage']]) {
                        $path = $mounts[$row['storage']]->getMountPoint() . $row['path'];
                        $row['path'] = substr($path, $root);
                    }
                }
            }
            if ($checkExpireDate) {
                if (self::expireItem($row)) {
                    continue;
                }
            }
            // Check if resharing is allowed, if not remove share permission
            if (isset($row['permissions']) && !self::isResharingAllowed()) {
                $row['permissions'] &= ~PERMISSION_SHARE;
            }
            // Add display names to result
            if (isset($row['share_with']) && $row['share_with'] != '') {
                $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']);
            }
            if (isset($row['uid_owner']) && $row['uid_owner'] != '') {
                $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']);
            }
            $items[$row['id']] = $row;
        }
        if (!empty($items)) {
            $collectionItems = array();
            foreach ($items as &$row) {
                // Return only the item instead of a 2-dimensional array
                if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) {
                    if ($format == self::FORMAT_NONE) {
                        return $row;
                    } else {
                        break;
                    }
                }
                // Check if this is a collection of the requested item type
                if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) {
                    if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) {
                        // Collections can be inside collections, check if the item is a collection
                        if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) {
                            $collectionItems[] = $row;
                        } else {
                            $collection = array();
                            $collection['item_type'] = $row['item_type'];
                            if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
                                $collection['path'] = basename($row['path']);
                            }
                            $row['collection'] = $collection;
                            // Fetch all of the children sources
                            $children = $collectionBackend->getChildren($row[$column]);
                            foreach ($children as $child) {
                                $childItem = $row;
                                $childItem['item_type'] = $itemType;
                                if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') {
                                    $childItem['item_source'] = $child['source'];
                                    $childItem['item_target'] = $child['target'];
                                }
                                if ($backend instanceof Share_Backend_File_Dependent) {
                                    if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
                                        $childItem['file_source'] = $child['source'];
                                    } else {
                                        $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']);
                                        $childItem['file_source'] = $meta['fileid'];
                                    }
                                    $childItem['file_target'] = \OC\Files\Filesystem::normalizePath($child['file_path']);
                                }
                                if (isset($item)) {
                                    if ($childItem[$column] == $item) {
                                        // Return only the item instead of a 2-dimensional array
                                        if ($limit == 1) {
                                            if ($format == self::FORMAT_NONE) {
                                                return $childItem;
                                            } else {
                                                // Unset the items array and break out of both loops
                                                $items = array();
                                                $items[] = $childItem;
                                                break 2;
                                            }
                                        } else {
                                            $collectionItems[] = $childItem;
                                        }
                                    }
                                } else {
                                    $collectionItems[] = $childItem;
                                }
                            }
                        }
                    }
                    // Remove collection item
                    $toRemove = $row['id'];
                    if (array_key_exists($toRemove, $switchedItems)) {
                        $toRemove = $switchedItems[$toRemove];
                    }
                    unset($items[$toRemove]);
                }
            }
            if (!empty($collectionItems)) {
                $items = array_merge($items, $collectionItems);
            }
            if (empty($items) && $limit == 1) {
                return false;
            }
            if ($format == self::FORMAT_NONE) {
                return $items;
            } else {
                if ($format == self::FORMAT_STATUSES) {
                    $statuses = array();
                    foreach ($items as $item) {
                        if ($item['share_type'] == self::SHARE_TYPE_LINK) {
                            $statuses[$item[$column]]['link'] = true;
                        } else {
                            if (!isset($statuses[$item[$column]])) {
                                $statuses[$item[$column]]['link'] = false;
                            }
                        }
                        if ($itemType == 'file' || $itemType == 'folder') {
                            $statuses[$item[$column]]['path'] = $item['path'];
                        }
                    }
                    return $statuses;
                } else {
                    return $backend->formatItems($items, $format, $parameters);
                }
            }
        } else {
            if ($limit == 1 || isset($uidOwner) && isset($item)) {
                return false;
            }
        }
        return array();
    }
Ejemplo n.º 5
0
 /**
  * @brief Checks if an addressbook is active.
  * @param integer $id ID of the address book.
  * @return boolean
  */
 public static function isActive($id)
 {
     $sql = 'SELECT `active` FROM `*PREFIX*contacts_addressbooks` WHERE `id` = ?';
     try {
         $stmt = \OCP\DB::prepare($sql);
         $result = $stmt->execute(array($id));
         if (\OC_DB::isError($result)) {
             \OC_Log::write('contacts', __METHOD__ . 'DB error: ' . \OC_DB::getErrorMessage($result), \OC_Log::ERROR);
             return false;
         }
         $row = $result->fetchRow();
         return (bool) $row['active'];
     } catch (Exception $e) {
         \OCP\Util::writeLog('contacts', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::ERROR);
         return false;
     }
 }
Ejemplo n.º 6
0
 /**
  * @param $id
  * @return mixed
  */
 public function delete($id)
 {
     try {
         $query = 'SELECT * FROM `*PREFIX*contacts_cards` WHERE `id` = ? AND `addressbookid` = ?';
         $stmt = \OCP\DB::prepare($query);
         $result = $stmt->execute(array($id, $this->id));
         if (\OC_DB::isError($result)) {
             \OC_Log::write('contacts', __METHOD__ . 'DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
             return false;
         }
         if ($result->numRows() === 0) {
             \OC_Log::write('contacts', __METHOD__ . 'Contact with id ' . $id . 'doesn\'t belong to addressbook with id ' . $this->id, \OCP\Util::ERROR);
             return false;
         }
     } catch (\Exception $e) {
         \OCP\Util::writeLog('contacts', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::ERROR);
         return false;
     }
     return VCard::delete($id);
 }
Ejemplo n.º 7
0
 /**
  * Get shared items from the database
  * @param string $itemType
  * @param string $item Item source or target (optional)
  * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique
  * @param string $shareWith User or group the item is being shared with
  * @param string $uidOwner User that is the owner of shared items (optional)
  * @param int $format Format to convert items to with formatItems() (optional)
  * @param mixed $parameters to pass to formatItems() (optional)
  * @param int $limit Number of items to return, -1 to return all matches (optional)
  * @param boolean $includeCollections Include collection item types (optional)
  * @param boolean $itemShareWithBySource (optional)
  * @param boolean $checkExpireDate
  * @return array
  *
  * See public functions getItem(s)... for parameter usage
  *
  */
 public static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true)
 {
     if (!self::isEnabled()) {
         return array();
     }
     $backend = self::getBackend($itemType);
     $collectionTypes = false;
     // Get filesystem root to add it to the file target and remove from the
     // file source, match file_source with the file cache
     if ($itemType == 'file' || $itemType == 'folder') {
         if (!is_null($uidOwner)) {
             $root = \OC\Files\Filesystem::getRoot();
         } else {
             $root = '';
         }
         $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` ';
         if (!isset($item)) {
             $where .= ' AND `file_target` IS NOT NULL ';
         }
         $where .= 'INNER JOIN `*PREFIX*storages` ON `numeric_id` = `*PREFIX*filecache`.`storage` ';
         $fileDependent = true;
         $queryArgs = array();
     } else {
         $fileDependent = false;
         $root = '';
         $collectionTypes = self::getCollectionItemTypes($itemType);
         if ($includeCollections && !isset($item) && $collectionTypes) {
             // If includeCollections is true, find collections of this item type, e.g. a music album contains songs
             if (!in_array($itemType, $collectionTypes)) {
                 $itemTypes = array_merge(array($itemType), $collectionTypes);
             } else {
                 $itemTypes = $collectionTypes;
             }
             $placeholders = join(',', array_fill(0, count($itemTypes), '?'));
             $where = ' WHERE `item_type` IN (' . $placeholders . '))';
             $queryArgs = $itemTypes;
         } else {
             $where = ' WHERE `item_type` = ?';
             $queryArgs = array($itemType);
         }
     }
     if (\OC::$server->getAppConfig()->getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') {
         $where .= ' AND `share_type` != ?';
         $queryArgs[] = self::SHARE_TYPE_LINK;
     }
     if (isset($shareType)) {
         // Include all user and group items
         if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) {
             $where .= ' AND ((`share_type` in (?, ?) AND `share_with` = ?) ';
             $queryArgs[] = self::SHARE_TYPE_USER;
             $queryArgs[] = self::$shareTypeGroupUserUnique;
             $queryArgs[] = $shareWith;
             $groups = \OC_Group::getUserGroups($shareWith);
             if (!empty($groups)) {
                 $placeholders = join(',', array_fill(0, count($groups), '?'));
                 $where .= ' OR (`share_type` = ? AND `share_with` IN (' . $placeholders . ')) ';
                 $queryArgs[] = self::SHARE_TYPE_GROUP;
                 $queryArgs = array_merge($queryArgs, $groups);
             }
             $where .= ')';
             // Don't include own group shares
             $where .= ' AND `uid_owner` != ?';
             $queryArgs[] = $shareWith;
         } else {
             $where .= ' AND `share_type` = ?';
             $queryArgs[] = $shareType;
             if (isset($shareWith)) {
                 $where .= ' AND `share_with` = ?';
                 $queryArgs[] = $shareWith;
             }
         }
     }
     if (isset($uidOwner)) {
         $where .= ' AND `uid_owner` = ?';
         $queryArgs[] = $uidOwner;
         if (!isset($shareType)) {
             // Prevent unique user targets for group shares from being selected
             $where .= ' AND `share_type` != ?';
             $queryArgs[] = self::$shareTypeGroupUserUnique;
         }
         if ($fileDependent) {
             $column = 'file_source';
         } else {
             $column = 'item_source';
         }
     } else {
         if ($fileDependent) {
             $column = 'file_target';
         } else {
             $column = 'item_target';
         }
     }
     if (isset($item)) {
         $collectionTypes = self::getCollectionItemTypes($itemType);
         if ($includeCollections && $collectionTypes && !in_array('folder', $collectionTypes)) {
             $where .= ' AND (';
         } else {
             $where .= ' AND';
         }
         // If looking for own shared items, check item_source else check item_target
         if (isset($uidOwner) || $itemShareWithBySource) {
             // If item type is a file, file source needs to be checked in case the item was converted
             if ($fileDependent) {
                 $where .= ' `file_source` = ?';
                 $column = 'file_source';
             } else {
                 $where .= ' `item_source` = ?';
                 $column = 'item_source';
             }
         } else {
             if ($fileDependent) {
                 $where .= ' `file_target` = ?';
                 $item = \OC\Files\Filesystem::normalizePath($item);
             } else {
                 $where .= ' `item_target` = ?';
             }
         }
         $queryArgs[] = $item;
         if ($includeCollections && $collectionTypes && !in_array('folder', $collectionTypes)) {
             $placeholders = join(',', array_fill(0, count($collectionTypes), '?'));
             $where .= ' OR `item_type` IN (' . $placeholders . '))';
             $queryArgs = array_merge($queryArgs, $collectionTypes);
         }
     }
     if ($shareType == self::$shareTypeUserAndGroups && $limit === 1) {
         // Make sure the unique user target is returned if it exists,
         // unique targets should follow the group share in the database
         // If the limit is not 1, the filtering can be done later
         $where .= ' ORDER BY `*PREFIX*share`.`id` DESC';
     } else {
         $where .= ' ORDER BY `*PREFIX*share`.`id` ASC';
     }
     if ($limit != -1 && !$includeCollections) {
         // The limit must be at least 3, because filtering needs to be done
         if ($limit < 3) {
             $queryLimit = 3;
         } else {
             $queryLimit = $limit;
         }
     } else {
         $queryLimit = null;
     }
     $select = self::createSelectStatement($format, $fileDependent, $uidOwner);
     $root = strlen($root);
     $query = \OC_DB::prepare('SELECT ' . $select . ' FROM `*PREFIX*share` ' . $where, $queryLimit);
     $result = $query->execute($queryArgs);
     if (\OC_DB::isError($result)) {
         \OCP\Util::writeLog('OCP\\Share', \OC_DB::getErrorMessage() . ', select=' . $select . ' where=', \OCP\Util::ERROR);
     }
     $items = array();
     $targets = array();
     $switchedItems = array();
     $mounts = array();
     while ($row = $result->fetchRow()) {
         self::transformDBResults($row);
         // Filter out duplicate group shares for users with unique targets
         if ($fileDependent && !self::isFileReachable($row['path'], $row['storage_id'])) {
             continue;
         }
         if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) {
             $row['share_type'] = self::SHARE_TYPE_GROUP;
             $row['unique_name'] = true;
             // remember that we use a unique name for this user
             $row['share_with'] = $items[$row['parent']]['share_with'];
             // if the group share was unshared from the user we keep the permission, otherwise
             // we take the permission from the parent because this is always the up-to-date
             // permission for the group share
             if ($row['permissions'] > 0) {
                 $row['permissions'] = $items[$row['parent']]['permissions'];
             }
             // Remove the parent group share
             unset($items[$row['parent']]);
             if ($row['permissions'] == 0) {
                 continue;
             }
         } else {
             if (!isset($uidOwner)) {
                 // Check if the same target already exists
                 if (isset($targets[$row['id']])) {
                     // Check if the same owner shared with the user twice
                     // through a group and user share - this is allowed
                     $id = $targets[$row['id']];
                     if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) {
                         // Switch to group share type to ensure resharing conditions aren't bypassed
                         if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {
                             $items[$id]['share_type'] = self::SHARE_TYPE_GROUP;
                             $items[$id]['share_with'] = $row['share_with'];
                         }
                         // Switch ids if sharing permission is granted on only
                         // one share to ensure correct parent is used if resharing
                         if (~(int) $items[$id]['permissions'] & \OCP\Constants::PERMISSION_SHARE && (int) $row['permissions'] & \OCP\Constants::PERMISSION_SHARE) {
                             $items[$row['id']] = $items[$id];
                             $switchedItems[$id] = $row['id'];
                             unset($items[$id]);
                             $id = $row['id'];
                         }
                         $items[$id]['permissions'] |= (int) $row['permissions'];
                     }
                     continue;
                 } elseif (!empty($row['parent'])) {
                     $targets[$row['parent']] = $row['id'];
                 }
             }
         }
         // Remove root from file source paths if retrieving own shared items
         if (isset($uidOwner) && isset($row['path'])) {
             if (isset($row['parent'])) {
                 $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?');
                 $parentResult = $query->execute(array($row['parent']));
                 if (\OC_DB::isError($result)) {
                     \OCP\Util::writeLog('OCP\\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage() . ', select=' . $select . ' where=' . $where, \OCP\Util::ERROR);
                 } else {
                     $parentRow = $parentResult->fetchRow();
                     $tmpPath = $parentRow['file_target'];
                     // find the right position where the row path continues from the target path
                     $pos = strrpos($row['path'], $parentRow['file_target']);
                     $subPath = substr($row['path'], $pos);
                     $splitPath = explode('/', $subPath);
                     foreach (array_slice($splitPath, 2) as $pathPart) {
                         $tmpPath = $tmpPath . '/' . $pathPart;
                     }
                     $row['path'] = $tmpPath;
                 }
             } else {
                 if (!isset($mounts[$row['storage']])) {
                     $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']);
                     if (is_array($mountPoints) && !empty($mountPoints)) {
                         $mounts[$row['storage']] = current($mountPoints);
                     }
                 }
                 if (!empty($mounts[$row['storage']])) {
                     $path = $mounts[$row['storage']]->getMountPoint() . $row['path'];
                     $relPath = substr($path, $root);
                     // path relative to data/user
                     $row['path'] = rtrim($relPath, '/');
                 }
             }
         }
         if ($checkExpireDate) {
             if (self::expireItem($row)) {
                 continue;
             }
         }
         // Check if resharing is allowed, if not remove share permission
         if (isset($row['permissions']) && !self::isResharingAllowed() | \OCP\Util::isSharingDisabledForUser()) {
             $row['permissions'] &= ~\OCP\Constants::PERMISSION_SHARE;
         }
         // Add display names to result
         $row['share_with_displayname'] = $row['share_with'];
         if (isset($row['share_with']) && $row['share_with'] != '' && $row['share_type'] === self::SHARE_TYPE_USER) {
             $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']);
         } else {
             if (isset($row['share_with']) && $row['share_with'] != '' && $row['share_type'] === self::SHARE_TYPE_REMOTE) {
                 $addressBookEntries = \OC::$server->getContactsManager()->search($row['share_with'], ['CLOUD']);
                 foreach ($addressBookEntries as $entry) {
                     foreach ($entry['CLOUD'] as $cloudID) {
                         if ($cloudID === $row['share_with']) {
                             $row['share_with_displayname'] = $entry['FN'];
                         }
                     }
                 }
             }
         }
         if (isset($row['uid_owner']) && $row['uid_owner'] != '') {
             $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']);
         }
         if ($row['permissions'] > 0) {
             $items[$row['id']] = $row;
         }
     }
     // group items if we are looking for items shared with the current user
     if (isset($shareWith) && $shareWith === \OCP\User::getUser()) {
         $items = self::groupItems($items, $itemType);
     }
     if (!empty($items)) {
         $collectionItems = array();
         foreach ($items as &$row) {
             // Return only the item instead of a 2-dimensional array
             if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) {
                 if ($format == self::FORMAT_NONE) {
                     return $row;
                 } else {
                     break;
                 }
             }
             // Check if this is a collection of the requested item type
             if ($includeCollections && $collectionTypes && $row['item_type'] !== 'folder' && in_array($row['item_type'], $collectionTypes)) {
                 if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof \OCP\Share_Backend_Collection) {
                     // Collections can be inside collections, check if the item is a collection
                     if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) {
                         $collectionItems[] = $row;
                     } else {
                         $collection = array();
                         $collection['item_type'] = $row['item_type'];
                         if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
                             $collection['path'] = basename($row['path']);
                         }
                         $row['collection'] = $collection;
                         // Fetch all of the children sources
                         $children = $collectionBackend->getChildren($row[$column]);
                         foreach ($children as $child) {
                             $childItem = $row;
                             $childItem['item_type'] = $itemType;
                             if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') {
                                 $childItem['item_source'] = $child['source'];
                                 $childItem['item_target'] = $child['target'];
                             }
                             if ($backend instanceof \OCP\Share_Backend_File_Dependent) {
                                 if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
                                     $childItem['file_source'] = $child['source'];
                                 } else {
                                     // TODO is this really needed if we already know that we use the file backend?
                                     $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']);
                                     $childItem['file_source'] = $meta['fileid'];
                                 }
                                 $childItem['file_target'] = \OC\Files\Filesystem::normalizePath($child['file_path']);
                             }
                             if (isset($item)) {
                                 if ($childItem[$column] == $item) {
                                     // Return only the item instead of a 2-dimensional array
                                     if ($limit == 1) {
                                         if ($format == self::FORMAT_NONE) {
                                             return $childItem;
                                         } else {
                                             // Unset the items array and break out of both loops
                                             $items = array();
                                             $items[] = $childItem;
                                             break 2;
                                         }
                                     } else {
                                         $collectionItems[] = $childItem;
                                     }
                                 }
                             } else {
                                 $collectionItems[] = $childItem;
                             }
                         }
                     }
                 }
                 // Remove collection item
                 $toRemove = $row['id'];
                 if (array_key_exists($toRemove, $switchedItems)) {
                     $toRemove = $switchedItems[$toRemove];
                 }
                 unset($items[$toRemove]);
             } elseif ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) {
                 // FIXME: Thats a dirty hack to improve file sharing performance,
                 // see github issue #10588 for more details
                 // Need to find a solution which works for all back-ends
                 $collectionBackend = self::getBackend($row['item_type']);
                 $sharedParents = $collectionBackend->getParents($row['item_source']);
                 foreach ($sharedParents as $parent) {
                     $collectionItems[] = $parent;
                 }
             }
         }
         if (!empty($collectionItems)) {
             $collectionItems = array_unique($collectionItems, SORT_REGULAR);
             $items = array_merge($items, $collectionItems);
         }
         // filter out invalid items, these can appear when subshare entries exist
         // for a group in which the requested user isn't a member any more
         $items = array_filter($items, function ($item) {
             return $item['share_type'] !== self::$shareTypeGroupUserUnique;
         });
         return self::formatResult($items, $column, $backend, $format, $parameters);
     } elseif ($includeCollections && $collectionTypes && in_array('folder', $collectionTypes)) {
         // FIXME: Thats a dirty hack to improve file sharing performance,
         // see github issue #10588 for more details
         // Need to find a solution which works for all back-ends
         $collectionItems = array();
         $collectionBackend = self::getBackend('folder');
         $sharedParents = $collectionBackend->getParents($item, $shareWith, $uidOwner);
         foreach ($sharedParents as $parent) {
             $collectionItems[] = $parent;
         }
         if ($limit === 1) {
             return reset($collectionItems);
         }
         return self::formatResult($collectionItems, $column, $backend, $format, $parameters);
     }
     return array();
 }
Ejemplo n.º 8
0
    /**
     * get the list of all unindexed files for the user
     *
     * @return array
     */
    public static function getUnindexed()
    {
        $files = array();
        $absoluteRoot = Filesystem::getView()->getAbsolutePath('/');
        $mounts = Filesystem::getMountPoints($absoluteRoot);
        $mount = Filesystem::getMountPoint($absoluteRoot);
        if (!in_array($mount, $mounts)) {
            $mounts[] = $mount;
        }
        $query = \OC_DB::prepare('
			SELECT `*PREFIX*filecache`.`fileid`
			FROM `*PREFIX*filecache`
			LEFT JOIN `*PREFIX*lucene_status`
			ON `*PREFIX*filecache`.`fileid` = `*PREFIX*lucene_status`.`fileid`
			WHERE `storage` = ?
			AND `status` IS NULL OR `status` = ?
		');
        foreach ($mounts as $mount) {
            if (is_string($mount)) {
                $storage = Filesystem::getStorage($mount);
            } else {
                if ($mount instanceof \OC\Files\Mount\Mount) {
                    $storage = $mount->getStorage();
                } else {
                    $storage = null;
                    Util::writeLog('search_lucene', 'expected string or instance of \\OC\\Files\\Mount\\Mount got ' . json_encode($mount), Util::DEBUG);
                }
            }
            //only index local files for now
            if ($storage instanceof \OC\Files\Storage\Local) {
                $cache = $storage->getCache();
                $numericId = $cache->getNumericStorageId();
                $result = $query->execute(array($numericId, 'N'));
                if (\OC_DB::isError($result)) {
                    Util::writeLog('search_lucene', 'failed to find unindexed files: ' . \OC_DB::getErrorMessage($result), Util::WARN);
                    return false;
                }
                while ($row = $result->fetchRow()) {
                    $files[] = $row['fileid'];
                }
            }
        }
        return $files;
    }
Ejemplo n.º 9
0
 public static function getEnabledApps()
 {
     if (!OC_Config::getValue('installed', false)) {
         return array();
     }
     if (!empty(self::$enabledAppsCache)) {
         return self::$enabledAppsCache;
     }
     $apps = array('files');
     $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' . ' WHERE `configkey` = \'enabled\' AND `configvalue`=\'yes\'';
     if (OC_Config::getValue('dbtype', 'sqlite') === 'oci') {
         //FIXME oracle hack: need to explicitly cast CLOB to CHAR for comparison
         $sql = 'SELECT `appid` FROM `*PREFIX*appconfig`' . ' WHERE `configkey` = \'enabled\' AND to_char(`configvalue`)=\'yes\'';
     }
     $query = OC_DB::prepare($sql);
     $result = $query->execute();
     if (\OC_DB::isError($result)) {
         throw new DatabaseException($result->getMessage(), $query);
     }
     while ($row = $result->fetchRow()) {
         if (array_search($row['appid'], $apps) === false) {
             $apps[] = $row['appid'];
         }
     }
     self::$enabledAppsCache = $apps;
     return $apps;
 }
Ejemplo n.º 10
0
 /**
  * @brief Get shared items from the database
  * @param string Item type
  * @param string Item source or target (optional)
  * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique
  * @param string User or group the item is being shared with
  * @param string User that is the owner of shared items (optional)
  * @param int Format to convert items to with formatItems()
  * @param mixed Parameters to pass to formatItems()
  * @param int Number of items to return, -1 to return all matches (optional)
  * @param bool Include collection item types (optional)
  * @return mixed
  *
  * See public functions getItem(s)... for parameter usage
  *
  */
 private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false)
 {
     if (!self::isEnabled()) {
         if ($limit == 1 || isset($uidOwner) && isset($item)) {
             return false;
         } else {
             return array();
         }
     }
     $backend = self::getBackend($itemType);
     // Get filesystem root to add it to the file target and remove from the file source, match file_source with the file cache
     if ($itemType == 'file' || $itemType == 'folder') {
         $root = \OC_Filesystem::getRoot();
         $where = 'INNER JOIN `*PREFIX*fscache` ON `file_source` = `*PREFIX*fscache`.`id`';
         if (!isset($item)) {
             $where .= ' WHERE `file_target` IS NOT NULL';
         }
         $fileDependent = true;
         $queryArgs = array();
     } else {
         $fileDependent = false;
         $root = '';
         if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) {
             // If includeCollections is true, find collections of this item type, e.g. a music album contains songs
             if (!in_array($itemType, $collectionTypes)) {
                 $itemTypes = array_merge(array($itemType), $collectionTypes);
             } else {
                 $itemTypes = $collectionTypes;
             }
             $placeholders = join(',', array_fill(0, count($itemTypes), '?'));
             $where .= ' WHERE `item_type` IN (' . $placeholders . '))';
             $queryArgs = $itemTypes;
         } else {
             $where = ' WHERE `item_type` = ?';
             $queryArgs = array($itemType);
         }
     }
     if (isset($shareType)) {
         // Include all user and group items
         if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) {
             $where .= ' AND `share_type` IN (?,?,?)';
             $queryArgs[] = self::SHARE_TYPE_USER;
             $queryArgs[] = self::SHARE_TYPE_GROUP;
             $queryArgs[] = self::$shareTypeGroupUserUnique;
             $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith));
             $placeholders = join(',', array_fill(0, count($userAndGroups), '?'));
             $where .= ' AND `share_with` IN (' . $placeholders . ')';
             $queryArgs = array_merge($queryArgs, $userAndGroups);
             // Don't include own group shares
             $where .= ' AND `uid_owner` != ?';
             $queryArgs[] = $shareWith;
         } else {
             $where .= ' AND `share_type` = ?';
             $queryArgs[] = $shareType;
             if (isset($shareWith)) {
                 $where .= ' AND `share_with` = ?';
                 $queryArgs[] = $shareWith;
             }
         }
     }
     if (isset($uidOwner)) {
         $where .= ' AND `uid_owner` = ?';
         $queryArgs[] = $uidOwner;
         if (!isset($shareType)) {
             // Prevent unique user targets for group shares from being selected
             $where .= ' AND `share_type` != ?';
             $queryArgs[] = self::$shareTypeGroupUserUnique;
         }
         if ($itemType == 'file' || $itemType == 'folder') {
             $column = 'file_source';
         } else {
             $column = 'item_source';
         }
     } else {
         if ($itemType == 'file' || $itemType == 'folder') {
             $column = 'file_target';
         } else {
             $column = 'item_target';
         }
     }
     if (isset($item)) {
         if ($includeCollections && ($collectionTypes = self::getCollectionItemTypes($itemType))) {
             $where .= ' AND (';
         } else {
             $where .= ' AND';
         }
         // If looking for own shared items, check item_source else check item_target
         if (isset($uidOwner) || $itemShareWithBySource) {
             // If item type is a file, file source needs to be checked in case the item was converted
             if ($itemType == 'file' || $itemType == 'folder') {
                 $where .= ' `file_source` = ?';
                 $column = 'file_source';
             } else {
                 $where .= ' `item_source` = ?';
                 $column = 'item_source';
             }
         } else {
             if ($itemType == 'file' || $itemType == 'folder') {
                 $where .= ' `file_target` = ?';
                 $item = \OC_Filesystem::normalizePath($item);
             } else {
                 $where .= ' `item_target` = ?';
             }
         }
         $queryArgs[] = $item;
         if ($includeCollections && $collectionTypes) {
             $placeholders = join(',', array_fill(0, count($collectionTypes), '?'));
             $where .= ' OR `item_type` IN (' . $placeholders . '))';
             $queryArgs = array_merge($queryArgs, $collectionTypes);
         }
     }
     if ($limit != -1 && !$includeCollections) {
         if ($shareType == self::$shareTypeUserAndGroups) {
             // Make sure the unique user target is returned if it exists, unique targets should follow the group share in the database
             // If the limit is not 1, the filtering can be done later
             $where .= ' ORDER BY `*PREFIX*share`.`id` DESC';
         }
         // The limit must be at least 3, because filtering needs to be done
         if ($limit < 3) {
             $queryLimit = 3;
         } else {
             $queryLimit = $limit;
         }
     } else {
         $queryLimit = null;
     }
     // TODO Optimize selects
     if ($format == self::FORMAT_STATUSES) {
         if ($itemType == 'file' || $itemType == 'folder') {
             $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `file_source`, `path`, `expiration`';
         } else {
             $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`';
         }
     } else {
         if (isset($uidOwner)) {
             if ($itemType == 'file' || $itemType == 'folder') {
                 $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`, `expiration`, `token`';
             } else {
                 $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`, `stime`, `file_source`, `expiration`, `token`';
             }
         } else {
             if ($fileDependent) {
                 if (($itemType == 'file' || $itemType == 'folder') && $format == \OC_Share_Backend_File::FORMAT_FILE_APP || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) {
                     $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, `share_type`, `share_with`, `file_source`, `path`, `file_target`, `permissions`, `expiration`, `name`, `ctime`, `mtime`, `mimetype`, `size`, `encrypted`, `versioned`, `writable`';
                 } else {
                     $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`';
                 }
             } else {
                 $select = '*';
             }
         }
     }
     $root = strlen($root);
     $query = \OC_DB::prepare('SELECT ' . $select . ' FROM `*PREFIX*share` ' . $where, $queryLimit);
     $result = $query->execute($queryArgs);
     if (\OC_DB::isError($result)) {
         \OC_Log::write('OCP\\Share', \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR);
     }
     $items = array();
     $targets = array();
     while ($row = $result->fetchRow()) {
         // Filter out duplicate group shares for users with unique targets
         if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) {
             $row['share_type'] = self::SHARE_TYPE_GROUP;
             $row['share_with'] = $items[$row['parent']]['share_with'];
             // Remove the parent group share
             unset($items[$row['parent']]);
             if ($row['permissions'] == 0) {
                 continue;
             }
         } else {
             if (!isset($uidOwner)) {
                 // Check if the same target already exists
                 if (isset($targets[$row[$column]])) {
                     // Check if the same owner shared with the user twice through a group and user share - this is allowed
                     $id = $targets[$row[$column]];
                     if ($items[$id]['uid_owner'] == $row['uid_owner']) {
                         // Switch to group share type to ensure resharing conditions aren't bypassed
                         if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {
                             $items[$id]['share_type'] = self::SHARE_TYPE_GROUP;
                             $items[$id]['share_with'] = $row['share_with'];
                         }
                         // Switch ids if sharing permission is granted on only one share to ensure correct parent is used if resharing
                         if (~(int) $items[$id]['permissions'] & PERMISSION_SHARE && (int) $row['permissions'] & PERMISSION_SHARE) {
                             $items[$row['id']] = $items[$id];
                             unset($items[$id]);
                             $id = $row['id'];
                         }
                         // Combine the permissions for the item
                         $items[$id]['permissions'] |= (int) $row['permissions'];
                         continue;
                     }
                 } else {
                     $targets[$row[$column]] = $row['id'];
                 }
             }
         }
         // Remove root from file source paths if retrieving own shared items
         if (isset($uidOwner) && isset($row['path'])) {
             if (isset($row['parent'])) {
                 $row['path'] = '/Shared/' . basename($row['path']);
             } else {
                 $row['path'] = substr($row['path'], $root);
             }
         }
         if (isset($row['expiration'])) {
             $time = new \DateTime();
             if ($row['expiration'] < date('Y-m-d H:i', $time->format('U') - $time->getOffset())) {
                 self::delete($row['id']);
                 continue;
             }
         }
         $items[$row['id']] = $row;
     }
     if (!empty($items)) {
         $collectionItems = array();
         foreach ($items as &$row) {
             // Return only the item instead of a 2-dimensional array
             if ($limit == 1 && $row['item_type'] == $itemType && $row[$column] == $item) {
                 if ($format == self::FORMAT_NONE) {
                     return $row;
                 } else {
                     break;
                 }
             }
             // Check if this is a collection of the requested item type
             if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) {
                 if (($collectionBackend = self::getBackend($row['item_type'])) && $collectionBackend instanceof Share_Backend_Collection) {
                     // Collections can be inside collections, check if the item is a collection
                     if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) {
                         $collectionItems[] = $row;
                     } else {
                         $collection = array();
                         $collection['item_type'] = $row['item_type'];
                         if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
                             $collection['path'] = basename($row['path']);
                         }
                         $row['collection'] = $collection;
                         // Fetch all of the children sources
                         $children = $collectionBackend->getChildren($row[$column]);
                         foreach ($children as $child) {
                             $childItem = $row;
                             $childItem['item_type'] = $itemType;
                             if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') {
                                 $childItem['item_source'] = $child['source'];
                                 $childItem['item_target'] = $child['target'];
                             }
                             if ($backend instanceof Share_Backend_File_Dependent) {
                                 if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') {
                                     $childItem['file_source'] = $child['source'];
                                 } else {
                                     $childItem['file_source'] = \OC_FileCache::getId($child['file_path']);
                                 }
                                 $childItem['file_target'] = \OC_Filesystem::normalizePath($child['file_path']);
                             }
                             if (isset($item)) {
                                 if ($childItem[$column] == $item) {
                                     // Return only the item instead of a 2-dimensional array
                                     if ($limit == 1) {
                                         if ($format == self::FORMAT_NONE) {
                                             return $childItem;
                                         } else {
                                             // Unset the items array and break out of both loops
                                             $items = array();
                                             $items[] = $childItem;
                                             break 2;
                                         }
                                     } else {
                                         $collectionItems[] = $childItem;
                                     }
                                 }
                             } else {
                                 $collectionItems[] = $childItem;
                             }
                         }
                     }
                 }
                 // Remove collection item
                 unset($items[$row['id']]);
             }
         }
         if (!empty($collectionItems)) {
             $items = array_merge($items, $collectionItems);
         }
         if ($format == self::FORMAT_NONE) {
             return $items;
         } else {
             if ($format == self::FORMAT_STATUSES) {
                 $statuses = array();
                 // Switch column to path for files and folders, used for determining statuses inside of folders
                 if ($itemType == 'file' || $itemType == 'folder') {
                     $column = 'path';
                 }
                 foreach ($items as $item) {
                     if ($item['share_type'] == self::SHARE_TYPE_LINK) {
                         $statuses[$item[$column]] = true;
                     } else {
                         if (!isset($statuses[$item[$column]])) {
                             $statuses[$item[$column]] = false;
                         }
                     }
                 }
                 return $statuses;
             } else {
                 return $backend->formatItems($items, $format, $parameters);
             }
         }
     } else {
         if ($limit == 1 || isset($uidOwner) && isset($item)) {
             return false;
         }
     }
     return array();
 }
Ejemplo n.º 11
0
 /**
  * Returns the list of active addressbooks for a specific user.
  *
  * @param string $userid
  * @return array
  */
 public function getAddressBooksForUser(array $options = array())
 {
     try {
         if (!isset(self::$preparedQueries['addressbooksforuser'])) {
             $sql = 'SELECT `configkey` from *PREFIX*preferences where `configkey` like ?';
             $configkeyPrefix = $this->name . "_%_uri";
             self::$preparedQueries['addressbooksforuser'] = \OCP\DB::prepare($sql);
             $result = self::$preparedQueries['addressbooksforuser']->execute(array($configkeyPrefix));
             if (\OC_DB::isError($result)) {
                 \OCP\Util::write('contacts', __METHOD__ . 'DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
                 return $this->addressbooks;
             }
             $this->addressbooks = array();
             while ($row = $result->fetchRow()) {
                 $id = str_replace("_uri", "", str_replace($this->name . "_", "", $row['configkey']));
                 $this->addressbooks[] = self::getAddressBook($id);
             }
             return $this->addressbooks;
         }
     } catch (\Exception $e) {
         \OC_Log::write('contacts', __METHOD__ . ' exception: ' . $e->getMessage(), \OCP\Util::ERROR);
         return $this->addressbooks;
     }
 }
Ejemplo n.º 12
0
 /**
  * get the file id as used in the cache
  * unlike the public getId, full paths are used here (/usename/files/foo instead of /foo)
  * @param string $path
  * @return int
  */
 private static function getFileId($path)
 {
     $query = OC_DB::prepare('SELECT id FROM *PREFIX*fscache WHERE path_hash=?');
     if (OC_DB::isError($query)) {
         OC_Log::write('files', 'error while getting file id of ' . $path, OC_Log::ERROR);
         return -1;
     }
     $result = $query->execute(array(md5($path)));
     if (OC_DB::isError($result)) {
         OC_Log::write('files', 'error while getting file id of ' . $path, OC_Log::ERROR);
         return -1;
     }
     $result = $result->fetchRow();
     if (is_array($result)) {
         return $result['id'];
     } else {
         OC_Log::write('files', 'getFileId(): file not found in cache (' . $path . ')', OC_Log::DEBUG);
         return -1;
     }
 }
Ejemplo n.º 13
0
 private static function db_get_usersOfGroup($gid)
 {
     $query = OC_DB::prepare('SELECT * FROM `*PREFIX*group_user` WHERE `gid` = ?');
     $result = $query->execute(array($gid));
     if (OC_DB::isError($result)) {
         return -1;
     }
     $users = array();
     while ($row = $result->fetchRow()) {
         $users[] = $row['uid'];
     }
     return $users;
 }
Ejemplo n.º 14
0
 /**
  * checks if a user is enabled
  * @param string $userid
  * @return bool
  */
 public static function isEnabled($userid)
 {
     $sql = "SELECT `userid` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?";
     $stmt = OC_DB::prepare($sql);
     if (!OC_DB::isError($stmt)) {
         $result = $stmt->execute(array($userid, 'core', 'enabled', 'false'));
         if (!OC_DB::isError($result)) {
             return $result->numRows() ? false : true;
         } else {
             OC_Log::write('OC_User', 'could not check if enabled: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
         }
     } else {
         OC_Log::write('OC_User', 'could not check if enabled: ' . OC_DB::getErrorMessage($stmt), OC_Log::ERROR);
     }
     return false;
 }
Ejemplo n.º 15
0
 private function loadUser($uid)
 {
     if (empty($this->cache[$uid])) {
         $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)');
         $result = $query->execute(array($uid));
         if (OC_DB::isError($result)) {
             OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR);
             return false;
         }
         while ($row = $result->fetchRow()) {
             $this->cache[$uid]['uid'] = $row['uid'];
             $this->cache[$uid]['displayname'] = $row['displayname'];
         }
     }
     return true;
 }
Ejemplo n.º 16
0
 /**
  * @brief Delete categories from the db and from all the vobject supplied
  * @param $names An array of categories to delete
  * @param $objects An array of arrays with [id,vobject] (as text) pairs suitable for updating the apps object table.
  */
 public function delete($names, array &$objects = null)
 {
     if (!is_array($names)) {
         $names = array($names);
     }
     OC_Log::write('core', __METHOD__ . ', before: ' . print_r($this->categories, true), OC_Log::DEBUG);
     foreach ($names as $name) {
         $id = null;
         OC_Log::write('core', __METHOD__ . ', ' . $name, OC_Log::DEBUG);
         if ($this->hasCategory($name)) {
             $id = $this->array_searchi($name, $this->categories);
             unset($this->categories[$id]);
         }
         try {
             $stmt = OCP\DB::prepare('DELETE FROM `' . self::CATEGORY_TABLE . '` WHERE ' . '`uid` = ? AND `type` = ? AND `category` = ?');
             $result = $stmt->execute(array($this->user, $this->type, $name));
             if (OC_DB::isError($result)) {
                 OC_Log::write('core', __METHOD__ . 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
             }
         } catch (Exception $e) {
             OCP\Util::writeLog('core', __METHOD__ . ', exception: ' . $e->getMessage(), OCP\Util::ERROR);
         }
         if (!is_null($id) && $id !== false) {
             try {
                 $sql = 'DELETE FROM `' . self::RELATION_TABLE . '` ' . 'WHERE `categoryid` = ?';
                 $stmt = OCP\DB::prepare($sql);
                 $result = $stmt->execute(array($id));
                 if (OC_DB::isError($result)) {
                     OC_Log::write('core', __METHOD__ . 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
                 }
             } catch (Exception $e) {
                 OCP\Util::writeLog('core', __METHOD__ . ', exception: ' . $e->getMessage(), OCP\Util::ERROR);
                 return false;
             }
         }
     }
     OC_Log::write('core', __METHOD__ . ', after: ' . print_r($this->categories, true), OC_Log::DEBUG);
     if (!is_null($objects)) {
         foreach ($objects as $key => &$value) {
             $vobject = OC_VObject::parse($value[1]);
             if (!is_null($vobject)) {
                 $object = null;
                 $componentname = '';
                 if (isset($vobject->VEVENT)) {
                     $object = $vobject->VEVENT;
                     $componentname = 'VEVENT';
                 } else {
                     if (isset($vobject->VTODO)) {
                         $object = $vobject->VTODO;
                         $componentname = 'VTODO';
                     } else {
                         if (isset($vobject->VJOURNAL)) {
                             $object = $vobject->VJOURNAL;
                             $componentname = 'VJOURNAL';
                         } else {
                             $object = $vobject;
                         }
                     }
                 }
                 $categories = $object->getAsArray('CATEGORIES');
                 foreach ($names as $name) {
                     $idx = $this->array_searchi($name, $categories);
                     if ($idx !== false) {
                         OC_Log::write('core', __METHOD__ . ', unsetting: ' . $categories[$this->array_searchi($name, $categories)], OC_Log::DEBUG);
                         unset($categories[$this->array_searchi($name, $categories)]);
                     }
                 }
                 $object->setString('CATEGORIES', implode(',', $categories));
                 if ($vobject !== $object) {
                     $vobject[$componentname] = $object;
                 }
                 $value[1] = $vobject->serialize();
                 $objects[$key] = $value;
             } else {
                 OC_Log::write('core', __METHOD__ . ', unable to parse. ID: ' . $value[0] . ', ' . substr($value[1], 0, 50) . '(...)', OC_Log::DEBUG);
             }
         }
     }
 }
Ejemplo n.º 17
0
 /**
  * Check if a result is an error, works with MDB2 and PDOException
  * @param mixed $result
  * @return bool
  */
 public static function isError($result)
 {
     return \OC_DB::isError($result);
 }
Ejemplo n.º 18
0
 /**
  * get the file id as used in the cache
  * @param string path
  * @param string root (optional)
  * @return int
  */
 public static function getId($path, $root = false)
 {
     if ($root === false) {
         $root = OC_Filesystem::getRoot();
     }
     $fullPath = $root . $path;
     if (($cache = OC_Cache::getUserCache(true)) && $cache->hasKey('fileid/' . $fullPath)) {
         return $cache->get('fileid/' . $fullPath);
     }
     $query = OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `path_hash`=?');
     $result = $query->execute(array(md5($fullPath)));
     if (OC_DB::isError($result)) {
         OC_Log::write('files', 'error while getting file id of ' . $path, OC_Log::ERROR);
         return -1;
     }
     $result = $result->fetchRow();
     if (is_array($result)) {
         $id = $result['id'];
     } else {
         $id = -1;
     }
     if ($cache = OC_Cache::getUserCache(true)) {
         $cache->set('fileid/' . $fullPath, $id);
     }
     return $id;
 }
Ejemplo n.º 19
0
 /**
  * checks if a user is enabled
  * @param string $userid
  * @return bool
  */
 public static function isEnabled($userid)
 {
     $sql = 'SELECT `userid` FROM `*PREFIX*preferences`' . ' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?';
     if (OC_Config::getValue('dbtype', 'sqlite') === 'oci') {
         //FIXME oracle hack
         $sql = 'SELECT `userid` FROM `*PREFIX*preferences`' . ' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND to_char(`configvalue`) = ?';
     }
     $stmt = OC_DB::prepare($sql);
     if (!OC_DB::isError($stmt)) {
         $result = $stmt->execute(array($userid, 'core', 'enabled', 'false'));
         if (!OC_DB::isError($result)) {
             return $result->numRows() ? false : true;
         } else {
             OC_Log::write('OC_User', 'could not check if enabled: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
         }
     } else {
         OC_Log::write('OC_User', 'could not check if enabled: ' . OC_DB::getErrorMessage($stmt), OC_Log::ERROR);
     }
     return false;
 }
Ejemplo n.º 20
0
 public static function updateDBProperties($contactid, $vcard = null)
 {
     $stmt = \OCP\DB::prepare('DELETE FROM `*PREFIX*contacts_cards_properties` WHERE `contactid` = ?');
     try {
         $stmt->execute(array($contactid));
     } catch (\Exception $e) {
         \OCP\Util::writeLog('contacts', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::ERROR);
         \OCP\Util::writeLog('contacts', __METHOD__ . ', id: ' . $id, \OCP\Util::DEBUG);
         throw new \Exception(App::$l10n->t('There was an error deleting properties for this contact.'));
     }
     if (is_null($vcard)) {
         return;
     }
     $stmt = \OCP\DB::prepare('INSERT INTO `*PREFIX*contacts_cards_properties` ' . '(`userid`, `contactid`,`name`,`value`,`preferred`) VALUES(?,?,?,?,?)');
     foreach ($vcard->children as $property) {
         if (!in_array($property->name, self::$index_properties)) {
             continue;
         }
         $preferred = false;
         foreach ($property->parameters as $parameter) {
             if ($parameter->name == 'TYPE' && strtoupper($parameter->value) == 'PREF') {
                 $preferred = true;
                 break;
             }
         }
         try {
             $result = $stmt->execute(array(\OCP\User::getUser(), $contactid, $property->name, $property->value, $preferred));
             if (\OC_DB::isError($result)) {
                 \OCP\Util::writeLog('contacts', __METHOD__ . 'DB error: ' . \OC_DB::getErrorMessage($result), \OC_Log::ERROR);
                 return false;
             }
         } catch (\Exception $e) {
             \OCP\Util::writeLog('contacts', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::ERROR);
             \OCP\Util::writeLog('contacts', __METHOD__ . ', aid: ' . $aid . ' uri' . $uri, \OCP\Util::DEBUG);
             return false;
         }
     }
 }
Ejemplo n.º 21
0
        OCP\JSON::error(array("data" => array("message" => $l->t("check apps folder rights"))));
    }
} else {
    if ($_POST && $_POST["otp_action"] === "send_email_otp" && $mOtp->CheckUserExists($uid)) {
        $mOtp->SetUser($uid);
        if (OCP\Config::getAppValue('user_otp', 'TokenBase32Encode', true)) {
            $UserTokenSeed = base32_encode(hex2bin($mOtp->GetUserTokenSeed()));
            //$tmpl->assign('TokenBase32Encode',true);
        } else {
            $UserTokenSeed = hex2bin($mOtp->GetUserTokenSeed());
        }
        $key = 'email';
        $mail = "";
        $query = OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `configkey` = ? AND `userid`=?');
        $result = $query->execute(array($key, $uid));
        if (!OC_DB::isError($result)) {
            $row = $result->fetchRow();
            $mail = $row['configvalue'];
        }
        $txtmsg = '<html><p>Hi, ' . $uid . ', <br><br>';
        $txtmsg .= '<p>find your OTP Configuration<br>';
        $txtmsg .= 'User Algorithm : ' . $mOtp->GetUserAlgorithm() . '<br>';
        if ($mOtp->GetUserPrefixPin()) {
            $txtmsg .= 'User Pin : ' . $mOtp->GetUserPin() . '<br>';
        }
        $txtmsg .= 'User Token Seed : ' . $UserTokenSeed . "<br>";
        $txtmsg .= 'User Token Time Interval Or Last Event : ' . (strtolower($mOtp->GetUserAlgorithm()) === 'htop' ? $mOtp->GetUserTokenLastEvent() : $mOtp->GetUserTokenTimeInterval()) . "<br>";
        $txtmsg .= 'Token Url Link : ' . $mOtp->GetUserTokenUrlLink() . "<br>";
        $txtmsg .= 'With android token apps select base32 before input seed<br>';
        $txtmsg .= '<img src="data:image/png;base64,' . base64_encode($mOtp->GetUserTokenQrCode($mOtp->GetUser(), '', 'binary')) . '"/><br><br>';
        $txtmsg .= $l->t('<p>This e-mail is automatic, please, do not reply to it.</p></html>');
Ejemplo n.º 22
0
 /**
  * @brief Move card(s) to an address book
  * @param integer $aid Address book id
  * @param $id Array or integer of cards to be moved.
  * @return boolean
  *
  */
 public static function moveToAddressBook($aid, $id, $isAddressbook = false)
 {
     Addressbook::find($aid);
     $addressbook = Addressbook::find($aid);
     if ($addressbook['userid'] != \OCP\User::getUser()) {
         $sharedAddressbook = \OCP\Share::getItemSharedWithBySource('addressbook', $aid);
         if (!$sharedAddressbook || !($sharedAddressbook['permissions'] & \OCP\PERMISSION_CREATE)) {
             return false;
         }
     }
     if (is_array($id)) {
         foreach ($id as $index => $cardId) {
             $card = self::find($cardId);
             if (!$card) {
                 unset($id[$index]);
             }
             $oldAddressbook = Addressbook::find($card['addressbookid']);
             if ($oldAddressbook['userid'] != \OCP\User::getUser()) {
                 $sharedContact = \OCP\Share::getItemSharedWithBySource('contact', $cardId, \OCP\Share::FORMAT_NONE, null, true);
                 if (!$sharedContact || !($sharedContact['permissions'] & \OCP\PERMISSION_DELETE)) {
                     unset($id[$index]);
                 }
             }
         }
         $id_sql = join(',', array_fill(0, count($id), '?'));
         $prep = 'UPDATE `*PREFIX*contacts_cards` SET `addressbookid` = ? WHERE `id` IN (' . $id_sql . ')';
         try {
             $stmt = \OCP\DB::prepare($prep);
             //$aid = array($aid);
             $vals = array_merge((array) $aid, $id);
             $result = $stmt->execute($vals);
             if (\OC_DB::isError($result)) {
                 \OC_Log::write('contacts', __METHOD__ . 'DB error: ' . \OC_DB::getErrorMessage($result), \OC_Log::ERROR);
                 return false;
             }
         } catch (\Exception $e) {
             \OCP\Util::writeLog('contacts', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::ERROR);
             \OCP\Util::writeLog('contacts', __METHOD__ . ', ids: ' . join(',', $vals), \OCP\Util::DEBUG);
             \OCP\Util::writeLog('contacts', __METHOD__ . ', SQL:' . $prep, \OCP\Util::DEBUG);
             return false;
         }
     } else {
         $stmt = null;
         if ($isAddressbook) {
             $stmt = \OCP\DB::prepare('UPDATE `*PREFIX*contacts_cards` SET `addressbookid` = ? WHERE `addressbookid` = ?');
         } else {
             $card = self::find($id);
             if (!$card) {
                 return false;
             }
             $oldAddressbook = Addressbook::find($card['addressbookid']);
             if ($oldAddressbook['userid'] != \OCP\User::getUser()) {
                 $sharedContact = \OCP\Share::getItemSharedWithBySource('contact', $id, \OCP\Share::FORMAT_NONE, null, true);
                 if (!$sharedContact || !($sharedContact['permissions'] & \OCP\PERMISSION_DELETE)) {
                     return false;
                 }
             }
             $stmt = \OCP\DB::prepare('UPDATE `*PREFIX*contacts_cards` SET `addressbookid` = ? WHERE `id` = ?');
         }
         try {
             $result = $stmt->execute(array($aid, $id));
             if (\OC_DB::isError($result)) {
                 \OC_Log::write('contacts', __METHOD__ . 'DB error: ' . \OC_DB::getErrorMessage($result), \OC_Log::ERROR);
                 return false;
             }
         } catch (\Exception $e) {
             \OCP\Util::writeLog('contacts', __METHOD__ . ', exception: ' . $e->getMessage(), \OCP\Util::DEBUG);
             \OCP\Util::writeLog('contacts', __METHOD__ . ' id: ' . $id, \OCP\Util::DEBUG);
             return false;
         }
     }
     \OC_Hook::emit('\\OCA\\Contacts\\VCard', 'post_moveToAddressbook', array('aid' => $aid, 'id' => $id));
     Addressbook::touch($aid);
     return true;
 }
Ejemplo n.º 23
0
 /**
  * find a folder in the cache which has not been fully scanned
  *
  * If multiply incomplete folders are in the cache, the one with the highest id will be returned,
  * use the one with the highest id gives the best result with the background scanner, since that is most
  * likely the folder where we stopped scanning previously
  *
  * @return string|bool the path of the folder or false when no folder matched
  */
 public function getIncomplete()
 {
     $query = \OC_DB::prepare('SELECT `path` FROM `*PREFIX*filecache`' . ' WHERE `storage` = ? AND `size` = -1 ORDER BY `fileid` DESC', 1);
     $result = $query->execute(array($this->numericId));
     if (\OC_DB::isError($result)) {
         \OCP\Util::writeLog('cache', 'getIncomplete failed: ' . $result->getMessage(), \OCP\Util::ERROR);
     }
     if ($row = $result->fetchRow()) {
         return $row['path'];
     } else {
         return false;
     }
 }
Ejemplo n.º 24
0
 /**
  * @brief check if a user exists
  * @param string $uid the username
  * @return boolean
  */
 public function userExists($uid)
 {
     $query = OC_DB::prepare('SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)');
     $result = $query->execute(array($uid));
     if (OC_DB::isError($result)) {
         OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR);
         return false;
     }
     return $result->numRows() > 0;
 }