@@ -149,14 +149,18 @@ def remove(args: list) -> None:
149
149
account = _get_flag_value (args , '--account' )
150
150
service = _get_flag_value (args , '--service' )
151
151
152
+ if not account or not service :
153
+ click .secho ('Either --account or --service is not set. We need both' , bold = True )
154
+ return
155
+
152
156
click .secho ('Removing entry from the iOS keychain...' , dim = True )
153
157
click .secho ('Account: {0}' .format (account ), dim = True )
154
158
click .secho ('Service: {0}' .format (service ), dim = True )
155
159
156
160
api = state_connection .get_api ()
157
161
api .ios_keychain_remove (account , service );
158
162
click .secho ('Successfully removed matching keychain items' , fg = 'green' )
159
-
163
+
160
164
161
165
def update (args : list ) -> None :
162
166
"""
@@ -168,17 +172,22 @@ def update(args: list) -> None:
168
172
169
173
account = _get_flag_value (args , '--account' )
170
174
service = _get_flag_value (args , '--service' )
171
- newData = _get_flag_value (args , '--newData' )
175
+ newdata = _get_flag_value (args , '--newdata' )
176
+
177
+ if not account or not service or not newdata :
178
+ click .secho ('All flags need to be set, incl. --account, --service and --newdata' )
179
+ return
172
180
173
181
click .secho ('Updating entries from the iOS keychain...' , dim = True )
174
182
click .secho ('Account: {0}' .format (account ), dim = True )
175
183
click .secho ('Service: {0}' .format (service ), dim = True )
176
- click .secho ('New Data: {0}' .format (newData ), dim = True )
184
+ click .secho ('New Data: {0}' .format (newdata ), dim = True )
177
185
178
186
api = state_connection .get_api ()
179
- api .ios_keychain_update (account , service , newData );
187
+ api .ios_keychain_update (account , service , newdata )
180
188
click .secho ('Successfully updated matching keychain item' , fg = 'green' )
181
-
189
+
190
+
182
191
def add (args : list ) -> None :
183
192
"""
184
193
Adds a new kSecClassGenericPassword keychain entry to the keychain
@@ -189,7 +198,7 @@ def add(args: list) -> None:
189
198
190
199
if not _data_flag_has_identifier (args ):
191
200
click .secho ('When specifying the --data flag, either --account or '
192
- '--server should also be added' , fg = 'red' )
201
+ '--service should also be added' , fg = 'red' )
193
202
return
194
203
195
204
account = _get_flag_value (args , '--account' )
0 commit comments