summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/lookup/auskunft/AuskunftApi.java
blob: 5b6b2512c584fa66e502f0255261d2ca1f20c4b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
 * Copyright (c) 2015, The CyanogenMod Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.dialer.lookup.auskunft;

import android.content.Context;
import android.net.Uri;
import android.util.Log;

import com.android.dialer.lookup.LookupUtils;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public final class AuskunftApi {
  private static final String TAG = AuskunftApi.class.getSimpleName();

  private static final String PEOPLE_LOOKUP_URL = "https://auskunft.at/suche";

  private static final String SEARCH_RESULTS_REGEX =
      "(?i)<section[\\s]+class=[\"']?search-entry(.*?)?</section";
  private static final String NAME_REGEX =
      "(?i)<h1[\\s]+itemprop=[\"']?name[\"']?>(.*?)</h1";
  private static final String NUMBER_REGEX =
      "(?i)phone[\"'][\\s]+?href=[\"']{1}tel:(.*?)[\"']{1}";
  private static final String ADDRESS_REGEX =
      "(?i)<span[\\s]+itemprop=[\"']?streetAddress[\"']?>(.*?)</a";

  private static final String BUSINESS_IDENTIFIER = "(Firma)";

  private AuskunftApi() {
  }

  public static List<ContactInfo> query(String filter) throws IOException {
    // build URI
    Uri uri = Uri.parse(PEOPLE_LOOKUP_URL)
        .buildUpon()
        .appendQueryParameter("query", filter)
        .build();

    // get all search entry sections
    List<String> entries = LookupUtils.allRegexResults(
        LookupUtils.httpGet(uri.toString(), null), SEARCH_RESULTS_REGEX, true);

    // abort lookup if nothing found
    if (entries == null || entries.isEmpty()) {
      Log.w(TAG, "nothing found");
      return null;
    }

    // build response by iterating through the search entries and parsing their HTML data
    List<ContactInfo> infos = new ArrayList<ContactInfo>();
    for (String entry : entries) {
      // parse wanted data and replace null values
      String name = replaceNullResult(LookupUtils.firstRegexResult(entry, NAME_REGEX, true));
      String address = replaceNullResult(LookupUtils.firstRegexResult(entry, ADDRESS_REGEX, true));
      String number = replaceNullResult(LookupUtils.firstRegexResult(entry, NUMBER_REGEX, true));
      // ignore entry if name or number is empty (should not occur)
      // missing addresses won't be a problem (but do occur)
      if (name.isEmpty() || number.isEmpty()) {
        continue;
      }

      ContactInfo info = new ContactInfo();
      info.name = cleanupResult(name);
      info.number = cleanupResult(number);
      info.address = cleanupResult(address);
      info.url = uri.toString();

      infos.add(info);
    }
    return infos;
  }

  private static String cleanupResult(String result) {
    // get displayable text
    result = LookupUtils.fromHtml(result);
    // replace newlines with spaces
    result = result.replaceAll("\\r|\\n", " ");
    // replace multiple spaces with one
    result = result.replaceAll("\\s+", " ");
    // remove business identifier that is originally not part of the name
    result = result.replace(BUSINESS_IDENTIFIER, "");
    // final trimming
    result = result.trim();

    return result;
  }

  private static String replaceNullResult(String result) {
    return (result == null) ? "" : result;
  }

  static class ContactInfo {
    String name;
    String number;
    String url;
    String address;
  };
}