Merge: GitHub api
[nit.git] / contrib / rss_downloader / src / sample_config.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import rss_downloader
16
17 # Current user's home directory
18 fun home: String do return "HOME".environ
19
20 redef fun tool_config do return new Config(
21 # Source folders
22 ["{home}/Downloads/".to_path],
23
24 # Custom patterns
25 ["S01E01",
26 "1x01",
27 "pilot"], # We use Strings here, but we could also use a `Regex`
28
29 # Destination folder
30 "{home}/Downloads/".to_path,
31
32 # RSS feeds
33 ["http://example.org/feed.rss"],
34
35 # Log file
36 "{home}/rss_downloader.log".to_path,
37
38 # Uniqueness patterns
39 ["S[0-9]+E[0-9]+".to_re, # S01E01
40 "[0-9]+x[0-9]+".to_re, # 1x01
41 "[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]".to_re], # 1970.01.01
42
43 # Uniqueness exceptions
44 ["repack"])