-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNews.cpp
144 lines (119 loc) · 5.09 KB
/
News.cpp
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
//
// Created by maxim on 06.05.2020.
//
#include "News.h"
News::News(cr_str title) {
if(title.empty()) throw std::invalid_argument("title is empty");
_title = title;
time_t t = time(nullptr);
_publication_date = localtime(&t);
}
News::News(const News &other) : News(other._title) {
this->_publication_date = other._publication_date;
}
std::string News::get_tittle() const {
return _title;
}
std::tm *News::get_publication_date() const {
return _publication_date;
}
bool News::is_equals(const News &other) const {
return (this->_title == other._title && this->_publication_date == other._publication_date);
}
Article::Article(cr_str title, cr_str ¶graph) : News(title) {
if(paragraph.empty()) throw std::invalid_argument("Paragraph is empty");
_paragraph = paragraph;
}
Article::Article(const Article &other) : Article(other._title, other._paragraph) {
this->_publication_date = other._publication_date;
}
std::string Article::get_paragraph() const {
return _paragraph;
}
bool Article::is_equals(const News &other) const {
auto el = dynamic_cast<const Article *>(&other);
return (el != nullptr && this->_title == el->_title &&
this->_publication_date == el->_publication_date
&& this->_paragraph == el->_paragraph);
}
MatchAnnouncement::MatchAnnouncement(cr_str title, tm *date, const std::pair<std::string,
std::string> &commands, cr_str season)
: News(title){
_event_date = date;
if(commands.first.empty() || commands.second.empty()) throw std::invalid_argument("Command is empty");
_commands = commands;
_season = season;
}
MatchAnnouncement::MatchAnnouncement(const MatchAnnouncement &other) :
MatchAnnouncement(other._title, other._event_date, other._commands, other._season){
this->_publication_date = other._publication_date;
}
std::tm* MatchAnnouncement::get_event_date() const {
return _event_date;
}
std::pair<std::string, std::string> MatchAnnouncement::get_commands() const {
return _commands;
}
std::string MatchAnnouncement::get_season_name() const {
return _season;
}
bool MatchAnnouncement::is_equals(const News &other) const {
auto el = dynamic_cast<const MatchAnnouncement *>(&other);
return (el != nullptr && this->_title == el->_title
&& this->_publication_date == el->_publication_date
&& this->_commands == el->_commands
&& this->_season == el->_season);
}
MatchResult::MatchResult(const std::string &title, const std::string ¶graph, MatchAnnouncement *match,
const std::pair<u_short, u_short> &score)
: News(title), Article(title, paragraph),
MatchAnnouncement(match->get_tittle(), match->get_event_date(),
match->get_commands(), match->get_season_name()){
_score = score;
}
MatchResult::MatchResult(const MatchResult &other) :
News(other._title), Article(other._title, other._paragraph),
MatchAnnouncement(other._title, other._event_date,
other._commands, other._season){
this->_score = other._score;
this->_publication_date = other._publication_date;
}
std::pair<u_short, u_short> MatchResult::get_score() const {
return _score;
}
bool MatchResult::is_equals(const News &other) const {
auto el = dynamic_cast<const MatchResult *>(&other);
return (el != nullptr && this->_title == el->_title
&& this->_publication_date == el->_publication_date
&& this->_score == el->_score
&& this->_paragraph == el->_paragraph
&& this->_commands == el->_commands
&& this->_season == el->_season);
}
std::ostream& operator <<(std::ostream &out, const News &news){
if(dynamic_cast<const MatchResult *>(&news) != nullptr) {
auto *other = dynamic_cast<const MatchResult *>(&news);
out << std::asctime(other->get_publication_date()) << other->get_tittle() << "\n"
<< other->get_commands().first << "\tvs \t" << other->get_commands().second << '\n'
<< std::setw(other->get_commands().first.size()) << other->get_score().first << "\t : \t"
<< other->get_score().second << '\n'
<< std::asctime(other->get_event_date())
<< other->get_paragraph() << std::endl;
}
else if(dynamic_cast<const MatchAnnouncement *>(&news) != nullptr){
auto *other = dynamic_cast<const MatchAnnouncement *>(&news);
out << std::asctime(other->get_publication_date()) << other->get_tittle() << "\n"
<< other->get_commands().first << "\tvs \t" << other->get_commands().second << '\n'
<< std::setw(other->get_commands().first.size()) << '-' << "\t : \t-\n"
<< std::asctime(other->get_event_date()) << std::endl;
}
else if(dynamic_cast<const Article *>(&news) != nullptr){
auto *other = dynamic_cast<const Article *>(&news);
out << std::asctime(other->get_publication_date()) << other->get_tittle() << "\n"
<< '\t' << other->get_paragraph() << std::endl;
}
else{
out << "News was deleted by Admin" << std::endl;
}
return out;
}