new-file.ts•2.44 kB
import {
  PiecePropValueSchema,
  Property,
  createTrigger,
} from '@activepieces/pieces-framework';
import { TriggerStrategy } from '@activepieces/pieces-framework';
import {
  DedupeStrategy,
  Polling,
  pollingHelper,
} from '@activepieces/pieces-common';
import { backBlazeS3Auth } from '../..';
import { createBackBlazeS3 } from '../common';
const polling: Polling<
  PiecePropValueSchema<typeof backBlazeS3Auth>,
  { folderPath?: string }
> = {
  strategy: DedupeStrategy.LAST_ITEM,
  items: async ({ auth, lastItemId, propsValue }) => {
    const s3 = createBackBlazeS3(auth);
    const params: any = {
      Bucket: auth.bucket,
      MaxKeys: 100,
      StartAfter: lastItemId,
    };
    if (propsValue.folderPath)
      params.Prefix = `${
        propsValue.folderPath.endsWith('/')
          ? propsValue.folderPath.slice(0, -1)
          : propsValue.folderPath
      }`;
    const currentValues = (await s3.listObjectsV2(params)).Contents ?? [];
    const items = (currentValues as any[]).map((item: { Key: string }) => ({
      id: item.Key,
      data: item,
    }));
    return items;
  },
};
export const newBackBlazeFileTrigger = createTrigger({
  auth: backBlazeS3Auth,
  name: 'new_backblaze_file',
  displayName: 'New File',
  description: 'Trigger when a new file is uploaded.',
  props: {
    folderPath: Property.ShortText({
      displayName: 'Folder Path',
      required: false,
    }),
  },
  type: TriggerStrategy.POLLING,
  onEnable: async (context) => {
    await pollingHelper.onEnable(polling, {
      auth: context.auth,
      store: context.store,
      propsValue: context.propsValue,
    });
  },
  onDisable: async (context) => {
    await pollingHelper.onDisable(polling, {
      auth: context.auth,
      store: context.store,
      propsValue: context.propsValue,
    });
  },
  run: async (context) => {
    return await pollingHelper.poll(polling, {
      auth: context.auth,
      store: context.store,
      propsValue: context.propsValue,
      files: context.files,
    });
  },
  test: async (context) => {
    return await pollingHelper.test(polling, {
      auth: context.auth,
      store: context.store,
      propsValue: context.propsValue, 
      files: context.files,
    });
  },
  sampleData: {
    Key: 'myfolder/100-3.png',
    LastModified: '2023-08-04T13:51:26.000Z',
    ETag: '"e9f16cce12352322272525f5af65a2e"',
    Size: 40239,
    StorageClass: 'STANDARD',
  },
});