-
Notifications
You must be signed in to change notification settings - Fork 5
/
autohamster.pl
190 lines (147 loc) · 7.12 KB
/
autohamster.pl
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#!perl
use strict; use warnings;
use utf8;
use AutoHamster::FoodEater;
use Data::Dump qw[dump];
my $HAMSTER_NUM = "038";
my @submitters_that_always_forget_to_put_AT_before_name =
qw(polusok);
my $form_at_info_topic = "Тема форума Automated-testing.info";
my $form_article_eng = "Статья на английском";
my $form_article_rus = "Статья на русском (украинском, белорусском)";
my $form_tool = "Инструмент (приложение, проект, продукт)";
my $form_video = "Видео";
my $form_forum = "Обсуждение (Stackoverflow, Форум, Google Groups)";
my $form_slides = "Слайды";
my $form_link_code = "Ссылка на код/github gist",
my $cat_top_at = ":new: Интересное на AT.Info",
my $cat_articles = ":paperclip: Статьи по автоматизации тестирования",
my $cat_code = ":sparkles: Чудотворный код";
my $cat_tools = ":wrench: Инструменты";
my $cat_video = ":video_camera: Видео по автоматизации тестирования";
my $cat_talks = ":loudspeaker: Обсуждения";
my $cat_slides = ":eyes: Слайды, презентации по автоматизации тестирования";
my $cat_other = ":horse: И другое";
my @categories_order =
(
$cat_top_at,
$cat_articles,
$cat_tools,
$cat_video,
$cat_code,
$cat_talks,
$cat_slides,
$cat_other,
);
my @feed_items = eat("food.txt");
my %content;
# ________________________________
# < After a short discussion with >
# < @DmitriyZverev and @polusok >
# < I've decided to verify the >
# < unique links. Thank to >
# < @DmitriyZverev for inspiring >
# < pull request. >
# --------------------------------
# /
# /
# c._
# ."````"-"C o'-.
# _/ \ _..'
# '-\ _/--.<<-'
# `\) \) jgs
#
my %all_urls;
my $row = 0;
foreach my $item (@feed_items)
{
$row++;
my $current_cat = $cat_other;
my $item_cat = $item->{'category'};
if ($item->{'submitter'})
{
if ( grep { $_ eq $item->{'submitter'} } @submitters_that_always_forget_to_put_AT_before_name )
{
$item->{'submitter'} = '@' . $item->{'submitter'};
}
}
my $url = $item->{'url'};
$all_urls{$url} = defined $all_urls{$url} ? $all_urls{$url} + 1 : 1;
if ($all_urls{$url} > 1)
{
warn "Found not unique link at row: $row:\n";
warn "$url\n\n";
}
my $link = {
title => $item->{'title'},
url => $item->{'url'},
description => $item->{'description'},
tags_line => $item->{'tags_line'} ? $item->{'tags_line'} : "",
submitter => $item->{'submitter'} ? "(Прислал(-а): $item->{'submitter'})" : "",
};
if ($item_cat eq $form_article_eng # #
|| $item_cat eq $form_article_rus) ##########
{ # #
$current_cat = $cat_articles; ##########
} # #
elsif ($item_cat eq $form_tool) ##########
{ # #
$current_cat = $cat_tools; ##########
} # #
elsif ($item_cat eq $form_video) ##########
{ # #
$current_cat = $cat_video; ##########
} # #
elsif ($item_cat eq $form_forum) ##########
{ # #
$current_cat = $cat_talks; ##########
} # #
elsif ($item_cat eq $form_at_info_topic) ##########
{ # #
$current_cat = $cat_top_at; ##########
} # #
elsif ($item_cat eq $form_slides) ##########
{ # #
$current_cat = $cat_slides; ##########
} # #
elsif ($item_cat eq $form_link_code) ##########
{ # #
$current_cat = $cat_code; ##########
} # #
$content{$current_cat} //= [];
push @{ $content{$current_cat} }, $link;
}
open my $out, '>:utf8', "readme.md";
print $out qq[Дайджест полезных ссылок для тестировщиков-автоматизаторов #$HAMSTER_NUM \n\n];
print $out qq[<img src="http://automated-testing.info/uploads/default/249/8dc1c6206f895527.png">\n\n];
foreach my $category (@categories_order)
{
next unless $content{$category};
my @category_items = @{ $content{$category} };
print $out "### $category\n";
foreach my $item ( @category_items )
{
print $out "* [$item->{'title'}]($item->{'url'}) $item->{'submitter'} <br>";
if ($item->{'tags_line'} !~ /^\s*$/) {
print $out "<small><font color=\"gray\">$item->{'tags_line'}</font></small><br>";
}
if ($item->{'description'} !~ /^\s*$/) {
print $out "$item->{'description'}<br>";
}
print $out "<br>\n";
}
print $out "\n\n";
}
print $out "---------------\n";
print $out <<EOF;
**Не хотите пропускать ничего интересного?**
Подпишитесь на ленту [RSS Новости]( http://automated-testing.info/category/novosti.rss)
И еще, **хотите добавить ссылку** в следующий дайджест?<br>
Тогда – **[сделайте это через специальную форму!](http://goo.gl/p8JpCx)** (Это – просто)
И это ещё не всё! У нас и **букмарклет** есть, для быстрого добавления ссылок!
Просто, зайдите на **[страницу букмарклета](http://dzhariy.github.io/at-info/special/hamster.html)** и перетащите ссылку в ваши закладки в браузере.
После чего, нажимая на кнопку "+Atinfo.Hamster" – Вы сможете быстро добавить текущую страницу в следующий выпуск Автохомяка.
---------
Смотрите также: [(Анонс) Automated Hamster: Ссылки для Автоматизаторов](http://automated-testing.info/t/anons-automated-hamster-ssylki-dlya-avtomatizatorov/3399)
EOF
close $out