const db = require('../models'); const FileDBApi = require('./file'); const crypto = require('crypto'); const Utils = require('../utils'); const Sequelize = db.Sequelize; const Op = Sequelize.Op; module.exports = class Camera_feedsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const camera_feeds = await db.camera_feeds.create( { id: data.id || undefined, image_url: data.image_url || null, detected_objects: data.detected_objects || null, timestamp: data.timestamp || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await camera_feeds.setDevice(data.device || null, { transaction, }); await camera_feeds.setFarms(data.farms || null, { transaction, }); return camera_feeds; } static async bulkImport(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; // Prepare data - wrapping individual data transformations in a map() method const camera_feedsData = data.map((item, index) => ({ id: item.id || undefined, image_url: item.image_url || null, detected_objects: item.detected_objects || null, timestamp: item.timestamp || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const camera_feeds = await db.camera_feeds.bulkCreate(camera_feedsData, { transaction, }); // For each item created, replace relation files return camera_feeds; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const globalAccess = currentUser.app_role?.globalAccess; const camera_feeds = await db.camera_feeds.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.image_url !== undefined) updatePayload.image_url = data.image_url; if (data.detected_objects !== undefined) updatePayload.detected_objects = data.detected_objects; if (data.timestamp !== undefined) updatePayload.timestamp = data.timestamp; updatePayload.updatedById = currentUser.id; await camera_feeds.update(updatePayload, { transaction }); if (data.device !== undefined) { await camera_feeds.setDevice( data.device, { transaction }, ); } if (data.farms !== undefined) { await camera_feeds.setFarms( data.farms, { transaction }, ); } return camera_feeds; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const camera_feeds = await db.camera_feeds.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of camera_feeds) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of camera_feeds) { await record.destroy({ transaction }); } }); return camera_feeds; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const camera_feeds = await db.camera_feeds.findByPk(id, options); await camera_feeds.update( { deletedBy: currentUser.id, }, { transaction, }, ); await camera_feeds.destroy({ transaction, }); return camera_feeds; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const camera_feeds = await db.camera_feeds.findOne( { where }, { transaction }, ); if (!camera_feeds) { return camera_feeds; } const output = camera_feeds.get({ plain: true }); output.device = await camera_feeds.getDevice({ transaction, }); output.farms = await camera_feeds.getFarms({ transaction, }); return output; } static async findAll(filter, globalAccess, options) { const limit = filter.limit || 0; let offset = 0; let where = {}; const currentPage = +filter.page; const user = (options && options.currentUser) || null; const userFarms = (user && user.farms?.id) || null; if (userFarms) { if (options?.currentUser?.farmsId) { where.farmsId = options.currentUser.farmsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.devices, as: 'device', where: filter.device ? { [Op.or]: [ { id: { [Op.in]: filter.device .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.device .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.farms, as: 'farms', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.image_url) { where = { ...where, [Op.and]: Utils.ilike('camera_feeds', 'image_url', filter.image_url), }; } if (filter.detected_objects) { where = { ...where, [Op.and]: Utils.ilike( 'camera_feeds', 'detected_objects', filter.detected_objects, ), }; } if (filter.timestampRange) { const [start, end] = filter.timestampRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, timestamp: { ...where.timestamp, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, timestamp: { ...where.timestamp, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.farms) { const listItems = filter.farms.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, farmsId: { [Op.or]: listItems }, }; } if (filter.createdAtRange) { const [start, end] = filter.createdAtRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, ['createdAt']: { ...where.createdAt, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, ['createdAt']: { ...where.createdAt, [Op.lte]: end, }, }; } } } if (globalAccess) { delete where.farmsId; } const queryOptions = { where, include, distinct: true, order: filter.field && filter.sort ? [[filter.field, filter.sort]] : [['createdAt', 'desc']], transaction: options?.transaction, logging: console.log, }; if (!options?.countOnly) { queryOptions.limit = limit ? Number(limit) : undefined; queryOptions.offset = offset ? Number(offset) : undefined; } try { const { rows, count } = await db.camera_feeds.findAndCountAll( queryOptions, ); return { rows: options?.countOnly ? [] : rows, count: count, }; } catch (error) { console.error('Error executing query:', error); throw error; } } static async findAllAutocomplete( query, limit, offset, globalAccess, organizationId, ) { let where = {}; if (!globalAccess && organizationId) { where.organizationId = organizationId; } if (query) { where = { [Op.or]: [ { ['id']: Utils.uuid(query) }, Utils.ilike('camera_feeds', 'image_url', query), ], }; } const records = await db.camera_feeds.findAll({ attributes: ['id', 'image_url'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['image_url', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.image_url, })); } };