summaryrefslogtreecommitdiff
path: root/protocols/NewsAggregator/Src/stdafx.h
blob: 388f83ade2715255c9799e8c1ba37a914a992a95 (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
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
/* 
Copyright (C) 2012 Mataes

This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

This is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt.  If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.  
*/

#pragma once

// Windows Header Files:
#include <windows.h>
#include <commctrl.h>
#include <time.h>
#include <malloc.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
#include <mshtml.h>

// Miranda header files
#include <newpluginapi.h>
#include <m_clist.h>
#include <m_contacts.h>
#include <m_langpack.h>
#include <m_options.h>
#include <m_protosvc.h>
#include <m_protoint.h>
#include <m_database.h>
#include <m_netlib.h>
#include <m_icolib.h>
#include <m_message.h>
#include <m_xml.h>
#include <m_avatars.h>
#include <m_hotkeys.h>
#include <m_gui.h>

#include <m_folders.h>
#include <m_toptoolbar.h>

#include "Options.h"
#include "version.h"
#include "resource.h"

#define MODULENAME	"NewsAggregator"
#define TAGSDEFAULT L"#<title>#\r\n#<link>#\r\n#<description>#"
#define DEFAULT_AVATARS_FOLDER "NewsAggregator"
#define DEFAULT_UPDATE_TIME 60

extern HNETLIBUSER hNetlibUser;
extern HANDLE hTBButton;
extern UINT_PTR timerId;

// check if Feeds is currently updating
extern bool ThreadRunning;
extern bool UpdateListFlag;
extern wchar_t tszRoot[MAX_PATH];

struct CMPlugin : public PLUGIN<CMPlugin>
{
	CMPlugin();

	int Load() override;
	int Unload() override;
};

//============  STRUCT USED TO MAKE AN UPDATE LIST  ============

struct NEWSCONTACTLIST {
	MCONTACT hContact;
	struct NEWSCONTACTLIST *next;
};

typedef struct NEWSCONTACTLIST UPDATELIST;

extern UPDATELIST *UpdateListHead;
extern UPDATELIST *UpdateListTail;

void UpdateListAdd(MCONTACT hContact);
void UpdateThreadProc(void*);
void DestroyUpdateList(void);

extern    HANDLE hUpdateMutex;
		    
int       NewsAggrInit(WPARAM wParam,LPARAM lParam);
int       OptInit(WPARAM wParam, LPARAM lParam);
int       NewsAggrPreShutdown(WPARAM wParam,LPARAM lParam);
void      NetlibInit();
void      NetlibUnInit();
void      InitMenu();
void      InitIcons();
		    
INT_PTR   NewsAggrGetName(WPARAM wParam, LPARAM lParam);
INT_PTR   NewsAggrGetCaps(WPARAM wp, LPARAM lp);
INT_PTR   NewsAggrSetStatus(WPARAM wp, LPARAM /*lp*/);
INT_PTR   NewsAggrGetStatus(WPARAM/* wp*/, LPARAM/* lp*/);
INT_PTR   NewsAggrLoadIcon(WPARAM wParam, LPARAM lParam);
INT_PTR   NewsAggrGetInfo(WPARAM wParam, LPARAM lParam);
INT_PTR   NewsAggrGetAvatarInfo(WPARAM wParam, LPARAM lParam);
INT_PTR   NewsAggrRecvMessage(WPARAM wParam, LPARAM lParam);
		    
INT_PTR   CheckAllFeeds(WPARAM wParam, LPARAM lParam);
INT_PTR   AddFeed(WPARAM wParam, LPARAM lParam);
INT_PTR   ChangeFeed(WPARAM wParam, LPARAM lParam);
INT_PTR   ImportFeeds(WPARAM wParam, LPARAM lParam);
INT_PTR   ExportFeeds(WPARAM wParam, LPARAM lParam);
INT_PTR   CheckFeed(WPARAM wParam, LPARAM lParam);
INT_PTR   EnableDisable(WPARAM wParam, LPARAM lParam);
int       OnToolbarLoaded(WPARAM wParam, LPARAM lParam);
CDlgBase* FindFeedEditor(const wchar_t *pwszNick, const wchar_t *pwszUrl);

bool      IsMyContact(MCONTACT hContact);
void      GetNewsData(wchar_t *szUrl, char **szData, MCONTACT hContact, CFeedEditor *pEditDlg);
time_t    DateToUnixTime(const char *stamp, bool FeedType);
void      CheckCurrentFeed(MCONTACT hContact);
void      CheckCurrentFeedAvatar(MCONTACT hContact);
LPCTSTR   CheckFeed(wchar_t* tszURL, CFeedEditor *pEditDlg);
void      UpdateMenu(bool State);
LPCTSTR   ClearText(CMStringW &value, const wchar_t *message);
bool      DownloadFile(LPCTSTR tszURL, LPCTSTR tszLocal);
void      CreateAuthString(char *auth, MCONTACT hContact, CFeedEditor *pDlg);
MCONTACT  GetContactByNick(const wchar_t *nick);
MCONTACT  GetContactByURL(const wchar_t *url);

void CALLBACK timerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime);
void CALLBACK timerProc2(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime);


// ===============  NewsAggregator SERVICES  ================
// Check all Feeds info
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_CHECKALLFEEDS	"NewsAggregator/CheckAllFeeds"

// Add new Feed channel
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_ADDFEED	"NewsAggregator/AddNewsFeed"

// Change Feed channel
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_CHANGEFEED	"NewsAggregator/ChangeNewsFeed"

// Import Feed channels from file
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_IMPORTFEEDS	"NewsAggregator/ImportFeeds"

// Export Feed channels to file
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_EXPORTFEEDS	"NewsAggregator/ExportFeeds"

// Check Feed info
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_CHECKFEED	"NewsAggregator/CheckFeed"

// Enable/disable getting feed info
// WPARAM = LPARAM = NULL
#define MS_NEWSAGGREGATOR_ENABLED	"NewsAggregator/Enabled"