aboutsummaryrefslogtreecommitdiff
path: root/muamba.business.inc
blob: f7b9e05e90ffc0b86378b8f69daa41d6f6f89673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php

/**
 * @file
 * Business logic handling functions for Muamba.
 */

/**
 * Request an item.
 *
 * @param $nid
 *   Requested item.
 */
function muamba_request($nid) {
  // Sanitize
  $nid  = (int) $nid;
  $node = node_load($nid);

  if (!$node || $node->type != MUAMBA_NODE_TYPE) {
    drupal_not_found();
  }

  global $user;

  // TODO: check if user has permission to access the node.
  // TODO: check if user is not blocked by privatemsg?

  // Check if user already requested the item
  if (muamba_check_user_request($nid, $user->uid)) {
    // TODO
  }

  // Notify item owner
  $thread = privatemsg_new_thread(array(user_load($node->uid)), t('Item request'), 'User has requested an item');
  $thread_id = $thread['message']['thread_id'];

  // Issue item request
  // TODO

  // User output
  return t('You have requested an item');
}

/**
 * Check if user already requested an item.
 *
 * @param $nid
 *   Item nid.
 *
 * @param $uid
 *   Requester user nid.
 *
 * @return
 *   TRUE if user already requested an item, FALSE otherwise.
 */
function muamba_check_user_request($nid, $uid) {
  if (!is_int($nid) || !is_int($uid)) {
    return FALSE;
  }

  $query = db_select('muamba', 'm');

  $query
    ->condition('m.nid', $nid, '=')
    ->condition('m.uid', $uid, '=');

  $result = $query->countQuery()->execute()->fetchField();

  if ($result > 0) {
    return TRUE;
  }

  return FALSE;
}

/**
 * Release an item requested by a given user.
 *
 * @param $nid
 *   Item nid.
 *
 * @param $uid
 *   Requester user uid.
 *
 * @todo
 */
function muamba_release($nid, $uid) {
  global $user;

  $nid  = (int) $nid;
  $node = node_load($nid);

  if (!$node || $node->type != MUAMBA_NODE_TYPE) {
    drupal_not_found();
  }

  if ($node->uid != $user->uid) {
    // TODO: not node owner
  }
}

/**
 * Get the requests sent or received.
 *
 * @param $uid
 *   Requester user uid.
 *
 * @todo
 */
function muamba_get_requests($nid, $type = 'sent') {
}