123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- import { ReactiveCache } from '/imports/reactiveCache';
- import { isEmptyObject } from 'jquery';
- import Boards from './boards';
- export class CsvCreator {
- constructor(data) {
- // date to be used for timestamps during import
- this._nowDate = new Date();
- // index to help keep track of what information a column stores
- // each row represents a card
- this.fieldIndex = {};
- this.lists = {};
- // Map of members using username => wekanid
- this.members = data.membersMapping ? data.membersMapping : {};
- this.swimlane = null;
- }
- /**
- * If dateString is provided,
- * return the Date it represents.
- * If not, will return the date when it was first called.
- * This is useful for us, as we want all import operations to
- * have the exact same date for easier later retrieval.
- *
- * @param {String} dateString a properly formatted Date
- */
- _now(dateString) {
- if (dateString) {
- return new Date(dateString);
- }
- if (!this._nowDate) {
- this._nowDate = new Date();
- }
- return this._nowDate;
- }
- _user(wekanUserId) {
- if (wekanUserId && this.members[wekanUserId]) {
- return this.members[wekanUserId];
- }
- return Meteor.userId();
- }
- /**
- * Map the header row titles to an index to help assign proper values to the cards' fields
- * Valid headers (name of card fields):
- * title, description, status, owner, member, label, due date, start date, finish date, created at, updated at
- * Some header aliases can also be accepted.
- * Headers are NOT case-sensitive.
- *
- * @param {Array} headerRow array from row of headers of imported CSV/TSV for cards
- */
- mapHeadertoCardFieldIndex(headerRow) {
- const index = {};
- index.customFields = [];
- for (let i = 0; i < headerRow.length; i++) {
- switch (headerRow[i].trim().toLowerCase()) {
- case 'title':
- index.title = i;
- break;
- case 'description':
- index.description = i;
- break;
- case 'stage':
- case 'status':
- case 'state':
- index.stage = i;
- break;
- case 'owner':
- index.owner = i;
- break;
- case 'members':
- case 'member':
- index.members = i;
- break;
- case 'labels':
- case 'label':
- index.labels = i;
- break;
- case 'due date':
- case 'deadline':
- case 'due at':
- index.dueAt = i;
- break;
- case 'start date':
- case 'start at':
- index.startAt = i;
- break;
- case 'finish date':
- case 'end at':
- index.endAt = i;
- break;
- case 'creation date':
- case 'created at':
- index.createdAt = i;
- break;
- case 'update date':
- case 'updated at':
- case 'modified at':
- case 'modified on':
- index.modifiedAt = i;
- break;
- }
- if (headerRow[i].toLowerCase().startsWith('customfield')) {
- if (headerRow[i].split('-')[2] === 'dropdown') {
- index.customFields.push({
- name: headerRow[i].split('-')[1],
- type: headerRow[i].split('-')[2],
- options: headerRow[i].split('-')[3].split('/'),
- position: i,
- });
- } else if (headerRow[i].split('-')[2] === 'currency') {
- index.customFields.push({
- name: headerRow[i].split('-')[1],
- type: headerRow[i].split('-')[2],
- currencyCode: headerRow[i].split('-')[3],
- position: i,
- });
- } else {
- index.customFields.push({
- name: headerRow[i].split('-')[1],
- type: headerRow[i].split('-')[2],
- position: i,
- });
- }
- }
- }
- this.fieldIndex = index;
- }
- createCustomFields(boardId) {
- this.fieldIndex.customFields.forEach(customField => {
- let settings = {};
- if (customField.type === 'dropdown') {
- settings = {
- dropdownItems: customField.options.map(option => {
- return { _id: Random.id(6), name: option };
- }),
- };
- } else if (customField.type === 'currency') {
- settings = {
- currencyCode: customField.currencyCode,
- };
- } else {
- settings = {};
- }
- const id = CustomFields.direct.insert({
- name: customField.name,
- type: customField.type,
- settings,
- showOnCard: false,
- automaticallyOnCard: false,
- alwaysOnCard: false,
- showLabelOnMiniCard: false,
- boardIds: [boardId],
- });
- customField.id = id;
- customField.settings = settings;
- });
- }
- createBoard(csvData) {
- const boardToCreate = {
- archived: false,
- color: 'belize',
- createdAt: this._now(),
- labels: [],
- members: [
- {
- userId: Meteor.userId(),
- wekanId: Meteor.userId(),
- isActive: true,
- isAdmin: true,
- isNoComments: false,
- isCommentOnly: false,
- swimlaneId: false,
- },
- ],
- modifiedAt: this._now(),
- //default is private, should inform user.
- permission: 'private',
- slug: 'board',
- stars: 0,
- title: `Imported Board ${this._now()}`,
- };
- // create labels
- const labelsToCreate = new Set();
- for (let i = 1; i < csvData.length; i++) {
- if (csvData[i][this.fieldIndex.labels]) {
- for (const importedLabel of csvData[i][this.fieldIndex.labels].split(
- ' ',
- )) {
- if (importedLabel && importedLabel.length > 0) {
- labelsToCreate.add(importedLabel);
- }
- }
- }
- }
- for (const label of labelsToCreate) {
- let labelName, labelColor;
- if (label.indexOf('-') > -1) {
- labelName = label.split('-')[0];
- labelColor = label.split('-')[1];
- } else {
- labelName = label;
- }
- const labelToCreate = {
- _id: Random.id(6),
- color: labelColor ? labelColor : 'black',
- name: labelName,
- };
- boardToCreate.labels.push(labelToCreate);
- }
- const boardId = Boards.direct.insert(boardToCreate);
- Boards.direct.update(boardId, {
- $set: {
- modifiedAt: this._now(),
- },
- });
- // log activity
- Activities.direct.insert({
- activityType: 'importBoard',
- boardId,
- createdAt: this._now(),
- source: {
- id: boardId,
- system: 'CSV/TSV',
- },
- // We attribute the import to current user,
- // not the author from the original object.
- userId: this._user(),
- });
- return boardId;
- }
- createSwimlanes(boardId) {
- const swimlaneToCreate = {
- archived: false,
- boardId,
- createdAt: this._now(),
- title: 'Default',
- sort: 1,
- };
- const swimlaneId = Swimlanes.direct.insert(swimlaneToCreate);
- Swimlanes.direct.update(swimlaneId, { $set: { updatedAt: this._now() } });
- this.swimlane = swimlaneId;
- }
- createLists(csvData, boardId) {
- let numOfCreatedLists = 0;
- for (let i = 1; i < csvData.length; i++) {
- const listToCreate = {
- archived: false,
- boardId,
- createdAt: this._now(),
- };
- if (csvData[i][this.fieldIndex.stage]) {
- const existingList = ReactiveCache.getLists({
- title: csvData[i][this.fieldIndex.stage],
- boardId,
- });
- if (existingList.length > 0) {
- continue;
- } else {
- listToCreate.title = csvData[i][this.fieldIndex.stage];
- }
- } else listToCreate.title = `Imported List ${this._now()}`;
- const listId = Lists.direct.insert(listToCreate);
- this.lists[csvData[i][this.fieldIndex.stage]] = listId;
- numOfCreatedLists++;
- Lists.direct.update(listId, {
- $set: {
- updatedAt: this._now(),
- sort: numOfCreatedLists,
- },
- });
- }
- }
- createCards(csvData, boardId) {
- for (let i = 1; i < csvData.length; i++) {
- const cardToCreate = {
- archived: false,
- boardId,
- dateLastActivity: this._now(),
- description: csvData[i][this.fieldIndex.description],
- listId: this.lists[csvData[i][this.fieldIndex.stage]],
- swimlaneId: this.swimlane,
- sort: -1,
- title: csvData[i][this.fieldIndex.title],
- userId: this._user(),
- spentTime: null,
- labelIds: [],
- };
- if (csvData[i][this.fieldIndex.createdAt] !== ' ' || '') {
- if (csvData[i][this.fieldIndex.createdAt].length !== 0) {
- cardToCreate.createdAt = this._now(new Date(csvData[i][this.fieldIndex.createdAt]))
- }
- }
- if (csvData[i][this.fieldIndex.startAt] !== ' ' || '') {
- if (csvData[i][this.fieldIndex.startAt].length !== 0) {
- cardToCreate.startAt = this._now(new Date(csvData[i][this.fieldIndex.startAt]))
- }
- }
- if (csvData[i][this.fieldIndex.dueAt] !== ' ' || '') {
- if (csvData[i][this.fieldIndex.dueAt].length !== 0) {
- cardToCreate.dueAt = this._now(new Date(csvData[i][this.fieldIndex.dueAt]))
- }
- }
- if (csvData[i][this.fieldIndex.endAt] !== ' ' || '') {
- if (csvData[i][this.fieldIndex.endAt].length !== 0) {
- cardToCreate.endAt = this._now(new Date(csvData[i][this.fieldIndex.endAt]))
- }
- }
- if (csvData[i][this.fieldIndex.modifiedAt] !== ' ' || '') {
- if (csvData[i][this.fieldIndex.modifiedAt].length !== 0) {
- cardToCreate.modifiedAt = this._now(new Date(csvData[i][this.fieldIndex.modifiedAt]))
- }
- }
- // add the labels
- if (csvData[i][this.fieldIndex.labels]) {
- const board = ReactiveCache.getBoard(boardId);
- for (const importedLabel of csvData[i][this.fieldIndex.labels].split(
- ' ',
- )) {
- if (importedLabel && importedLabel.length > 0) {
- let labelToApply;
- if (importedLabel.indexOf('-') === -1) {
- labelToApply = board.getLabel(importedLabel, 'black');
- } else {
- labelToApply = board.getLabel(
- importedLabel.split('-')[0],
- importedLabel.split('-')[1],
- );
- }
- cardToCreate.labelIds.push(labelToApply._id);
- }
- }
- }
- // add the members
- if (csvData[i][this.fieldIndex.members]) {
- const wekanMembers = [];
- for (const importedMember of csvData[i][this.fieldIndex.members].split(
- ' ',
- )) {
- if (this.members[importedMember]) {
- const wekanId = this.members[importedMember];
- if (!wekanMembers.find(wId => wId === wekanId)) {
- wekanMembers.push(wekanId);
- }
- }
- }
- if (wekanMembers.length > 0) {
- cardToCreate.members = wekanMembers;
- }
- }
- // add the custom fields
- if (this.fieldIndex.customFields.length > 0) {
- const customFields = [];
- this.fieldIndex.customFields.forEach(customField => {
- if (csvData[i][customField.position] !== ' ') {
- if (customField.type === 'dropdown') {
- customFields.push({
- _id: customField.id,
- value: customField.settings.dropdownItems.find(
- ({ name }) => name === csvData[i][customField.position],
- )._id,
- });
- } else {
- customFields.push({
- _id: customField.id,
- value: csvData[i][customField.position],
- });
- }
- }
- cardToCreate.customFields = customFields;
- });
- }
- Cards.direct.insert(cardToCreate);
- }
- }
- create(board, currentBoardId) {
- const isSandstorm =
- Meteor.settings &&
- Meteor.settings.public &&
- Meteor.settings.public.sandstorm;
- if (isSandstorm && currentBoardId) {
- const currentBoard = ReactiveCache.getBoard(currentBoardId);
- currentBoard.archive();
- }
- this.mapHeadertoCardFieldIndex(board[0]);
- const boardId = this.createBoard(board);
- this.createLists(board, boardId);
- this.createSwimlanes(boardId);
- this.createCustomFields(boardId);
- this.createCards(board, boardId);
- return boardId;
- }
- }
|