StorageUsageCurrentProvider::getChartUsage()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 20
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 20
rs 9.4285
cc 2
eloc 12
nc 2
nop 0
1
<?php
2
/**
3
 * Copyright (c) 2014 - Arno van Rossum <[email protected]>
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 * THE SOFTWARE.
22
 */
23
24
namespace OCA\ocUsageCharts\DataProviders\Storage;
25
use OCA\ocUsageCharts\DataProviders\DataProviderInterface;
26
use OCA\ocUsageCharts\Entity\Storage\StorageUsage;
27
28
/**
29
 * @author Arno van Rossum <[email protected]>
30
 */
31
class StorageUsageCurrentProvider extends StorageUsageBase implements DataProviderInterface, DataProviderStorageInterface
32
{
33
    /**
34
     * Return the chart data you want to return based on the ChartConfig
35
     *
36
     * @return mixed
37
     */
38
    public function getChartUsage()
39
    {
40
        $storageInfo = $this->storage->getCurrentStorageUsageForSignedInUser();
41
        $free = ceil($storageInfo['free'] / 1024 / 1024);
42
43
        if ( $this->user->isAdminUser($this->user->getSignedInUsername()) )
44
        {
45
            $data = $this->retrieveStorageUsagePerUser();
46
            $data['free'] = $free;
47
        }
48
        else
49
        {
50
            $used = ceil($storageInfo['used'] / 1024 / 1024);
51
            $data = array(
52
                'used' => $used,
53
                'free' => $free
54
            );
55
        }
56
        return $data;
57
    }
58
59
    /**
60
     * @return array
61
     */
62
    private function retrieveStorageUsagePerUser()
63
    {
64
        $new = array();
65
        $data = $this->repository->findAllWithLimit(1);
66
        foreach($data as $uid => $items)
67
        {
68
            $username = $this->user->getDisplayName($uid);
69
            /** @var StorageUsage $item */
70
            foreach($items as $item)
71
            {
72
                $new[$username] = ceil($item->getUsage() / 1024 / 1024);
73
            }
74
        }
75
        return $new;
76
    }
77
}