mail: add model and management command to store data

This commit is contained in:
Frédéric Péters 2015-07-03 11:28:48 +02:00
parent 428ea02d75
commit 9acfff2d31
4 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,35 @@
# welco - multichannel request processing
# Copyright (C) 2015 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from optparse import make_option
import os
from django.core.files import File
from django.core.management.base import BaseCommand, CommandError
from ...models import Mail
class Command(BaseCommand):
def handle(self, *args, **kwargs):
count = 0
for filepath in args:
if not os.path.exists(filepath):
continue
mail = Mail(content=File(open(filepath)))
mail.save()
count += 1
if count == 0:
raise CommandError('nothing got imported')

View File

@ -0,0 +1,28 @@
# welco - multichannel request processing
# Copyright (C) 2015 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django.db import models
from django.utils.translation import ugettext_lazy as _
class Mail(models.Model):
class Meta:
verbose_name = _('Mail')
content = models.FileField(_('Content'))
creation_timestamp = models.DateTimeField(auto_now_add=True)
last_update_timestamp = models.DateTimeField(auto_now=True)