fix: check for valid connection (#428)

* fix: check for valid connection

* refactor: remove unused import
This commit is contained in:
stew-ro 2020-07-20 09:45:11 -07:00 коммит произвёл GitHub
Родитель 162a7660cf
Коммит 9cb6c5830a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 14 добавлений и 4 удалений

Просмотреть файл

@ -63,8 +63,13 @@ export class AzureBlobStorage implements IStorageProvider {
public async isValidProjectConnection() {
try {
await new ServiceURL(this.options.sas, StorageURL.newPipeline(this.getCredential())).getAccountInfo(Aborter.none);
return (true);
return await new ServiceURL(this.options.sas, StorageURL.newPipeline(this.getCredential())).getAccountInfo(Aborter.timeout(5000))
.then(() => {
return true;
})
.catch(() => {
return false;
})
} catch {
return (false);
}

Просмотреть файл

@ -178,7 +178,7 @@ export default class HomePage extends React.Component<IHomePageProps, IHomePageS
let projectStr: string;
try {
const projectService = new ProjectService();
if (!(await projectService.isValidProjectConnection(project))) {
if (!(await projectService.isValidProjectConnection(decryptedProject))) {
return;
}
projectStr = await storageProvider.readText(

Просмотреть файл

@ -161,7 +161,12 @@ export default class ProjectService implements IProjectService {
public async isValidProjectConnection(project: IProject): Promise<boolean> {
const storageProvider = StorageProviderFactory.createFromConnection(project.sourceConnection);
const isValid = await storageProvider.isValidProjectConnection();
let isValid;
try {
isValid = await storageProvider.isValidProjectConnection();
} catch {
isValid = false;
}
if (!isValid) {
if (project.sourceConnection.providerType === "localFileSystemProxy") {
await toast.error(interpolate(strings.connections.providers.local.invalidFolderMessage, {project}));