Compare commits
10 Commits
Kordophone
...
kordophone
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e5b78d62f0 | ||
|
|
3ca9abcccd | ||
|
|
cad3425327 | ||
|
|
83ba072a9d | ||
|
|
bd01480ad6 | ||
|
|
c7087a394e | ||
| ebad248c1c | |||
| e161eedef3 | |||
| 7a3303da06 | |||
| 641e4c53fa |
@@ -3457,6 +3457,7 @@ __attribute__((visibility("default"))) @interface IMService : NSObject { }
|
|||||||
- (id)loadUnreadMessagesWithLimit:(unsigned long long)arg1 fallbackToMessagesUpToGUID:(id)arg2;
|
- (id)loadUnreadMessagesWithLimit:(unsigned long long)arg1 fallbackToMessagesUpToGUID:(id)arg2;
|
||||||
- (id)loadFrequentRepliesLimit:(unsigned long long)arg1 loadImmediately:(BOOL)arg2;
|
- (id)loadFrequentRepliesLimit:(unsigned long long)arg1 loadImmediately:(BOOL)arg2;
|
||||||
- (id)loadMessagesBeforeAndAfterGUID:(id)arg1 numberOfMessagesToLoadBeforeGUID:(unsigned long long)arg2 numberOfMessagesToLoadAfterGUID:(unsigned long long)arg3 loadImmediately:(BOOL)arg4;
|
- (id)loadMessagesBeforeAndAfterGUID:(id)arg1 numberOfMessagesToLoadBeforeGUID:(unsigned long long)arg2 numberOfMessagesToLoadAfterGUID:(unsigned long long)arg3 loadImmediately:(BOOL)arg4;
|
||||||
|
- (id)loadMessagesBeforeAndAfterGUID:(id)arg1 numberOfMessagesToLoadBeforeGUID:(unsigned long long)arg2 numberOfMessagesToLoadAfterGUID:(unsigned long long)arg3 loadImmediately:(BOOL)arg4 threadIdentifier:(id)tid;
|
||||||
- (id)loadMessagesUpToGUID:(id)arg1 date:(id)arg2 limit:(unsigned long long)arg3 loadImmediately:(BOOL)arg4;
|
- (id)loadMessagesUpToGUID:(id)arg1 date:(id)arg2 limit:(unsigned long long)arg3 loadImmediately:(BOOL)arg4;
|
||||||
- (id)loadMessagesBeforeDate:(id)arg1 limit:(unsigned long long)arg2 loadImmediately:(BOOL)arg3;
|
- (id)loadMessagesBeforeDate:(id)arg1 limit:(unsigned long long)arg2 loadImmediately:(BOOL)arg3;
|
||||||
- (id)loadMessagesBeforeDate:(id)arg1 limit:(unsigned long long)arg2;
|
- (id)loadMessagesBeforeDate:(id)arg1 limit:(unsigned long long)arg2;
|
||||||
|
|||||||
13
Makefile
Normal file
13
Makefile
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
INSTALL_PATH := /usr/share/kordophone
|
||||||
|
|
||||||
|
build/Release/kordophoned:
|
||||||
|
xcodebuild
|
||||||
|
|
||||||
|
.PHONY: install
|
||||||
|
install: build/Release/kordophoned
|
||||||
|
install -d $(INSTALL_PATH)
|
||||||
|
install build/Release/kordophoned $(INSTALL_PATH)
|
||||||
|
cp -rf build/Release/CocoaHTTPServer.framework $(INSTALL_PATH)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -Rf build
|
||||||
@@ -81,6 +81,10 @@
|
|||||||
CD602062219B68950024D9C5 /* MBIMSendMessageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CD602061219B68950024D9C5 /* MBIMSendMessageOperation.m */; };
|
CD602062219B68950024D9C5 /* MBIMSendMessageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CD602061219B68950024D9C5 /* MBIMSendMessageOperation.m */; };
|
||||||
CD83E156219BE10A00F4CCEA /* hooking.m in Sources */ = {isa = PBXBuildFile; fileRef = CD83E155219BE10A00F4CCEA /* hooking.m */; };
|
CD83E156219BE10A00F4CCEA /* hooking.m in Sources */ = {isa = PBXBuildFile; fileRef = CD83E155219BE10A00F4CCEA /* hooking.m */; };
|
||||||
CD83E166219BE91600F4CCEA /* agentHook.m in Sources */ = {isa = PBXBuildFile; fileRef = CD83E165219BE91600F4CCEA /* agentHook.m */; };
|
CD83E166219BE91600F4CCEA /* agentHook.m in Sources */ = {isa = PBXBuildFile; fileRef = CD83E165219BE91600F4CCEA /* agentHook.m */; };
|
||||||
|
CD936A32289B353F0093A1AC /* MBIMErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = CD936A31289B353F0093A1AC /* MBIMErrorResponse.m */; };
|
||||||
|
CD936A35289B47D60093A1AC /* MBIMVersionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CD936A34289B47D50093A1AC /* MBIMVersionOperation.m */; };
|
||||||
|
CD936A39289B49FC0093A1AC /* MBIMStatusOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CD936A38289B49FC0093A1AC /* MBIMStatusOperation.m */; };
|
||||||
|
CDDCF78D283F398C0087ABDF /* MBIMDeleteConversationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CDDCF78C283F398C0087ABDF /* MBIMDeleteConversationOperation.m */; };
|
||||||
CDE4556421A3578A0041F5DD /* IMChat+Encoded.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE4556321A3578A0041F5DD /* IMChat+Encoded.m */; };
|
CDE4556421A3578A0041F5DD /* IMChat+Encoded.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE4556321A3578A0041F5DD /* IMChat+Encoded.m */; };
|
||||||
CDE455A121A365AD0041F5DD /* MBIMMarkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE455A021A365AD0041F5DD /* MBIMMarkOperation.m */; };
|
CDE455A121A365AD0041F5DD /* MBIMMarkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE455A021A365AD0041F5DD /* MBIMMarkOperation.m */; };
|
||||||
CDE455A421A5308D0041F5DD /* MBIMFetchAttachmentOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE455A321A5308D0041F5DD /* MBIMFetchAttachmentOperation.m */; };
|
CDE455A421A5308D0041F5DD /* MBIMFetchAttachmentOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE455A321A5308D0041F5DD /* MBIMFetchAttachmentOperation.m */; };
|
||||||
@@ -236,6 +240,15 @@
|
|||||||
CD83E161219BE91500F4CCEA /* libagentHook.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libagentHook.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
|
CD83E161219BE91500F4CCEA /* libagentHook.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libagentHook.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
CD83E165219BE91600F4CCEA /* agentHook.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = agentHook.m; sourceTree = "<group>"; };
|
CD83E165219BE91600F4CCEA /* agentHook.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = agentHook.m; sourceTree = "<group>"; };
|
||||||
CD83E1B5219BF78E00F4CCEA /* hookAgent.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = hookAgent.sh; sourceTree = "<group>"; };
|
CD83E1B5219BF78E00F4CCEA /* hookAgent.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = hookAgent.sh; sourceTree = "<group>"; };
|
||||||
|
CD936A2F289B31740093A1AC /* kordophoned-RestrictedEntitlements.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "kordophoned-RestrictedEntitlements.plist"; sourceTree = "<group>"; };
|
||||||
|
CD936A30289B353F0093A1AC /* MBIMErrorResponse.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBIMErrorResponse.h; sourceTree = "<group>"; };
|
||||||
|
CD936A31289B353F0093A1AC /* MBIMErrorResponse.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MBIMErrorResponse.m; sourceTree = "<group>"; };
|
||||||
|
CD936A33289B47D50093A1AC /* MBIMVersionOperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBIMVersionOperation.h; sourceTree = "<group>"; };
|
||||||
|
CD936A34289B47D50093A1AC /* MBIMVersionOperation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MBIMVersionOperation.m; sourceTree = "<group>"; };
|
||||||
|
CD936A37289B49FC0093A1AC /* MBIMStatusOperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBIMStatusOperation.h; sourceTree = "<group>"; };
|
||||||
|
CD936A38289B49FC0093A1AC /* MBIMStatusOperation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MBIMStatusOperation.m; sourceTree = "<group>"; };
|
||||||
|
CDDCF78B283F398C0087ABDF /* MBIMDeleteConversationOperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBIMDeleteConversationOperation.h; sourceTree = "<group>"; };
|
||||||
|
CDDCF78C283F398C0087ABDF /* MBIMDeleteConversationOperation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MBIMDeleteConversationOperation.m; sourceTree = "<group>"; };
|
||||||
CDE4556221A3578A0041F5DD /* IMChat+Encoded.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "IMChat+Encoded.h"; sourceTree = "<group>"; };
|
CDE4556221A3578A0041F5DD /* IMChat+Encoded.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "IMChat+Encoded.h"; sourceTree = "<group>"; };
|
||||||
CDE4556321A3578A0041F5DD /* IMChat+Encoded.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "IMChat+Encoded.m"; sourceTree = "<group>"; };
|
CDE4556321A3578A0041F5DD /* IMChat+Encoded.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "IMChat+Encoded.m"; sourceTree = "<group>"; };
|
||||||
CDE4559F21A365AD0041F5DD /* MBIMMarkOperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBIMMarkOperation.h; sourceTree = "<group>"; };
|
CDE4559F21A365AD0041F5DD /* MBIMMarkOperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBIMMarkOperation.h; sourceTree = "<group>"; };
|
||||||
@@ -353,6 +366,8 @@
|
|||||||
1AA43E8E219EBB2D00EDF1A7 /* MBIMJSONDataResponse.m */,
|
1AA43E8E219EBB2D00EDF1A7 /* MBIMJSONDataResponse.m */,
|
||||||
CDE455A521A531ED0041F5DD /* MBIMDataResponse.h */,
|
CDE455A521A531ED0041F5DD /* MBIMDataResponse.h */,
|
||||||
CDE455A621A531ED0041F5DD /* MBIMDataResponse.m */,
|
CDE455A621A531ED0041F5DD /* MBIMDataResponse.m */,
|
||||||
|
CD936A30289B353F0093A1AC /* MBIMErrorResponse.h */,
|
||||||
|
CD936A31289B353F0093A1AC /* MBIMErrorResponse.m */,
|
||||||
1AA43E93219EC38E00EDF1A7 /* MBIMHTTPUtilities.h */,
|
1AA43E93219EC38E00EDF1A7 /* MBIMHTTPUtilities.h */,
|
||||||
1AA43E94219EC38E00EDF1A7 /* MBIMHTTPUtilities.m */,
|
1AA43E94219EC38E00EDF1A7 /* MBIMHTTPUtilities.m */,
|
||||||
);
|
);
|
||||||
@@ -520,24 +535,30 @@
|
|||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
1AA43E90219EBB3400EDF1A7 /* Utilities */,
|
1AA43E90219EBB3400EDF1A7 /* Utilities */,
|
||||||
|
CD2ECEC0269539100055E302 /* MBIMAuthenticateOperation.h */,
|
||||||
|
CD2ECEC1269539100055E302 /* MBIMAuthenticateOperation.m */,
|
||||||
CD602054219B5DFD0024D9C5 /* MBIMBridgeOperation.h */,
|
CD602054219B5DFD0024D9C5 /* MBIMBridgeOperation.h */,
|
||||||
CD602055219B5DFD0024D9C5 /* MBIMBridgeOperation.m */,
|
CD602055219B5DFD0024D9C5 /* MBIMBridgeOperation.m */,
|
||||||
CD60205A219B623F0024D9C5 /* MBIMMessagesListOperation.h */,
|
|
||||||
CD60205B219B623F0024D9C5 /* MBIMMessagesListOperation.m */,
|
|
||||||
CD60205D219B674B0024D9C5 /* MBIMConversationListOperation.h */,
|
CD60205D219B674B0024D9C5 /* MBIMConversationListOperation.h */,
|
||||||
CD60205E219B674B0024D9C5 /* MBIMConversationListOperation.m */,
|
CD60205E219B674B0024D9C5 /* MBIMConversationListOperation.m */,
|
||||||
|
CDDCF78B283F398C0087ABDF /* MBIMDeleteConversationOperation.h */,
|
||||||
|
CDDCF78C283F398C0087ABDF /* MBIMDeleteConversationOperation.m */,
|
||||||
CDE455A221A5308D0041F5DD /* MBIMFetchAttachmentOperation.h */,
|
CDE455A221A5308D0041F5DD /* MBIMFetchAttachmentOperation.h */,
|
||||||
CDE455A321A5308D0041F5DD /* MBIMFetchAttachmentOperation.m */,
|
CDE455A321A5308D0041F5DD /* MBIMFetchAttachmentOperation.m */,
|
||||||
CDE4559F21A365AD0041F5DD /* MBIMMarkOperation.h */,
|
CDE4559F21A365AD0041F5DD /* MBIMMarkOperation.h */,
|
||||||
CDE455A021A365AD0041F5DD /* MBIMMarkOperation.m */,
|
CDE455A021A365AD0041F5DD /* MBIMMarkOperation.m */,
|
||||||
|
CD60205A219B623F0024D9C5 /* MBIMMessagesListOperation.h */,
|
||||||
|
CD60205B219B623F0024D9C5 /* MBIMMessagesListOperation.m */,
|
||||||
CD602060219B68950024D9C5 /* MBIMSendMessageOperation.h */,
|
CD602060219B68950024D9C5 /* MBIMSendMessageOperation.h */,
|
||||||
CD602061219B68950024D9C5 /* MBIMSendMessageOperation.m */,
|
CD602061219B68950024D9C5 /* MBIMSendMessageOperation.m */,
|
||||||
|
CD936A37289B49FC0093A1AC /* MBIMStatusOperation.h */,
|
||||||
|
CD936A38289B49FC0093A1AC /* MBIMStatusOperation.m */,
|
||||||
CD14F19F219FE7D600E7DD22 /* MBIMUpdatePollOperation.h */,
|
CD14F19F219FE7D600E7DD22 /* MBIMUpdatePollOperation.h */,
|
||||||
CD14F1A0219FE7D600E7DD22 /* MBIMUpdatePollOperation.m */,
|
CD14F1A0219FE7D600E7DD22 /* MBIMUpdatePollOperation.m */,
|
||||||
1AD8936C21EFD986009B599A /* MBIMUploadAttachmentOperation.h */,
|
1AD8936C21EFD986009B599A /* MBIMUploadAttachmentOperation.h */,
|
||||||
1AD8936D21EFD986009B599A /* MBIMUploadAttachmentOperation.m */,
|
1AD8936D21EFD986009B599A /* MBIMUploadAttachmentOperation.m */,
|
||||||
CD2ECEC0269539100055E302 /* MBIMAuthenticateOperation.h */,
|
CD936A33289B47D50093A1AC /* MBIMVersionOperation.h */,
|
||||||
CD2ECEC1269539100055E302 /* MBIMAuthenticateOperation.m */,
|
CD936A34289B47D50093A1AC /* MBIMVersionOperation.m */,
|
||||||
);
|
);
|
||||||
path = Operations;
|
path = Operations;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@@ -569,6 +590,7 @@
|
|||||||
1A0C446D219A4BCD00F2AC00 /* Bridge */,
|
1A0C446D219A4BCD00F2AC00 /* Bridge */,
|
||||||
CDF62334219A895D00690038 /* main.m */,
|
CDF62334219A895D00690038 /* main.m */,
|
||||||
1AAB32B221F835BD004A2A72 /* KPServer.pch */,
|
1AAB32B221F835BD004A2A72 /* KPServer.pch */,
|
||||||
|
CD936A2F289B31740093A1AC /* kordophoned-RestrictedEntitlements.plist */,
|
||||||
);
|
);
|
||||||
path = kordophone;
|
path = kordophone;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@@ -677,6 +699,7 @@
|
|||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = CDF62336219A895D00690038 /* Build configuration list for PBXNativeTarget "kordophoned" */;
|
buildConfigurationList = CDF62336219A895D00690038 /* Build configuration list for PBXNativeTarget "kordophoned" */;
|
||||||
buildPhases = (
|
buildPhases = (
|
||||||
|
CD936A36289B48930093A1AC /* Compile Version String */,
|
||||||
CDF6232E219A895D00690038 /* Sources */,
|
CDF6232E219A895D00690038 /* Sources */,
|
||||||
CDF6232F219A895D00690038 /* Frameworks */,
|
CDF6232F219A895D00690038 /* Frameworks */,
|
||||||
CDF62330219A895D00690038 /* CopyFiles */,
|
CDF62330219A895D00690038 /* CopyFiles */,
|
||||||
@@ -773,6 +796,24 @@
|
|||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n\nRESULT=$(install_name_tool -delete_rpath $BUILT_PRODUCTS_DIR $BUILT_PRODUCTS_DIR/$EXECUTABLE_NAME 2> /dev/null)\n\ninstall_name_tool -add_rpath $BUILT_PRODUCTS_DIR $BUILT_PRODUCTS_DIR/$EXECUTABLE_NAME\n";
|
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n\nRESULT=$(install_name_tool -delete_rpath $BUILT_PRODUCTS_DIR $BUILT_PRODUCTS_DIR/$EXECUTABLE_NAME 2> /dev/null)\n\ninstall_name_tool -add_rpath $BUILT_PRODUCTS_DIR $BUILT_PRODUCTS_DIR/$EXECUTABLE_NAME\n";
|
||||||
};
|
};
|
||||||
|
CD936A36289B48930093A1AC /* Compile Version String */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
);
|
||||||
|
name = "Compile Version String";
|
||||||
|
outputFileListPaths = (
|
||||||
|
);
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\nOUTPUT_FILE=\"$DERIVED_FILE_DIR/MBIMVersion.c\"\nVERSION_STR=`git describe`\n\necho \"const char* MBIMVersion() { return \\\"$VERSION_STR\\\"; }\" > $OUTPUT_FILE\n";
|
||||||
|
};
|
||||||
/* End PBXShellScriptBuildPhase section */
|
/* End PBXShellScriptBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXSourcesBuildPhase section */
|
/* Begin PBXSourcesBuildPhase section */
|
||||||
@@ -836,6 +877,7 @@
|
|||||||
CD2ECEC526953F2A0055E302 /* MBIMAuthToken.m in Sources */,
|
CD2ECEC526953F2A0055E302 /* MBIMAuthToken.m in Sources */,
|
||||||
CD83E156219BE10A00F4CCEA /* hooking.m in Sources */,
|
CD83E156219BE10A00F4CCEA /* hooking.m in Sources */,
|
||||||
1AAB32B121F82EB7004A2A72 /* MBIMLogging.m in Sources */,
|
1AAB32B121F82EB7004A2A72 /* MBIMLogging.m in Sources */,
|
||||||
|
CDDCF78D283F398C0087ABDF /* MBIMDeleteConversationOperation.m in Sources */,
|
||||||
1AD8936E21EFD986009B599A /* MBIMUploadAttachmentOperation.m in Sources */,
|
1AD8936E21EFD986009B599A /* MBIMUploadAttachmentOperation.m in Sources */,
|
||||||
CDF6233A219A8A5600690038 /* MBIMBridge.m in Sources */,
|
CDF6233A219A8A5600690038 /* MBIMBridge.m in Sources */,
|
||||||
CDF62335219A895D00690038 /* main.m in Sources */,
|
CDF62335219A895D00690038 /* main.m in Sources */,
|
||||||
@@ -844,12 +886,15 @@
|
|||||||
CD14F1A4219FF22700E7DD22 /* IMMessageItem+Encoded.m in Sources */,
|
CD14F1A4219FF22700E7DD22 /* IMMessageItem+Encoded.m in Sources */,
|
||||||
CD602062219B68950024D9C5 /* MBIMSendMessageOperation.m in Sources */,
|
CD602062219B68950024D9C5 /* MBIMSendMessageOperation.m in Sources */,
|
||||||
CD14F1A1219FE7D600E7DD22 /* MBIMUpdatePollOperation.m in Sources */,
|
CD14F1A1219FE7D600E7DD22 /* MBIMUpdatePollOperation.m in Sources */,
|
||||||
|
CD936A39289B49FC0093A1AC /* MBIMStatusOperation.m in Sources */,
|
||||||
CDE455A121A365AD0041F5DD /* MBIMMarkOperation.m in Sources */,
|
CDE455A121A365AD0041F5DD /* MBIMMarkOperation.m in Sources */,
|
||||||
CDE455A721A531ED0041F5DD /* MBIMDataResponse.m in Sources */,
|
CDE455A721A531ED0041F5DD /* MBIMDataResponse.m in Sources */,
|
||||||
|
CD936A35289B47D60093A1AC /* MBIMVersionOperation.m in Sources */,
|
||||||
CD602056219B5DFD0024D9C5 /* MBIMBridgeOperation.m in Sources */,
|
CD602056219B5DFD0024D9C5 /* MBIMBridgeOperation.m in Sources */,
|
||||||
CD60205F219B674B0024D9C5 /* MBIMConversationListOperation.m in Sources */,
|
CD60205F219B674B0024D9C5 /* MBIMConversationListOperation.m in Sources */,
|
||||||
CDE4556421A3578A0041F5DD /* IMChat+Encoded.m in Sources */,
|
CDE4556421A3578A0041F5DD /* IMChat+Encoded.m in Sources */,
|
||||||
1AA43E8F219EBB2D00EDF1A7 /* MBIMJSONDataResponse.m in Sources */,
|
1AA43E8F219EBB2D00EDF1A7 /* MBIMJSONDataResponse.m in Sources */,
|
||||||
|
CD936A32289B353F0093A1AC /* MBIMErrorResponse.m in Sources */,
|
||||||
CD2ECEC2269539100055E302 /* MBIMAuthenticateOperation.m in Sources */,
|
CD2ECEC2269539100055E302 /* MBIMAuthenticateOperation.m in Sources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
@@ -1118,6 +1163,7 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
CLANG_ENABLE_MODULES = NO;
|
CLANG_ENABLE_MODULES = NO;
|
||||||
|
CODE_SIGN_ENTITLEMENTS = "kordophone/kordophoned-RestrictedEntitlements.plist";
|
||||||
CODE_SIGN_IDENTITY = "-";
|
CODE_SIGN_IDENTITY = "-";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
GCC_PREFIX_HEADER = kordophone/KPServer.pch;
|
GCC_PREFIX_HEADER = kordophone/KPServer.pch;
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ sudo defaults write /Library/Preferences/com.apple.security.coderequirements Ent
|
|||||||
|
|
||||||
Maybe a better thing to do is to DYLD_PRELOAD `imagent` and swizzle `IMDAuditTokenTaskHasEntitlement` to always return YES.
|
Maybe a better thing to do is to DYLD_PRELOAD `imagent` and swizzle `IMDAuditTokenTaskHasEntitlement` to always return YES.
|
||||||
|
|
||||||
|
Included in the project is "kordophoned-RestrictedEntitlements.plist", which contains all necessary restricted entitlements.
|
||||||
|
On production macOS builds, the kernel will kill kordophoned immediately if it's signed using restricted entitlements, so agent hook is a
|
||||||
|
better option when running on prod machines. By default, the project is configured to ignore kordophoned-RestrictedEntitlements.plist when building.
|
||||||
|
|
||||||
## Building/linking
|
## Building/linking
|
||||||
If you get dyld errors running from the command line, use `install_name_tool` to update the @rpath (where @rpath points to where linked Frameworks like GCDWebServer is).
|
If you get dyld errors running from the command line, use `install_name_tool` to update the @rpath (where @rpath points to where linked Frameworks like GCDWebServer is).
|
||||||
|
|||||||
@@ -60,9 +60,14 @@
|
|||||||
MBIMAuthToken *token = [[MBIMAuthToken alloc] initWithUsername:username];
|
MBIMAuthToken *token = [[MBIMAuthToken alloc] initWithUsername:username];
|
||||||
|
|
||||||
// All systems go
|
// All systems go
|
||||||
response = [MBIMJSONDataResponse responseWithJSONObject:@{
|
MBIMJSONDataResponse *dataResponse = [MBIMJSONDataResponse responseWithJSONObject:@{
|
||||||
@"jwt" : token.jwtToken
|
@"jwt" : token.jwtToken
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
// Send a cookie down so we can use httpOnly cookies
|
||||||
|
dataResponse.httpHeaders[@"Set-Cookie"] = [NSString stringWithFormat:@"auth_token=%@", token.jwtToken];
|
||||||
|
|
||||||
|
response = dataResponse;
|
||||||
} while (NO);
|
} while (NO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
//
|
||||||
|
// MBIMDeleteConversationOperation.h
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 5/25/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMBridgeOperation.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface MBIMDeleteConversationOperation : MBIMBridgeOperation
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
//
|
||||||
|
// MBIMDeleteConversationOperation.m
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 5/25/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMDeleteConversationOperation.h"
|
||||||
|
#import "IMChat+Encoded.h"
|
||||||
|
|
||||||
|
#import "IMCore_ClassDump.h"
|
||||||
|
|
||||||
|
@implementation MBIMDeleteConversationOperation
|
||||||
|
+ (void)load { [super load]; }
|
||||||
|
|
||||||
|
+ (NSString *)endpointName
|
||||||
|
{
|
||||||
|
return @"delete";
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)main
|
||||||
|
{
|
||||||
|
__block NSObject<HTTPResponse> *response = nil;
|
||||||
|
do {
|
||||||
|
NSString *guid = [self valueForQueryItemWithName:@"guid"];
|
||||||
|
|
||||||
|
if (!guid) {
|
||||||
|
MBIMLogInfo(@"No conversation GUID provided.");
|
||||||
|
response = [[HTTPErrorResponse alloc] initWithErrorCode:500];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
dispatch_sync([[self class] sharedIMAccessQueue], ^{
|
||||||
|
IMChat *chat = [[IMChatRegistry sharedInstance] existingChatWithGUID:guid];
|
||||||
|
if (!chat) {
|
||||||
|
MBIMLogInfo(@"Chat with guid: %@ not found", guid);
|
||||||
|
response = [[HTTPErrorResponse alloc] initWithErrorCode:500];
|
||||||
|
} else {
|
||||||
|
[chat remove];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
response = [[HTTPErrorResponse alloc] initWithErrorCode:200];
|
||||||
|
} while (0);
|
||||||
|
|
||||||
|
self.serverCompletionBlock(response);
|
||||||
|
}
|
||||||
|
@end
|
||||||
@@ -9,9 +9,17 @@
|
|||||||
#import "MBIMMessagesListOperation.h"
|
#import "MBIMMessagesListOperation.h"
|
||||||
#import "MBIMHTTPUtilities.h"
|
#import "MBIMHTTPUtilities.h"
|
||||||
#import "IMMessageItem+Encoded.h"
|
#import "IMMessageItem+Encoded.h"
|
||||||
|
#import "MBIMErrorResponse.h"
|
||||||
|
|
||||||
#import "IMCore_ClassDump.h"
|
#import "IMCore_ClassDump.h"
|
||||||
|
|
||||||
|
#define kDefaultMessagesLimit 75
|
||||||
|
|
||||||
|
@interface IMChat (MBIMSafeMessagesLoading)
|
||||||
|
- (void)load:(NSUInteger)number messagesBeforeGUID:(NSString *)beforeMessageGUID;
|
||||||
|
- (void)load:(NSUInteger)number messagesAfterGUID:(NSString *)afterMessageGUID;
|
||||||
|
@end
|
||||||
|
|
||||||
@implementation MBIMMessagesListOperation
|
@implementation MBIMMessagesListOperation
|
||||||
|
|
||||||
+ (void)load { [super load]; }
|
+ (void)load { [super load]; }
|
||||||
@@ -25,11 +33,32 @@
|
|||||||
{
|
{
|
||||||
__block NSObject<HTTPResponse> *response = nil;
|
__block NSObject<HTTPResponse> *response = nil;
|
||||||
do {
|
do {
|
||||||
|
// Required parameters
|
||||||
NSString *guid = [self valueForQueryItemWithName:@"guid"];
|
NSString *guid = [self valueForQueryItemWithName:@"guid"];
|
||||||
|
|
||||||
|
// Optional
|
||||||
|
NSString *limitValue = [self valueForQueryItemWithName:@"limit"];
|
||||||
|
|
||||||
|
NSDate *beforeDate = nil;
|
||||||
|
NSString *beforeDateValue = [self valueForQueryItemWithName:@"beforeDate"];
|
||||||
|
if (beforeDateValue) {
|
||||||
|
beforeDate = [beforeDateValue ISO8601Date];
|
||||||
|
if (!beforeDate) {
|
||||||
|
response = [[MBIMErrorResponse alloc] initWithErrorCode:500 message:@"Unable to decode ISO8601 beforeDate value"];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NSString *beforeMessageGUID = [self valueForQueryItemWithName:@"beforeMessageGUID"];
|
||||||
|
NSString *afterMessageGUID = [self valueForQueryItemWithName:@"afterMessageGUID"];
|
||||||
|
|
||||||
|
if (beforeMessageGUID && afterMessageGUID) {
|
||||||
|
response = [[MBIMErrorResponse alloc] initWithErrorCode:500 message:@"Cannot provide both beforeMessageGUID and afterMessageGUID params."];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
if (!guid) {
|
if (!guid) {
|
||||||
MBIMLogInfo(@"No query item provided");
|
response = [[MBIMErrorResponse alloc] initWithErrorCode:500 message:@"No GUID provided."];
|
||||||
response = [[HTTPErrorResponse alloc] initWithErrorCode:500];
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -41,12 +70,35 @@
|
|||||||
response = [[HTTPErrorResponse alloc] initWithErrorCode:500];
|
response = [[HTTPErrorResponse alloc] initWithErrorCode:500];
|
||||||
} else {
|
} else {
|
||||||
// Load messages
|
// Load messages
|
||||||
[chat loadMessagesBeforeDate:[NSDate date] limit:50 loadImmediately:YES];
|
// (Must be done on main queue for some reason)
|
||||||
|
dispatch_sync(dispatch_get_main_queue(), ^{
|
||||||
|
NSUInteger limit = kDefaultMessagesLimit;
|
||||||
|
if (limitValue) {
|
||||||
|
limit = [limitValue integerValue];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (beforeMessageGUID) {
|
||||||
|
[chat load:limit messagesBeforeGUID:beforeMessageGUID];
|
||||||
|
} else if (afterMessageGUID) {
|
||||||
|
[chat load:limit messagesAfterGUID:afterMessageGUID];
|
||||||
|
} else {
|
||||||
|
[chat loadMessagesBeforeDate:beforeDate limit:limit loadImmediately:YES];
|
||||||
|
}
|
||||||
|
|
||||||
[[chat chatItems] enumerateMessagesWithOptions:0 usingBlock:^(IMMessage *message, BOOL *stop) {
|
[[chat chatItems] enumerateMessagesWithOptions:0 usingBlock:^(IMMessage *message, BOOL *stop) {
|
||||||
|
// Assume "beforeMessageGUID" is exclusive
|
||||||
|
if ([[message guid] isEqual:beforeMessageGUID]) {
|
||||||
|
*stop = YES;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Assume "afterMessageGUID" is exclusive.
|
||||||
|
if (![[message guid] isEqual:afterMessageGUID]) {
|
||||||
NSDictionary *messageDict = [message mbim_dictionaryRepresentation];
|
NSDictionary *messageDict = [message mbim_dictionaryRepresentation];
|
||||||
[messages addObject:messageDict];
|
[messages addObject:messageDict];
|
||||||
|
}
|
||||||
}];
|
}];
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -57,3 +109,35 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
@implementation IMChat (MBIMSafeMessagesLoading)
|
||||||
|
|
||||||
|
- (id)_safe_loadMessagesBeforeAndAfterGUID:(NSString *)messagesGUID numberOfMessagesToLoadBeforeGUID:(NSUInteger)limitBefore numberOfMessagesToLoadAfterGUID:(NSUInteger)limitAfter loadImmediately:(BOOL)loadImmediately
|
||||||
|
{
|
||||||
|
if ([self respondsToSelector:@selector(loadMessagesBeforeAndAfterGUID:
|
||||||
|
numberOfMessagesToLoadBeforeGUID:
|
||||||
|
numberOfMessagesToLoadAfterGUID:
|
||||||
|
loadImmediately:threadIdentifier:)]) {
|
||||||
|
return [self loadMessagesBeforeAndAfterGUID:messagesGUID
|
||||||
|
numberOfMessagesToLoadBeforeGUID:limitBefore
|
||||||
|
numberOfMessagesToLoadAfterGUID:limitAfter
|
||||||
|
loadImmediately:YES threadIdentifier:nil];
|
||||||
|
} else {
|
||||||
|
return [self loadMessagesBeforeAndAfterGUID:messagesGUID
|
||||||
|
numberOfMessagesToLoadBeforeGUID:limitBefore
|
||||||
|
numberOfMessagesToLoadAfterGUID:limitAfter
|
||||||
|
loadImmediately:YES];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)load:(NSUInteger)number messagesBeforeGUID:(NSString *)beforeMessageGUID
|
||||||
|
{
|
||||||
|
[self _safe_loadMessagesBeforeAndAfterGUID:beforeMessageGUID numberOfMessagesToLoadBeforeGUID:number numberOfMessagesToLoadAfterGUID:0 loadImmediately:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)load:(NSUInteger)number messagesAfterGUID:(NSString *)afterMessageGUID
|
||||||
|
{
|
||||||
|
[self _safe_loadMessagesBeforeAndAfterGUID:afterMessageGUID numberOfMessagesToLoadBeforeGUID:0 numberOfMessagesToLoadAfterGUID:number loadImmediately:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|||||||
17
kordophone/Bridge/Operations/MBIMStatusOperation.h
Normal file
17
kordophone/Bridge/Operations/MBIMStatusOperation.h
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
//
|
||||||
|
// MBIMStatusOperation.h
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 8/3/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMBridgeOperation.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface MBIMStatusOperation : MBIMBridgeOperation
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
25
kordophone/Bridge/Operations/MBIMStatusOperation.m
Normal file
25
kordophone/Bridge/Operations/MBIMStatusOperation.m
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
//
|
||||||
|
// MBIMStatusOperation.m
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 8/3/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMStatusOperation.h"
|
||||||
|
|
||||||
|
@implementation MBIMStatusOperation
|
||||||
|
|
||||||
|
+ (void)load { [super load]; }
|
||||||
|
|
||||||
|
+ (NSString *)endpointName
|
||||||
|
{
|
||||||
|
return @"status";
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)main
|
||||||
|
{
|
||||||
|
self.serverCompletionBlock([[MBIMDataResponse alloc] initWithData:[@"OK" dataUsingEncoding:NSUTF8StringEncoding]]);
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
17
kordophone/Bridge/Operations/MBIMVersionOperation.h
Normal file
17
kordophone/Bridge/Operations/MBIMVersionOperation.h
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
//
|
||||||
|
// MBIMVersionOperation.h
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 8/3/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMBridgeOperation.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface MBIMVersionOperation : MBIMBridgeOperation
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
35
kordophone/Bridge/Operations/MBIMVersionOperation.m
Normal file
35
kordophone/Bridge/Operations/MBIMVersionOperation.m
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
//
|
||||||
|
// MBIMVersionOperation.m
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 8/3/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMVersionOperation.h"
|
||||||
|
#import "MBIMErrorResponse.h"
|
||||||
|
|
||||||
|
#ifdef __clang_analyzer__
|
||||||
|
const char* MBIMVersion() {
|
||||||
|
return "UNKNOWN";
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#import "MBIMVersion.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
@implementation MBIMVersionOperation
|
||||||
|
|
||||||
|
+ (void)load { [super load]; }
|
||||||
|
|
||||||
|
+ (NSString *)endpointName
|
||||||
|
{
|
||||||
|
return @"version";
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)main
|
||||||
|
{
|
||||||
|
NSString *versionString = [NSString stringWithUTF8String:MBIMVersion()];
|
||||||
|
self.serverCompletionBlock([[MBIMDataResponse alloc] initWithData:[versionString dataUsingEncoding:NSUTF8StringEncoding]]);
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
NS_ASSUME_NONNULL_BEGIN
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
@interface MBIMDataResponse : HTTPDataResponse
|
@interface MBIMDataResponse : HTTPDataResponse
|
||||||
|
@property (nonatomic, readonly) NSMutableDictionary *httpHeaders;
|
||||||
- (instancetype)initWithData:(NSData *)data contentType:(NSString *)contentType;
|
- (instancetype)initWithData:(NSData *)data contentType:(NSString *)contentType;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
@implementation MBIMDataResponse {
|
@implementation MBIMDataResponse {
|
||||||
NSString *_contentType;
|
NSString *_contentType;
|
||||||
|
NSMutableDictionary *_httpHeaders;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (instancetype)initWithData:(NSData *)data contentType:(NSString *)contentType
|
- (instancetype)initWithData:(NSData *)data contentType:(NSString *)contentType
|
||||||
@@ -17,6 +18,11 @@
|
|||||||
self = [super initWithData:data];
|
self = [super initWithData:data];
|
||||||
if (self) {
|
if (self) {
|
||||||
_contentType = contentType;
|
_contentType = contentType;
|
||||||
|
_httpHeaders = [@{
|
||||||
|
@"Content-Type" : _contentType ?: @"application/octet-stream",
|
||||||
|
@"Access-Control-Allow-Origin" : @"*", // CORS
|
||||||
|
@"Access-Control-Allow-Credentials" : @"true"
|
||||||
|
} mutableCopy];
|
||||||
}
|
}
|
||||||
|
|
||||||
return self;
|
return self;
|
||||||
@@ -24,9 +30,7 @@
|
|||||||
|
|
||||||
- (NSDictionary *)httpHeaders
|
- (NSDictionary *)httpHeaders
|
||||||
{
|
{
|
||||||
return @{
|
return _httpHeaders;
|
||||||
@"Content-Type" : _contentType ?: @"application/octet-stream"
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
18
kordophone/Bridge/Operations/Utilities/MBIMErrorResponse.h
Normal file
18
kordophone/Bridge/Operations/Utilities/MBIMErrorResponse.h
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
//
|
||||||
|
// MBIMErrorResponse.h
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 8/3/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "HTTPDataResponse.h"
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface MBIMErrorResponse : HTTPDataResponse
|
||||||
|
- (instancetype)initWithErrorCode:(int)httpErrorCode;
|
||||||
|
- (instancetype)initWithErrorCode:(int)httpErrorCode message:(NSString *)message;
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
||||||
38
kordophone/Bridge/Operations/Utilities/MBIMErrorResponse.m
Normal file
38
kordophone/Bridge/Operations/Utilities/MBIMErrorResponse.m
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
//
|
||||||
|
// MBIMErrorResponse.m
|
||||||
|
// kordophoned
|
||||||
|
//
|
||||||
|
// Created by James Magahern on 8/3/22.
|
||||||
|
// Copyright © 2022 James Magahern. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MBIMErrorResponse.h"
|
||||||
|
|
||||||
|
@implementation MBIMErrorResponse {
|
||||||
|
int _status;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (instancetype)initWithErrorCode:(int)httpErrorCode
|
||||||
|
{
|
||||||
|
if (self = [super initWithData:nil]) {
|
||||||
|
_status = httpErrorCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (instancetype)initWithErrorCode:(int)httpErrorCode message:(NSString *)message
|
||||||
|
{
|
||||||
|
if (self = [super initWithData:[message dataUsingEncoding:NSUTF8StringEncoding]]) {
|
||||||
|
_status = httpErrorCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSInteger)status
|
||||||
|
{
|
||||||
|
return _status;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
@@ -10,3 +10,13 @@
|
|||||||
|
|
||||||
NSString* MBIMWebServerFormatRFC822(NSDate *date);
|
NSString* MBIMWebServerFormatRFC822(NSDate *date);
|
||||||
NSString* MBIMWebServerFormatISO8601(NSDate *date);
|
NSString* MBIMWebServerFormatISO8601(NSDate *date);
|
||||||
|
|
||||||
|
@interface NSDate (MBIMWebServerFormat)
|
||||||
|
- (NSString *)RFC822StringValue;
|
||||||
|
- (NSString *)ISO8601StringValue;
|
||||||
|
@end
|
||||||
|
|
||||||
|
@interface NSString (MBIMWebServerFormat)
|
||||||
|
- (NSDate *)RFC822Date;
|
||||||
|
- (NSDate *)ISO8601Date;
|
||||||
|
@end
|
||||||
|
|||||||
@@ -47,3 +47,31 @@ NSString* MBIMWebServerFormatISO8601(NSDate *date)
|
|||||||
|
|
||||||
return string;
|
return string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@implementation NSDate (MBIMWebServerFormat)
|
||||||
|
|
||||||
|
- (NSString *)RFC822StringValue
|
||||||
|
{
|
||||||
|
return MBIMWebServerFormatRFC822(self);
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSString *)ISO8601StringValue
|
||||||
|
{
|
||||||
|
return MBIMWebServerFormatISO8601(self);
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation NSString (MBIMWebServerFormat)
|
||||||
|
|
||||||
|
- (NSDate *)RFC822Date
|
||||||
|
{
|
||||||
|
return [_dateFormatterRFC822 dateFromString:self];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSDate *)ISO8601Date
|
||||||
|
{
|
||||||
|
return [_dateFormatterISO8601 dateFromString:self];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|||||||
16
kordophone/kordophoned-RestrictedEntitlements.plist
Normal file
16
kordophone/kordophoned-RestrictedEntitlements.plist
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.imagent</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.private.imagent</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.private.imcore.imagent</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.imagent.av</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.imagent.chat</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Reference in New Issue
Block a user