Change license to AGPL
This commit:
- Updates the `LICENSE` file
- Start every file with something like:
// Copyright YEAR_FIRST_PUBLISHED Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
---
First, I removed existing license headers with this Ruby 3.1.2 script:
require 'set'
EXTENSIONS_TO_CHECK = Set['.h', '.hpp', '.cpp', '.m', '.mm', '.pch', '.swift']
same = 0
different = 0
all_files = `git ls-files`.lines.map { |line| line.strip }
all_files.each do |relative_path|
if relative_path == 'Pods'
next
end
unless EXTENSIONS_TO_CHECK.include? File.extname(relative_path)
next
end
path = File.expand_path(relative_path)
contents = File.read(path)
new_contents = contents.sub(/\/\/\n\/\/ Copyright .*\n\/\/\n\n/, '')
if contents == new_contents
same += 1
else
different += 1
end
File.write(path, new_contents)
end
puts "updated #{different} file(s), left #{same} untouched"
I'm sure this script could be improved, but it worked well enough.
Then, I created `Scripts/lint/lint-license-headers` and ran it to auto-
fix a lot of files. This changed the mode of some files, but I think
that's actually desirable. For example,
`SignalServiceKit/src/Util/AppContext.m` previously had a mode of
`0755/-rwxr-xr-x`, and it's now `0644/-rw-r--r--`.
Then I fixed some stragglers and updated the precommit script.
See [a similar change in the Desktop app][0].
[0]: 8bfaf598af
342 lines
9.0 KiB
Objective-C
342 lines
9.0 KiB
Objective-C
//
|
|
// Copyright 2017 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
#import "ShareAppExtensionContext.h"
|
|
#import <SignalMessaging/DebugLogger.h>
|
|
#import <SignalServiceKit/SignalServiceKit-Swift.h>
|
|
#import <SignalUI/UIViewController+OWS.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ShareAppExtensionContext ()
|
|
|
|
@property (nonatomic) UIViewController *rootViewController;
|
|
|
|
@property (atomic) UIApplicationState reportedApplicationState;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation ShareAppExtensionContext
|
|
|
|
@synthesize mainWindow = _mainWindow;
|
|
@synthesize appLaunchTime = _appLaunchTime;
|
|
@synthesize appForegroundTime = _appForegroundTime;
|
|
@synthesize buildTime = _buildTime;
|
|
|
|
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController
|
|
{
|
|
self = [super init];
|
|
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
OWSAssertDebug(rootViewController);
|
|
|
|
_rootViewController = rootViewController;
|
|
|
|
self.reportedApplicationState = UIApplicationStateActive;
|
|
|
|
NSDate *launchDate = [NSDate new];
|
|
_appLaunchTime = launchDate;
|
|
_appForegroundTime = launchDate;
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(extensionHostDidBecomeActive:)
|
|
name:NSExtensionHostDidBecomeActiveNotification
|
|
object:nil];
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(extensionHostWillResignActive:)
|
|
name:NSExtensionHostWillResignActiveNotification
|
|
object:nil];
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(extensionHostDidEnterBackground:)
|
|
name:NSExtensionHostDidEnterBackgroundNotification
|
|
object:nil];
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(extensionHostWillEnterForeground:)
|
|
name:NSExtensionHostWillEnterForegroundNotification
|
|
object:nil];
|
|
|
|
return self;
|
|
}
|
|
|
|
#pragma mark - Notifications
|
|
|
|
- (void)extensionHostDidBecomeActive:(NSNotification *)notification
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
OWSLogInfo(@"");
|
|
|
|
self.reportedApplicationState = UIApplicationStateActive;
|
|
|
|
[BenchManager benchWithTitle:@"Slow post DidBecomeActive"
|
|
logIfLongerThan:0.01
|
|
logInProduction:YES
|
|
block:^{
|
|
[NSNotificationCenter.defaultCenter
|
|
postNotificationName:OWSApplicationDidBecomeActiveNotification
|
|
object:nil];
|
|
}];
|
|
}
|
|
|
|
- (void)extensionHostWillResignActive:(NSNotification *)notification
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
self.reportedApplicationState = UIApplicationStateInactive;
|
|
|
|
OWSLogInfo(@"");
|
|
OWSLogFlush();
|
|
|
|
[BenchManager benchWithTitle:@"Slow post WillResignActive"
|
|
logIfLongerThan:0.01
|
|
logInProduction:YES
|
|
block:^{
|
|
[NSNotificationCenter.defaultCenter
|
|
postNotificationName:OWSApplicationWillResignActiveNotification
|
|
object:nil];
|
|
}];
|
|
}
|
|
|
|
- (void)extensionHostDidEnterBackground:(NSNotification *)notification
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
OWSLogInfo(@"");
|
|
OWSLogFlush();
|
|
|
|
self.reportedApplicationState = UIApplicationStateBackground;
|
|
|
|
[BenchManager benchWithTitle:@"Slow post DidEnterBackground"
|
|
logIfLongerThan:0.01
|
|
logInProduction:YES
|
|
block:^{
|
|
[NSNotificationCenter.defaultCenter
|
|
postNotificationName:OWSApplicationDidEnterBackgroundNotification
|
|
object:nil];
|
|
}];
|
|
}
|
|
|
|
- (void)extensionHostWillEnterForeground:(NSNotification *)notification
|
|
{
|
|
OWSAssertIsOnMainThread();
|
|
|
|
OWSLogInfo(@"");
|
|
|
|
self.reportedApplicationState = UIApplicationStateInactive;
|
|
|
|
[BenchManager benchWithTitle:@"Slow post WillEnterForeground"
|
|
logIfLongerThan:0.01
|
|
logInProduction:YES
|
|
block:^{
|
|
[NSNotificationCenter.defaultCenter
|
|
postNotificationName:OWSApplicationWillEnterForegroundNotification
|
|
object:nil];
|
|
}];
|
|
}
|
|
|
|
#pragma mark -
|
|
|
|
- (BOOL)isMainApp
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)isMainAppAndActive
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)isNSE
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (UIApplicationState)mainApplicationStateOnLaunch
|
|
{
|
|
OWSFailDebug(@"Not main app.");
|
|
|
|
return UIApplicationStateInactive;
|
|
}
|
|
|
|
- (BOOL)isRTL
|
|
{
|
|
static BOOL isRTL = NO;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
// Borrowed from PureLayout's AppExtension compatible RTL support.
|
|
// App Extensions may not access -[UIApplication sharedApplication]; fall back to checking the bundle's
|
|
// preferred localization character direction
|
|
isRTL = [NSLocale characterDirectionForLanguage:[[NSBundle mainBundle] preferredLocalizations][0]]
|
|
== NSLocaleLanguageDirectionRightToLeft;
|
|
});
|
|
return isRTL;
|
|
}
|
|
|
|
- (CGFloat)statusBarHeight
|
|
{
|
|
return 20;
|
|
}
|
|
|
|
- (BOOL)isInBackground
|
|
{
|
|
return self.reportedApplicationState == UIApplicationStateBackground;
|
|
}
|
|
|
|
- (BOOL)isAppForegroundAndActive
|
|
{
|
|
return self.reportedApplicationState == UIApplicationStateActive;
|
|
}
|
|
|
|
- (UIBackgroundTaskIdentifier)beginBackgroundTaskWithExpirationHandler:
|
|
(BackgroundTaskExpirationHandler)expirationHandler
|
|
{
|
|
return UIBackgroundTaskInvalid;
|
|
}
|
|
|
|
- (void)endBackgroundTask:(UIBackgroundTaskIdentifier)backgroundTaskIdentifier
|
|
{
|
|
OWSAssertDebug(backgroundTaskIdentifier == UIBackgroundTaskInvalid);
|
|
}
|
|
|
|
- (void)ensureSleepBlocking:(BOOL)shouldBeBlocking blockingObjectsDescription:(NSString *)blockingObjectsDescription
|
|
{
|
|
OWSLogDebug(@"Ignoring request to block sleep.");
|
|
}
|
|
|
|
- (void)setMainAppBadgeNumber:(NSInteger)value
|
|
{
|
|
OWSFailDebug(@"");
|
|
}
|
|
|
|
- (nullable UIViewController *)frontmostViewController
|
|
{
|
|
OWSAssertDebug(self.rootViewController);
|
|
|
|
return [self.rootViewController findFrontmostViewController:YES];
|
|
}
|
|
|
|
- (void)openSystemSettings
|
|
{
|
|
return;
|
|
}
|
|
|
|
- (void)openURL:(NSURL *)url completion:(void (^__nullable)(BOOL))completion
|
|
{
|
|
}
|
|
|
|
- (BOOL)isRunningTests
|
|
{
|
|
// We don't need to distinguish this in the SAE.
|
|
return NO;
|
|
}
|
|
|
|
- (NSDate *)buildTime
|
|
{
|
|
if (!_buildTime) {
|
|
NSInteger buildTimestamp = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"BuildTimestamp"] integerValue];
|
|
|
|
if (buildTimestamp == 0) {
|
|
// Production builds should _always_ expire, ensure that here.
|
|
OWSAssert(OWSIsTestableBuild());
|
|
|
|
OWSLogDebug(@"No build timestamp, assuming app never expires.");
|
|
_buildTime = [NSDate distantFuture];
|
|
} else {
|
|
_buildTime = [NSDate dateWithTimeIntervalSince1970:buildTimestamp];
|
|
}
|
|
}
|
|
|
|
return _buildTime;
|
|
}
|
|
|
|
- (CGRect)frame
|
|
{
|
|
return self.rootViewController.view.frame;
|
|
}
|
|
|
|
- (UIInterfaceOrientation)interfaceOrientation
|
|
{
|
|
return UIInterfaceOrientationPortrait;
|
|
}
|
|
|
|
- (void)setNetworkActivityIndicatorVisible:(BOOL)value
|
|
{
|
|
OWSFailDebug(@"");
|
|
}
|
|
|
|
- (void)runNowOrWhenMainAppIsActive:(AppActiveBlock)block
|
|
{
|
|
OWSFailDebug(@"cannot run main app active blocks in share extension.");
|
|
}
|
|
|
|
- (id<SSKKeychainStorage>)keychainStorage
|
|
{
|
|
return [SSKDefaultKeychainStorage shared];
|
|
}
|
|
|
|
- (NSString *)appDocumentDirectoryPath
|
|
{
|
|
NSFileManager *fileManager = [NSFileManager defaultManager];
|
|
NSURL *documentDirectoryURL =
|
|
[[fileManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
|
|
return [documentDirectoryURL path];
|
|
}
|
|
|
|
- (NSString *)appSharedDataDirectoryPath
|
|
{
|
|
NSURL *groupContainerDirectoryURL =
|
|
[[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:TSConstants.applicationGroup];
|
|
return [groupContainerDirectoryURL path];
|
|
}
|
|
|
|
- (NSString *)appDatabaseBaseDirectoryPath
|
|
{
|
|
return self.appSharedDataDirectoryPath;
|
|
}
|
|
|
|
- (NSUserDefaults *)appUserDefaults
|
|
{
|
|
return [[NSUserDefaults alloc] initWithSuiteName:TSConstants.applicationGroup];
|
|
}
|
|
|
|
- (BOOL)canPresentNotifications
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)shouldProcessIncomingMessages
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)hasUI
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)didLastLaunchNotTerminate
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)hasActiveCall
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (NSString *)debugLogsDirPath
|
|
{
|
|
return DebugLogger.shareExtensionDebugLogsDirPath;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|