Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-10-12 12:01:51 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
390f6edebb522d57fc941ec9295b6b2f0fddf1bb
390f6ede
1 parent
db4e4da7
revert sdk db changes
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
401 deletions
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
SwiftWarplyFramework/SwiftWarplyFramework/Warply/Warply.m
View file @
390f6ed
...
...
@@ -574,17 +574,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -830,17 +820,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
-
(
NSDictionary
*
)
logout
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
NSDictionary
*
successResponse
=
@{
@"result"
:
@"success"
,
@"status"
:
@1
};
NSLog
(
@"**************** WARPLY Logout *****************"
);
return
successResponse
;
...
...
@@ -923,7 +903,6 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
// TODO: ADD NEW SDK
-
(
void
)
refreshToken
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
{
FMResultSet
*
refreshTokenSet
=
[
_db
executeQuery
:
@"SELECT refresh_token FROM requestVariables WHERE id = 1;"
];
...
...
@@ -962,17 +941,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
success
(
successResponse
);
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1021,17 +990,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
success
(
successResponse
);
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1074,21 +1033,17 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
dict
=
[
error
userInfo
];
NSString
*
errorCode
=
[
dict
objectForKey
:
@"NSLocalizedDescription"
];
if
([
errorCode
isEqual
:
@"Request failed: unauthorized (401)"
])
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
// [self refreshToken:^(NSDictionary *response) {
// // [_db executeUpdate:@"UPDATE requestVariables SET access_token = ?, refresh_token = ? WHERE id = 1", [response objectForKey:@"access_token"], [response objectForKey:@"refresh_token"]];
// NSDictionary *successResponse = @{@"result": @"success", @"status":@1};
// success(successResponse);
// } failureBlock:^(NSError *error) {
if
(
failure
)
{
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
// }];
}
NSLog
(
@"Error at token %@"
,
error
);
}
...
...
@@ -1121,17 +1076,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1174,17 +1119,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1245,17 +1180,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1361,17 +1286,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1412,17 +1327,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1463,17 +1368,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1551,17 +1446,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1598,17 +1483,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1645,17 +1520,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1692,17 +1557,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1739,17 +1594,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1760,7 +1605,6 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
// TODO: ADD NEW SDK
-
(
void
)
verifyTicketWithSuccessBlock
:
(
NSString
*
)
guid
:
(
NSString
*
)
ticket
:
(
void
(
^
)(
NSDictionary
*
response
))
success
failureBlock
:
(
void
(
^
)(
NSError
*
error
))
failure
{
NSString
*
appUuid
=
[
NSString
alloc
];
...
...
@@ -1778,21 +1622,11 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
accessToken
=
[
tokens
objectForKey
:
@"access_token"
];
NSString
*
clientSecret
=
[
NSString
alloc
];
clientSecret
=
[
tokens
objectForKey
:
@"client_secret"
];
// [_db executeUpdate:@"DROP TABLE requestVariables"];
// [_db executeUpdate:@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"];
// WL_FMDBLogError
//
// [_db executeUpdate:@"INSERT INTO requestVariables (id, client_id, client_secret, access_token, refresh_token) VALUES (1, ?, ?, ?, ?)", clientId, clientSecret, accessToken, refreshToken];
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
clientId
,
clientSecret
,
refreshToken
,
accessToken
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
clientId
,
clientSecret
,
refreshToken
,
accessToken
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, access_token, refresh_token) VALUES (1, ?, ?, ?, ?)"
,
clientId
,
clientSecret
,
accessToken
,
refreshToken
];
NSDictionary
*
successResponse
=
@{
@"result"
:
@"success"
,
@"status"
:
@1
};
if
(
success
)
{
...
...
@@ -1825,22 +1659,11 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
accessToken
=
[
tokens
objectForKey
:
@"access_token"
];
NSString
*
clientSecret
=
[
NSString
alloc
];
clientSecret
=
[
tokens
objectForKey
:
@"client_secret"
];
// [_db executeUpdate:@"DROP TABLE requestVariables"];
// [_db executeUpdate:@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"];
// WL_FMDBLogError
//
// [_db executeUpdate:@"INSERT INTO requestVariables (id, client_id, client_secret, access_token, refresh_token) VALUES (1, ?, ?, ?, ?)", clientId, clientSecret, accessToken, refreshToken];
// TODO: ADD NEW SDK
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
clientId
,
clientSecret
,
refreshToken
,
accessToken
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
clientId
,
clientSecret
,
refreshToken
,
accessToken
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, access_token, refresh_token) VALUES (1, ?, ?, ?, ?)"
,
clientId
,
clientSecret
,
accessToken
,
refreshToken
];
NSDictionary
*
successResponse
=
@{
@"result"
:
@"success"
,
@"status"
:
@1
};
if
(
success
)
{
...
...
@@ -1886,17 +1709,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1933,17 +1746,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -1980,17 +1783,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2031,17 +1824,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2078,17 +1861,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2125,17 +1898,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2217,17 +1980,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2264,17 +2017,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2311,17 +2054,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2533,17 +2266,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2603,17 +2326,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2654,17 +2367,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2705,17 +2408,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2756,17 +2449,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2826,17 +2509,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -2873,17 +2546,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
}];
}
failureBlock
:
^
(
NSError
*
error
)
{
if
(
failure
)
{
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
executeUpdate
:
@"DROP TABLE requestVariables"
];
failure
(
error
);
}
NSLog
(
@"Error at token %@"
,
error
);
...
...
@@ -6133,18 +5796,6 @@ CGFloat DistanceBetweenTwoPoints(CGPoint point1,CGPoint point2)
[
_db
executeUpdate
:
@"CREATE TABLE pois (id INTEGER PRIMARY KEY NOT NULL UNIQUE, lat NUMERIC, lon NUMERIC, radius NUMERIC)"
];
}
// TODO: ADD NEW SDK
// [_db executeUpdate:@"DROP TABLE requestVariables"];
if
([
_db
tableExists
:
@"requestVariables"
]
==
NO
)
{
[
_db
executeUpdate
:
@"CREATE TABLE requestVariables (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, client_id INTEGER, client_secret VARCHAR(255), access_token VARCHAR(255), refresh_token VARCHAR(255))"
];
WL_FMDBLogError
[
_db
executeUpdate
:
@"INSERT INTO requestVariables (id, client_id, client_secret, refresh_token, access_token) VALUES (1, ?, ?, ?, ?)"
,
@0
,
@""
,
@""
,
@""
];
}
else
{
[
_db
executeUpdate
:
@"UPDATE requestVariables SET client_id = ? , client_secret = ?, refresh_token = ?, access_token = ? WHERE id = 1"
,
@0
,
@""
,
@""
,
@""
];
}
[
_db
makeFunctionNamed
:
@"DISTANCE"
maximumArguments
:
4
withBlock
:^
(
sqlite3_context
*
context
,
int
argc
,
sqlite3_value
**
argv
)
{
distanceFunc
(
context
,
argc
,
argv
);
}];
...
...
Please
register
or
login
to post a comment