- public function bookChildrenQuery($book_id, $filterDrafts = false) {
-
- // Draft setup
- $params = [
- 'userId' => $this->currentUser()->id,
- 'bookIdPage' => $book_id,
- 'bookIdChapter' => $book_id
- ];
- if (!$filterDrafts) {
- $params['userIdDrafts'] = $this->currentUser()->id;
- }
- // Role setup
- $userRoles = $this->getRoles();
- $roleBindings = [];
- $roleValues = [];
- foreach ($userRoles as $index => $roleId) {
- $roleBindings[':role'.$index] = $roleId;
- $roleValues['role'.$index] = $roleId;
- }
- // TODO - Clean this up, Maybe extract into a nice class for doing these kind of manual things
- // Something which will handle the above role crap in a nice clean way
- $roleBindingString = implode(',', array_keys($roleBindings));
- $query = "SELECT * from (
-(SELECT 'Bookstack\\\Page' as entity_type, id, slug, name, text, '' as description, book_id, priority, chapter_id, draft FROM {$this->page->getTable()}
- where book_id = :bookIdPage AND ". ($filterDrafts ? '(draft = 0)' : '(draft = 0 OR (draft = 1 AND created_by = :userIdDrafts))') .")
-UNION
-(SELECT 'Bookstack\\\Chapter' as entity_type, id, slug, name, '' as text, description, book_id, priority, 0 as chapter_id, 0 as draft FROM {$this->chapter->getTable()} WHERE book_id = :bookIdChapter)
-) as U WHERE (
- SELECT COUNT(*) FROM {$this->jointPermission->getTable()} jp
- WHERE
- jp.entity_id=U.id AND
- jp.entity_type=U.entity_type AND
- jp.action = 'view' AND
- jp.role_id IN ({$roleBindingString}) AND
- (
- jp.has_permission = 1 OR
- (jp.has_permission_own = 1 AND jp.created_by = :userId)
- )
-) > 0
-ORDER BY draft desc, priority asc";
-
- $this->clean();
- return $this->db->select($query, array_replace($roleValues, $params));
- }
-