Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/ActivityService.php')
-rw-r--r--lib/Service/ActivityService.php67
1 files changed, 67 insertions, 0 deletions
diff --git a/lib/Service/ActivityService.php b/lib/Service/ActivityService.php
new file mode 100644
index 00000000..f941a8af
--- /dev/null
+++ b/lib/Service/ActivityService.php
@@ -0,0 +1,67 @@
+<?php
+/**
+ * Nextcloud - passman
+ *
+ * @copyright Copyright (c) 2016, Sander Brand (brantje@gmail.com)
+ * @copyright Copyright (c) 2016, Marcos Zuriaga Miguel (wolfi@wolfi.es)
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\Passman\Service;
+
+use OCP\IConfig;
+use OCP\AppFramework\Db\DoesNotExistException;
+
+use OCA\Passman\Db\FileMapper;
+
+
+class ActivityService {
+
+ private $manager;
+
+ public function __construct() {
+ $this->manager = \OC::$server->getActivityManager();
+ }
+
+ /**
+ * Create a new activity
+ * @param $subject string Subject of the activity
+ * @param $subjectParams array
+ * @param $message string
+ * @param $messageParams array
+ * @param $link string
+ * @param $user string
+ * @param $type string
+ * @return array
+ */
+ public function add($subject,$subjectParams=array(),
+ $message='',$messageParams=array(),
+ $link='',$user=null,$type='') {
+ if($user) {
+ $activity = $this->manager->generateEvent();
+ $activity->setType($type);
+ $activity->setApp('passman');
+ $activity->setSubject($subject, $subjectParams);
+ $activity->setLink($link);
+ $activity->setAffectedUser($user);
+ $activity->setAuthor($user);
+ $activity->setTimestamp(time());
+ $activity->setMessage($message, $messageParams);
+ }
+ return array('success'=>'ok');
+ }
+} \ No newline at end of file