Stackedit/src/services/providers/googleDriveProvider.js

130 lines
3.9 KiB
JavaScript
Raw Normal View History

import store from '../../store';
import googleHelper from './helpers/googleHelper';
import providerUtils from './providerUtils';
2017-09-23 19:01:50 +00:00
import providerRegistry from './providerRegistry';
import utils from '../utils';
const defaultFilename = 'Untitled';
2017-09-23 19:01:50 +00:00
export default providerRegistry.register({
id: 'googleDrive',
getToken(location) {
const token = store.getters['data/googleTokens'][location.sub];
return token && token.isDrive ? token : null;
},
getUrl(location) {
return `https://docs.google.com/file/d/${location.driveFileId}/edit`;
},
getDescription(location) {
const token = this.getToken(location);
return `${location.driveFileId}${token.name}`;
},
downloadContent(token, syncLocation) {
return googleHelper.downloadFile(token, syncLocation.driveFileId)
2017-09-26 22:54:26 +00:00
.then(content => providerUtils.parseContent(content, syncLocation));
},
2017-09-23 19:01:50 +00:00
uploadContent(token, content, syncLocation, ifNotTooLate) {
const file = store.state.file.itemMap[syncLocation.fileId];
const name = (file && file.name) || defaultFilename;
const parents = [];
if (syncLocation.driveParentId) {
parents.push(syncLocation.driveParentId);
}
2017-09-23 19:01:50 +00:00
return googleHelper.uploadFile(
token,
name,
parents,
2017-09-23 19:01:50 +00:00
providerUtils.serializeContent(content),
undefined,
syncLocation.driveFileId,
ifNotTooLate,
)
.then(driveFile => ({
...syncLocation,
driveFileId: driveFile.id,
}));
},
2017-09-23 19:01:50 +00:00
publish(token, html, metadata, publishLocation) {
return googleHelper.uploadFile(
token,
metadata.title,
[],
html,
publishLocation.templateId ? 'text/html' : undefined,
publishLocation.driveFileId,
)
.then(driveFile => ({
...publishLocation,
driveFileId: driveFile.id,
}));
},
openFiles(token, files) {
const openOneFile = () => {
const file = files.pop();
if (!file) {
return null;
}
let syncLocation;
// Try to find an existing sync location
store.getters['syncLocation/items'].some((existingSyncLocation) => {
2017-09-23 19:01:50 +00:00
if (existingSyncLocation.providerId === this.id &&
existingSyncLocation.driveFileId === file.id
) {
syncLocation = existingSyncLocation;
}
return syncLocation;
});
if (syncLocation) {
// Sync location already exists, just open the file
2017-09-23 19:01:50 +00:00
store.commit('file/setCurrentId', syncLocation.fileId);
return openOneFile();
}
// Sync location does not exist, download content from Google Drive and create the file
syncLocation = {
driveFileId: file.id,
2017-09-23 19:01:50 +00:00
providerId: this.id,
sub: token.sub,
};
return this.downloadContent(token, syncLocation)
.then((content) => {
const id = utils.uid();
delete content.history;
store.commit('content/setItem', {
...content,
id: `${id}/content`,
});
store.commit('file/setItem', {
id,
name: (file.name || defaultFilename).slice(0, 250),
parentId: store.getters['file/current'].parentId,
});
store.commit('syncLocation/setItem', {
...syncLocation,
id: utils.uid(),
fileId: id,
});
store.commit('file/setCurrentId', id);
2017-09-23 19:01:50 +00:00
store.dispatch('notification/info', `${store.getters['file/current'].name} was imported from Google Drive.`);
}, () => {
2017-09-23 19:01:50 +00:00
store.dispatch('notification/error', `Could not open file ${file.id}.`);
})
.then(() => openOneFile());
};
return Promise.resolve()
.then(() => openOneFile());
},
2017-09-23 19:01:50 +00:00
makeLocation(token, fileId, folderId) {
const location = {
providerId: this.id,
sub: token.sub,
};
if (fileId) {
location.driveFileId = fileId;
}
if (folderId) {
location.driveParentId = folderId;
}
return location;
},
});