Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ZXSMTPResultParser.m 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright 2012 ZXing authors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import "ZXEmailAddressParsedResult.h"
  17. #import "ZXResult.h"
  18. #import "ZXSMTPResultParser.h"
  19. @implementation ZXSMTPResultParser
  20. - (ZXParsedResult *)parse:(ZXResult *)result {
  21. NSString *rawText = [ZXResultParser massagedText:result];
  22. if (!([rawText hasPrefix:@"smtp:"] || [rawText hasPrefix:@"SMTP:"])) {
  23. return nil;
  24. }
  25. NSString *emailAddress = [rawText substringFromIndex:5];
  26. NSString *subject = nil;
  27. NSString *body = nil;
  28. NSUInteger colon = [emailAddress rangeOfString:@":"].location;
  29. if (colon != NSNotFound) {
  30. subject = [emailAddress substringFromIndex:colon + 1];
  31. emailAddress = [emailAddress substringToIndex:colon];
  32. colon = [subject rangeOfString:@":"].location;
  33. if (colon != NSNotFound) {
  34. body = [subject substringFromIndex:colon + 1];
  35. subject = [subject substringToIndex:colon];
  36. }
  37. }
  38. return [[ZXEmailAddressParsedResult alloc] initWithTos:@[emailAddress] ccs:nil bccs:nil subject:subject body:body];
  39. }
  40. @end