Mercurial > hg > Feedworm
annotate AddFeed.py @ 121:510a5d00e98a backend
re-enabled AddFeed - does not work yet
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 21 Aug 2011 04:17:13 +0200 |
parents | dcee24702dd7 |
children | 862760b161b4 |
rev | line source |
---|---|
27 | 1 |
2 from PyQt4 import QtGui | |
3 from Ui_AddFeed import Ui_AddFeed | |
58
dcee24702dd7
Adding a feed now logs the exception if one occurred during retrieval. More normalization of feed entries before creating new FeedEntry objects.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
50
diff
changeset
|
4 import logging |
27 | 5 |
6 class AddFeed(QtGui.QDialog): | |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
7 def __init__(self, backend=None): |
27 | 8 QtGui.QWidget.__init__(self, None) |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
9 self.backend = backend |
50
4b0d686493fb
better error handling while adding feeds: data is only saved if a feed could be created and entries could be retrieved. MainWindow displays feedback in the status bar if an exception occurred while adding a feed.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
49
diff
changeset
|
10 self.exception = None |
27 | 11 self.ui = Ui_AddFeed() |
12 self.ui.setupUi(self) | |
13 self.ui.url.setFocus() | |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
14 |
49
6eba4168fd54
move the logic to add a feed into AddFeed
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
27
diff
changeset
|
15 def accept(self): |
50
4b0d686493fb
better error handling while adding feeds: data is only saved if a feed could be created and entries could be retrieved. MainWindow displays feedback in the status bar if an exception occurred while adding a feed.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
49
diff
changeset
|
16 try: |
4b0d686493fb
better error handling while adding feeds: data is only saved if a feed could be created and entries could be retrieved. MainWindow displays feedback in the status bar if an exception occurred while adding a feed.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
49
diff
changeset
|
17 self.createFeed() |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
18 self.session.commit() # TODO this should be the responsibility of the FeedUpdater |
50
4b0d686493fb
better error handling while adding feeds: data is only saved if a feed could be created and entries could be retrieved. MainWindow displays feedback in the status bar if an exception occurred while adding a feed.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
49
diff
changeset
|
19 except AttributeError as ae: |
58
dcee24702dd7
Adding a feed now logs the exception if one occurred during retrieval. More normalization of feed entries before creating new FeedEntry objects.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
50
diff
changeset
|
20 logging.getLogger("AddFeed").info(ae) |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
21 |
50
4b0d686493fb
better error handling while adding feeds: data is only saved if a feed could be created and entries could be retrieved. MainWindow displays feedback in the status bar if an exception occurred while adding a feed.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
49
diff
changeset
|
22 self.exception = ae |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
23 self.session.rollback() # TODO this should be the responsibility of the FeedUpdater |
49
6eba4168fd54
move the logic to add a feed into AddFeed
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
27
diff
changeset
|
24 QtGui.QDialog.accept(self) |
6eba4168fd54
move the logic to add a feed into AddFeed
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
27
diff
changeset
|
25 |
6eba4168fd54
move the logic to add a feed into AddFeed
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
27
diff
changeset
|
26 def createFeed(self): |
6eba4168fd54
move the logic to add a feed into AddFeed
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
27
diff
changeset
|
27 url = self.getUrl() |
121
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
28 # TODO get status and display in status area of the main window |
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
29 self.backend.feedUpdater().createNewFeed(url) |
510a5d00e98a
re-enabled AddFeed - does not work yet
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
58
diff
changeset
|
30 |
27 | 31 def getUrl(self): |
32 text = self.ui.url.text() | |
33 # the content of a QLineEdit is a QString, convert it to a Python string | |
34 return str(text) |