Failed Conditions
Pull Request — master (#21)
by Sander
01:18
created

NextNoteShareBackend::isValidSource()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
/**
3
 * Nextcloud - NextNote
4
 *
5
 * @copyright Copyright (c) 2015, Ben Curtis <[email protected]>
6
 * @copyright Copyright (c) 2017, Sander Brand ([email protected])
7
 * @license GNU AGPL version 3 or any later version
8
 *
9
 * This program is free software: you can redistribute it and/or modify
10
 * it under the terms of the GNU Affero General Public License as
11
 * published by the Free Software Foundation, either version 3 of the
12
 * License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU Affero General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Affero General Public License
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
 *
22
 */
23
24
namespace OCA\NextNote\ShareBackend;
25
26
use \OCP\Share_Backend;
27
28
class NextNoteShareBackend implements Share_Backend {
29
30
	private $db;
31
32
	public function __construct() {
33
		$this->db = \OC::$server->getDatabaseConnection();
34
	}
35
36
	/**
37
	 * Check if this $itemSource exist for the user
38
	 * @param string $itemSource
39
	 * @param string $uidOwner Owner of the item
40
	 * @return boolean|null Source
41
	 *
42
	 * Return false if the item does not exist for the user
43
	 * @since 5.0.0
44
	 */
45
	public function isValidSource($itemSource, $uidOwner) {
46
		// todo: real test
47
		// id => 1, has admin 
48
		// has owner this note?
49
		return true;
50
	}
51
	
52
	/**
53
	 * Get a unique name of the item for the specified user
54
	 * @param string $itemSource
55
	 * @param string|false $shareWith User the item is being shared with
56
	 * @param array|null $exclude List of similar item names already existing as shared items @deprecated since version OC7
57
	 * @return string Target name
58
	 *
59
	 * This function needs to verify that the user does not already have an item with this name.
60
	 * If it does generate a new name e.g. name_#
61
	 * @since 5.0.0
62
	 */
63
	public function generateTarget($itemSource, $shareWith, $exclude = null) {
64
		// note id (should be unique)
65
		return $itemSource;
66
	}
67
68
	/**
69
	 * Converts the shared item sources back into the item in the specified format
70
	 * @param array $items Shared items
71
	 * @param int $format
72
	 * @return array
73
	 *
74
	 * The items array is a 3-dimensional array with the item_source as the
75
	 * first key and the share id as the second key to an array with the share
76
	 * info.
77
	 *
78
	 * The key/value pairs included in the share info depend on the function originally called:
79
	 * If called by getItem(s)Shared: id, item_type, item, item_source,
80
	 * share_type, share_with, permissions, stime, file_source
81
	 *
82
	 * If called by getItem(s)SharedWith: id, item_type, item, item_source,
83
	 * item_target, share_type, share_with, permissions, stime, file_source,
84
	 * file_target
85
	 *
86
	 * This function allows the backend to control the output of shared items with custom formats.
87
	 * It is only called through calls to the public getItem(s)Shared(With) functions.
88
	 * @since 5.0.0
89
	 */
90
	public function formatItems($items, $format, $parameters = null) {
91
		if ($format === 'shares') {
0 ignored issues
show
Unused Code Bug introduced by
The strict comparison === seems to always evaluate to false as the types of $format (integer) and 'shares' (string) can never be identical. Maybe you want to use a loose comparison == instead?
Loading history...
92
			return $items;
93
		}
94
		
95
		// get the ownnote ids
96
		$ids = Array();
97
		foreach($items as $item) {
98
			$ids[] = $item['item_source'];
99
		}
100
		
101
		// get notes from database
102
		$select_clause = "SELECT id, uid, name, grouping, mtime, deleted FROM *PREFIX*ownnote WHERE id in (";
103
		$select_clause .= implode(',', $ids);
104
		$select_clause .= ") ORDER BY id";
105
		$q = $this->db->executeQuery($select_clause, array());
106
		//$query = \OCP\DB::prepare($select_clause);
107
		$results = $q->fetchAll();
108
109
		// add permissions to items
110
		if ($format === 'populated_shares') {
0 ignored issues
show
Unused Code Bug introduced by
The strict comparison === seems to always evaluate to false as the types of $format (integer) and 'populated_shares' (string) can never be identical. Maybe you want to use a loose comparison == instead?
Loading history...
111
			$full_items = Array();
112
			foreach($results as $index => $result) {
113
				$full_items[] = array_merge($items[$index], $result);
114
			}
115
			$results = $full_items;
116
		}
117
		
118
		return $results;
119
	}
120
	
121
	/**
122
	 * Check if a given share type is allowd by the back-end
123
	 *
124
	 * @param int $shareType share type
125
	 * @return boolean
126
	 *
127
	 * The back-end can enable/disable specific share types. Just return true if
128
	 * the back-end doesn't provide any specific settings for it and want to allow
129
	 * all share types defined by the share API
130
	 * @since 8.0.0
131
	 */
132
	public function isShareTypeAllowed($shareType) {
133
		return true;
134
	}
135
	
136
}