Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 1 | 51Degrees Device Detection |
| 2 | -------------------------- |
| 3 | |
| 4 | You can also include 51Degrees for inbuilt device detection enabling attributes |
| 5 | such as screen size (physical & pixels), supported input methods, release date, |
| 6 | hardware vendor and model, browser information, and device price among many |
| 7 | others. Such information can be used to improve the user experience of a web |
| 8 | site by tailoring the page content, layout and business processes to the |
| 9 | precise characteristics of the device. Such customisations improve profit by |
| 10 | making it easier for customers to get to the information or services they |
| 11 | need. Attributes of the device making a web request can be added to HTTP |
| 12 | headers as configurable parameters. |
| 13 | |
| 14 | In order to enable 51Degrees download the 51Degrees source code from the |
Dragan Dosen | 16586e6 | 2017-09-27 12:55:07 +0200 | [diff] [blame] | 15 | official git repository : |
| 16 | |
| 17 | - either use the proven stable but frozen 3.2.10 version which |
| 18 | supports the Trie algorithm : |
| 19 | |
| 20 | git clone https://git.51Degrees.com/Device-Detection.git -b v3.2.10 |
| 21 | |
| 22 | - or use the new 3.2.12.12 version which continues to receive database |
| 23 | updates and supports a new Hash Trie algorithm, but which is not |
| 24 | compatible with older Trie databases : |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 25 | |
Ben51Degrees | 636e6af | 2017-10-05 19:54:18 +0100 | [diff] [blame] | 26 | git clone https://github.com/51Degrees/Device-Detection.git -b v3.2.12 |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 27 | |
| 28 | then run 'make' with USE_51DEGREES and 51DEGREES_SRC set. Both 51DEGREES_INC |
| 29 | and 51DEGREES_LIB may additionally be used to force specific different paths |
| 30 | for .o and .h, but will default to 51DEGREES_SRC. Make sure to replace |
| 31 | '51D_REPO_PATH' with the path to the 51Degrees repository. |
| 32 | |
Ben51Degrees | 636e6af | 2017-10-05 19:54:18 +0100 | [diff] [blame] | 33 | 51Degrees provide 3 different detection algorithms: |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 34 | |
| 35 | 1. Pattern - balances main memory usage and CPU. |
| 36 | 2. Trie - a very high performance detection solution which uses more main |
| 37 | memory than Pattern. |
Ben51Degrees | 636e6af | 2017-10-05 19:54:18 +0100 | [diff] [blame] | 38 | 3. Hash Trie - replaces Trie, 3x faster, 80% lower memory consumption and |
| 39 | tuning options. |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 40 | |
| 41 | To make with 51Degrees Pattern algorithm use the following command line. |
| 42 | |
| 43 | $ make TARGET=<target> USE_51DEGREES=1 51DEGREES_SRC='51D_REPO_PATH'/src/pattern |
| 44 | |
| 45 | To use the 51Degrees Trie algorithm use the following command line. |
| 46 | |
| 47 | $ make TARGET=<target> USE_51DEGREES=1 51DEGREES_SRC='51D_REPO_PATH'/src/trie |
| 48 | |
| 49 | A data file containing information about devices, browsers, operating systems |
| 50 | and their associated signatures is then needed. 51Degrees provide a free |
| 51 | database with Github repo for this purpose. These free data files are located |
| 52 | in '51D_REPO_PATH'/data with the extensions .dat for Pattern data and .trie for |
Ben51Degrees | 636e6af | 2017-10-05 19:54:18 +0100 | [diff] [blame] | 53 | Trie data. Free Hash Trie data file can be obtained by signing up for a licence |
| 54 | key at https://51degrees.com/products/store/on-premise-device-detection. |
| 55 | |
Ben51Degrees | 31c3d51 | 2019-06-12 15:42:53 +0100 | [diff] [blame] | 56 | For HAProxy developers who need to verify that their changes didn't affect the |
| 57 | 51Degrees implementation, a dummy library if provided in the contrib/51d |
| 58 | directory. This does not function, but implements the API such that the |
| 59 | 51Degrees module can be used (but not return any meaningful information). To |
| 60 | test either Pattern or Hash Trie, build with: |
Willy Tarreau | 5e4c500 | 2019-06-13 15:56:10 +0200 | [diff] [blame] | 61 | |
| 62 | $ make TARGET=<target> USE_51DEGREES=1 51DEGREES_SRC=contrib/51d/src/pattern |
Ben51Degrees | 31c3d51 | 2019-06-12 15:42:53 +0100 | [diff] [blame] | 63 | or |
Willy Tarreau | 5e4c500 | 2019-06-13 15:56:10 +0200 | [diff] [blame] | 64 | $ make TARGET=<target> USE_51DEGREES=1 51DEGREES_SRC=contrib/51d/src/trie |
| 65 | |
Ben51Degrees | 31c3d51 | 2019-06-12 15:42:53 +0100 | [diff] [blame] | 66 | respectively. |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 67 | |
| 68 | The configuration file needs to set the following parameters: |
| 69 | |
| 70 | global |
| 71 | 51degrees-data-file path to the Pattern or Trie data file |
| 72 | 51degrees-property-name-list list of 51Degrees properties to detect |
| 73 | 51degrees-property-separator separator to use between values |
| 74 | 51degrees-cache-size LRU-based cache size (disabled by default) |
| 75 | |
| 76 | The following is an example of the settings for Pattern. |
| 77 | |
| 78 | global |
| 79 | 51degrees-data-file '51D_REPO_PATH'/data/51Degrees-LiteV3.2.dat |
| 80 | 51degrees-property-name-list IsTablet DeviceType IsMobile |
| 81 | 51degrees-property-separator , |
| 82 | 51degrees-cache-size 10000 |
| 83 | |
| 84 | HAProxy needs a way to pass device information to the backend servers. This is |
| 85 | done by using the 51d converter or fetch method, which intercepts the HTTP |
| 86 | headers and creates some new headers. This is controlled in the frontend |
| 87 | http-in section. |
| 88 | |
| 89 | The following is an example which adds two new HTTP headers prefixed X-51D- |
| 90 | |
| 91 | frontend http-in |
| 92 | bind *:8081 |
| 93 | default_backend servers |
| 94 | http-request set-header X-51D-DeviceTypeMobileTablet %[51d.all(DeviceType,IsMobile,IsTablet)] |
| 95 | http-request set-header X-51D-Tablet %[51d.all(IsTablet)] |
| 96 | |
| 97 | Here, two headers are created with 51Degrees data, X-51D-DeviceTypeMobileTablet |
| 98 | and X-51D-Tablet. Any number of headers can be created this way and can be |
| 99 | named anything. 51d.all( ) invokes the 51degrees fetch. It can be passed up to |
| 100 | five property names of values to return. Values will be returned in the same |
Joseph Herlant | 71b4b15 | 2018-11-13 16:55:16 -0800 | [diff] [blame] | 101 | order, separated by the 51-degrees-property-separator configured earlier. If a |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 102 | property name can't be found the value 'NoData' is returned instead. |
| 103 | |
| 104 | In addition to the device properties three additional properties related to the |
| 105 | validity of the result can be returned when used with the Pattern method. The |
| 106 | following example shows how Method, Difference and Rank could be included as one |
| 107 | new HTTP header X-51D-Stats. |
| 108 | |
| 109 | frontend http-in |
| 110 | ... |
| 111 | http-request set-header X-51D-Stats %[51d.all(Method,Difference,Rank)] |
| 112 | |
| 113 | These values indicate how confident 51Degrees is in the result that that was |
| 114 | returned. More information is available on the 51Degrees web site at: |
| 115 | |
| 116 | https://51degrees.com/support/documentation/pattern |
| 117 | |
| 118 | The above 51d.all fetch method uses all available HTTP headers for detection. A |
| 119 | modest performance improvement can be obtained by only passing one HTTP header |
| 120 | to the detection method with the 51d.single converter. The following example |
| 121 | uses the User-Agent HTTP header only for detection. |
| 122 | |
| 123 | frontend http-in |
| 124 | ... |
| 125 | http-request set-header X-51D-DeviceTypeMobileTablet %[req.fhdr(User-Agent),51d.single(DeviceType,IsMobile,IsTablet)] |
| 126 | |
| 127 | Any HTTP header could be used inplace of User-Agent by changing the parameter |
| 128 | provided to req.fhdr. |
| 129 | |
| 130 | When compiled to use the Trie detection method the trie format data file needs |
| 131 | to be provided. Changing the extension of the data file from dat to trie will |
| 132 | use the correct data. |
| 133 | |
| 134 | global |
| 135 | 51degrees-data-file '51D_REPO_PATH'/data/51Degrees-LiteV3.2.trie |
| 136 | |
| 137 | When used with Trie the Method, Difference and Rank properties are not |
| 138 | available. |
| 139 | |
| 140 | The free Lite data file contains information about screen size in pixels and |
| 141 | whether the device is a mobile. A full list of available properties is located |
| 142 | on the 51Degrees web site at: |
| 143 | |
| 144 | https://51degrees.com/resources/property-dictionary |
| 145 | |
| 146 | Some properties are only available in the paid for Premium and Enterprise |
| 147 | versions of 51Degrees. These data sets not only contain more properties but |
| 148 | are updated weekly and daily and contain signatures for 100,000s of different |
| 149 | device combinations. For more information see the data options comparison web |
| 150 | page: |
| 151 | |
| 152 | https://51degrees.com/compare-data-options |