MISP/app/Model/SharingGroup.php

139 lines
4.2 KiB
PHP
Raw Normal View History

2015-02-23 11:33:38 +01:00
<?php
App::uses('AppModel', 'Model');
class SharingGroup extends AppModel {
public $actsAs = array('Containable');
public $validate = array(
'name' => array(
'unique' => array(
'rule' => 'isUnique',
'message' => 'A sharing group with this name already exists.'
),
'notempty' => array(
'rule' => array('notempty'),
),
),
'uuid' => array(
'uuid' => array(
'rule' => array('uuid'),
'message' => 'Please provide a valid UUID'
),
)
);
public $hasMany = array(
2015-04-07 00:24:44 +02:00
'SharingGroupOrg' => array(
'className' => 'SharingGroupOrg',
'foreignKey' => 'sharing_group_id',
'dependent' => true, // cascade deletes
),
'SharingGroupServer' => array(
'className' => 'SharingGroupServer',
2015-02-23 11:33:38 +01:00
'foreignKey' => 'sharing_group_id',
'dependent' => true, // cascade deletes
)
);
public $belongsTo = array(
'Organisation' => array(
'className' => 'Organisation',
2015-04-18 07:53:18 +02:00
'foreignKey' => 'org_id',
2015-02-23 11:33:38 +01:00
)
);
2015-02-23 11:33:38 +01:00
public function beforeValidate($options = array()) {
parent::beforeValidate();
if (empty($this->data['SharingGroup']['uuid'])) {
$this->data['SharingGroup']['uuid'] = String::uuid();
}
$date = date('Y-m-d H:i:s');
if (empty($this->data['SharingGroup']['date_created'])) {
$this->data['SharingGroup']['date_created'] = $date;
}
$this->data['SharingGroup']['date_modified'] = $date;
return true;
}
2015-04-07 00:24:44 +02:00
// returns a list of all sharing groups that the user is allowed to see
// scope can be:
// full: Entire SG object with all organisations and servers attached
// name: array in ID => name key => value format
// false: array with all IDs
public function fetchAllAuthorised($user, $scope = false, $active = false) {
$conditions = array();
if ($active !== false) $conditions['AND'][] = array('SharingGroup.active' => $active);
2015-04-07 00:24:44 +02:00
if ($user['Role']['perm_site_admin']) {
$sgs = $this->find('all', array(
'recursive' => -1,
'fields' => array('id'),
'conditions' => $conditions
2015-04-07 00:24:44 +02:00
));
$ids = array();
foreach ($sgs as $sg) $ids[] = $sg['SharingGroup']['id'];
} else {
$ids = array_unique(array_merge($this->SharingGroupServer->fetchAllAuthorised(), $this->SharingGroupOrg->fetchAllAuthorised($user['Organisation']['id'])));
2015-02-23 11:33:38 +01:00
}
if ($scope === 'full') {
if (!empty($ids)) $conditions['And'][] = array('SharingGroup.id' => $ids);
$sgs = $this->find('all', array(
'contain' => array('SharingGroupServer' => array('Server'), 'SharingGroupOrg' => array('Organisation'), 'Organisation'),
'conditions' => $conditions,
'order' => 'name ASC'
));
return $sgs;
} else if ($scope == 'name') {
if (!empty($ids)) $conditions['And'][] = array('SharingGroup.id' => $ids);
$sgs = $this->find('list', array(
'recursive' => -1,
'fields' => array('id', 'name'),
'order' => 'name ASC',
'conditions' => $conditions,
));
return $sgs;
} else {
return $ids;
}
2015-02-23 11:33:38 +01:00
}
2015-04-18 07:53:18 +02:00
public function checkIfAuthorisedExtend($user, $id) {
if ($this->checkIfOwner($user, $id)) return true;
$this->id = $id;
if (!$this->exists()) return false;
$sg = $this->SharingGroupOrg->find('first', array(
'conditions' => array(
'sharing_group_id' => $id,
'org_id' => $user['org_id'],
'extend' => 1,
),
'recursive' => -1,
'fields' => array('id', 'org_id', 'extend')
));
if (empty($sg)) return false;
else return true;
}
2015-04-07 00:24:44 +02:00
// returns true if the SG exists and the user is allowed to see it
public function checkIfAuthorised($user, $id) {
if (!isset($user['id'])) throw new MethodNotAllowedException('Invalid user.');
$this->id = $id;
if (!$this->exists()) return false;
if ($user['Role']['perm_site_admin'] || $this->SharingGroupServer->checkIfAuthorised($id) || $this->SharingGroupOrg->checkIfAuthorised($id, $user['Organisation']['id'])) return true;
return false;
2015-02-23 11:33:38 +01:00
}
2015-04-07 00:24:44 +02:00
public function checkIfOwner($user, $id) {
if (!isset($user['id'])) throw new MethodNotAllowedException('Invalid user.');
$this->id = $id;
if (!$this->exists()) return false;
if ($user['Role']['perm_site_admin']) return true;
$sg = $this->find('first', array(
'conditions' => array('SharingGroup.id' => $id),
'recursive' => -1,
2015-04-18 07:53:18 +02:00
'fields' => array('id', 'org_id'),
2015-04-07 00:24:44 +02:00
));
2015-04-18 07:53:18 +02:00
return ($sg['SharingGroup']['org_id'] == $user['org_id']);
2015-04-07 00:24:44 +02:00
}
2015-02-23 11:33:38 +01:00
}