Failed Conditions
Pull Request — master (#6)
by Sander
01:54
created

Utils::getMicroTime()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Nextcloud - namespace OCA\Nextnote
4
 *
5
 * @copyright Copyright (c) 2016, Sander Brand ([email protected])
6
 * @copyright Copyright (c) 2016, Marcos Zuriaga Miguel ([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\OwnNote\Utility;
25
26
use OCP\IL10N;
27
28
class Utils {
29
    /**
30
     * Gets the unix epoch UTC timestamp
31
     * @return int
32
     */
33
	public static function getTime() {
34
		return (new \DateTime())->getTimestamp();
35
	}
36
	/**
37
	 * @return int the current unix time in milliseconds
38
	 */
39
	public static function getMicroTime() {
40
		return microtime(true);
41
	}
42
43
	/**
44
	 * @param $uid
45
	 * @return string
46
	 */
47
	public static function getNameByUid($uid){
48
		$um = \OC::$server->getUserManager();
49
		$u = $um->get($uid);
50
		return $u->getDisplayName();
51
	}
52
53
	/**
54
	 * Splits a string in parts of 5Mb
55
	 * @param $str
56
	 * @return array
57
	 */
58
	public function splitContent($str) {
59
		$maxlength = 2621440; // 5 Megs (2 bytes per character)
60
		$count = 0;
61
		$strarray = array();
62
		while (true) {
63
			if (strlen($str) <= $maxlength) {
64
				$strarray[$count++] = $str;
65
				return $strarray;
66
			} else {
67
				$strarray[$count++] = substr($str, 0, $maxlength);
68
				$str = substr($str, $maxlength);
69
			}
70
		}
71
		return $strarray;
72
	}
73
74
75
}