2017-08-31 14:37:12 +00:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#ifndef SHELL_BROWSER_UI_COCOA_ELECTRON_BUNDLE_MOVER_H_
|
|
|
|
#define SHELL_BROWSER_UI_COCOA_ELECTRON_BUNDLE_MOVER_H_
|
|
|
|
|
|
|
|
#include <string>
|
2017-08-31 14:37:12 +00:00
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "base/mac/foundation_util.h"
|
|
|
|
#include "shell/common/gin_helper/error_thrower.h"
|
2017-08-31 14:37:12 +00:00
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
namespace gin {
|
|
|
|
class Arguments;
|
|
|
|
}
|
2017-08-31 14:37:12 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2017-08-31 14:37:12 +00:00
|
|
|
|
2019-07-15 16:34:20 +00:00
|
|
|
// Possible bundle movement conflicts
|
2020-10-27 17:51:45 +00:00
|
|
|
enum class BundlerMoverConflictType { kExists, kExistsAndRunning };
|
2019-07-15 16:34:20 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronBundleMover {
|
2017-08-31 14:37:12 +00:00
|
|
|
public:
|
2019-09-06 05:52:54 +00:00
|
|
|
static bool Move(gin_helper::ErrorThrower thrower, gin::Arguments* args);
|
2017-08-31 14:37:12 +00:00
|
|
|
static bool IsCurrentAppInApplicationsFolder();
|
|
|
|
|
|
|
|
private:
|
2019-09-06 05:52:54 +00:00
|
|
|
static bool ShouldContinueMove(gin_helper::ErrorThrower thrower,
|
|
|
|
BundlerMoverConflictType type,
|
|
|
|
gin::Arguments* args);
|
2017-08-31 14:37:12 +00:00
|
|
|
static bool IsInApplicationsFolder(NSString* bundlePath);
|
|
|
|
static NSString* ContainingDiskImageDevice(NSString* bundlePath);
|
|
|
|
static void Relaunch(NSString* destinationPath);
|
|
|
|
static NSString* ShellQuotedString(NSString* string);
|
|
|
|
static bool CopyBundle(NSString* srcPath, NSString* dstPath);
|
2018-04-18 01:44:10 +00:00
|
|
|
static bool AuthorizedInstall(NSString* srcPath,
|
|
|
|
NSString* dstPath,
|
2017-08-31 14:37:12 +00:00
|
|
|
bool* canceled);
|
|
|
|
static bool IsApplicationAtPathRunning(NSString* bundlePath);
|
|
|
|
static bool DeleteOrTrash(NSString* path);
|
|
|
|
static bool Trash(NSString* path);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2017-08-31 14:37:12 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#endif // SHELL_BROWSER_UI_COCOA_ELECTRON_BUNDLE_MOVER_H_
|