123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { Meteor } from 'meteor/meteor';
- import { FilesCollection } from 'meteor/ostrio:files';
- import fs from 'fs';
- import path from 'path';
- import { createBucket } from './lib/grid/createBucket';
- import { createOnAfterUpload } from './lib/fsHooks/createOnAfterUpload';
- import { createInterceptDownload } from './lib/fsHooks/createInterceptDownload';
- import { createOnAfterRemove } from './lib/fsHooks/createOnAfterRemove';
- let avatarsBucket;
- if (Meteor.isServer) {
- avatarsBucket = createBucket('avatars');
- }
- Avatars = new FilesCollection({
- debug: false, // Change to `true` for debugging
- collectionName: 'avatars',
- allowClientCode: true,
- storagePath() {
- if (process.env.WRITABLE_PATH) {
- return path.join(process.env.WRITABLE_PATH, 'uploads', 'avatars');
- }
- return path.normalize(`assets/app/uploads/${this.collectionName}`);;
- },
- onBeforeUpload(file) {
- if (file.size <= 72000 && file.type.startsWith('image/')) {
- return true;
- }
- return 'avatar-too-big';
- },
- onAfterUpload: createOnAfterUpload(avatarsBucket),
- interceptDownload: createInterceptDownload(avatarsBucket),
- onAfterRemove: createOnAfterRemove(avatarsBucket),
- });
- function isOwner(userId, doc) {
- return userId && userId === doc.userId;
- }
- if (Meteor.isServer) {
- Avatars.allow({
- insert: isOwner,
- update: isOwner,
- remove: isOwner,
- fetch: ['userId'],
- });
- Meteor.startup(() => {
- const storagePath = Avatars.storagePath();
- if (!fs.existsSync(storagePath)) {
- console.log("create storagePath because it doesn't exist: " + storagePath);
- fs.mkdirSync(storagePath, { recursive: true });
- }
- });
- }
- export default Avatars;
|