All files / resources/api/v2 users.ts

0% Statements 0/178
0% Branches 0/1
0% Functions 0/1
0% Lines 0/178

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
import {
  SQSClient,
  SendMessageCommand
} from '@aws-sdk/client-sqs';
 
import {
  LambdaApiFunction,
  handleResourceApi
} from './_base';
import {
  getFrontendUserObj, parseJsonBody
} from './_utils';
 
import {
  api401Body, api403Body, generateApi400Body
} from '@/types/api/_shared';
import {
  CreateUserApi, FrontendUserObject, FullUserObject, GetAllUsersApi, createUserApiBodyValidator
} from '@/types/api/users';
import {
  TypedPutItemInput, TypedScanInput
} from '@/types/backend/dynamo';
import { ActivateUserQueueItem } from '@/types/backend/queue';
import {
  ExceptSpecificKeys, OnlySpecificKeys
} from '@/types/utility';
import {
  TABLE_USER, typedPutItem, typedScan
} from '@/utils/backend/dynamoTyped';
import { getLogger } from '@/utils/common/logger';
 
const logger = getLogger('users');
const sqs = new SQSClient();
const queueUrl = process.env.SQS_QUEUE;
 
type EditKeyConfig = {
  name: OnlySpecificKeys<keyof CreateUserApi['body'], keyof FrontendUserObject>;
} | {
  name: ExceptSpecificKeys<keyof CreateUserApi['body'], keyof FrontendUserObject>;
  partOfDepartment: true;
};
const createUserKeys: EditKeyConfig[] = [
  {
    name: 'phone',
  },
  {
    name: 'fName',
  },
  {
    name: 'lName',
  },
  {
    name: 'department',
    partOfDepartment: true,
  },
  {
    name: 'admin',
    partOfDepartment: true,
  },
  {
    name: 'callSign',
    partOfDepartment: true,
  },
  {
    name: 'talkgroups',
  },
  {
    name: 'getTranscript',
  },
];
const districtAdminUserKeys: EditKeyConfig[] = [
  {
    name: 'getTranscriptOnly',
  },
  {
    name: 'getApiAlerts',
  },
  {
    name: 'getVhfAlerts',
  },
  {
    name: 'getDtrAlerts',
  },
  {
    name: 'isDistrictAdmin',
  },
  {
    name: 'pagingPhone',
  },
];
 
const GET: LambdaApiFunction<GetAllUsersApi> = async function (event, user, userPerms) {
  logger.debug('GET', ...arguments);
 
  // Authorize the user
  if (user === null) {
    return [
      401,
      api401Body,
    ];
  }
  if (!userPerms.isAdmin) {
    return [
      403,
      api403Body,
    ];
  }
 
  // Get the keys that should be returned
  const scanInput: TypedScanInput<FullUserObject> = {
    TableName: TABLE_USER,
  };
  if (!user.isDistrictAdmin) {
    userPerms.adminDepartments.forEach(dep => {
      scanInput.ExpressionAttributeNames = scanInput.ExpressionAttributeNames || {};
      scanInput.ExpressionAttributeNames = {
        ...scanInput.ExpressionAttributeNames || {},
        [`#${dep}`]: dep,
      };
    });
    scanInput.FilterExpression = userPerms.adminDepartments
      .map(dep => `attribute_exists(#${dep})`).join(' OR ');
  }
 
  // Fetch, sort, and return the items
  const scanResult = await typedScan<FullUserObject>(scanInput);
  if (scanResult.Items) {
    scanResult.Items
      .map(item => getFrontendUserObj(item))
      .sort((a, b) => `${a.lName}, ${a.fName}`.localeCompare(`${b.lName}, ${b.fName}`));
  }
 
  return [
    200,
    scanResult.Items || [],
  ];
};
 
const POST: LambdaApiFunction<CreateUserApi> = async function (event, user, userPerms) {
  logger.trace('POST', ...arguments);
 
  // Parse the body
  const [
    body,
    errorKeys,
  ] = parseJsonBody<CreateUserApi['body']>(
    event.body,
    createUserApiBodyValidator
  );
  if (
    body === null ||
    errorKeys.length > 0
  ) {
    return [
      400,
      generateApi400Body(errorKeys),
    ];
  }
 
  // Authorize the user
  if (user === null) {
    return [
      401,
      api401Body,
    ];
  }
  if (!userPerms.isAdmin) {
    return [
      403,
      api403Body,
    ];
  }
 
  // Validate the user keys and build the insert
  const putConfig: TypedPutItemInput<FullUserObject> = {
    TableName: TABLE_USER,
    Item: {
      phone: body.phone,
    },
  };
  [
    ...createUserKeys,
    ...user.isDistrictAdmin ? districtAdminUserKeys : [],
  ].forEach(item => {
    // Pull out the value
    const value = body[item.name];
 
    // Add to the update item config
    if ('partOfDepartment' in item) {
      const dep = body.department;
      putConfig.Item[dep] = putConfig.Item[dep] || {};
      if (item.name === 'department') {
        putConfig.Item[dep].active = true;
      } else {
        const name = item.name;
        putConfig.Item[dep][name as 'admin'] = body[name] as boolean;
      }
    } else {
      putConfig.Item[item.name as 'fName'] = value as string;
    }
  });
  if (errorKeys.length > 0) {
    return [
      400,
      generateApi400Body(errorKeys),
    ];
  }
 
  // Run the actual update
  await typedPutItem(putConfig);
 
  // Send the queue message
  const queueMessage: ActivateUserQueueItem = {
    action: 'activate-user',
    phone: body.phone,
    department: body.department,
  };
  await sqs.send(new SendMessageCommand({
    MessageBody: JSON.stringify(queueMessage),
    QueueUrl: queueUrl,
  }));
 
  // Return the safed user object
  const returnBody = getFrontendUserObj(putConfig.Item);
  return [
    200,
    returnBody,
  ];
};
 
export const main = handleResourceApi.bind(null, {
  GET,
  POST,
});