Esempio n. 1
0
def get_articles():
    session = Session()
    articles = session.query(Articles).all()
    for article in articles:
        analysed = session.query(Analysis).filter_by(id=article.id).first()
        if analysed:
            continue
        logger.info('Analysing %s', article.id)
        text = article.text.rstrip('None')
        analyzed_dict = get_data(text)
        analyzed_dict['id'] = article.id
        analyzed_dict.pop('doc_size')
        a = Analysis(**analyzed_dict)
        session.add(a)
    session.commit()
Esempio n. 2
0
def update_post(title, description, body, post_id):
    session = Session()
    try:
        session.query(Post).filter(Post.id == post_id).update({
            'title': title,
            'description': description,
            'body': body
        })

        session.commit()
        return successful('Post {} updated'.format(post_id))
    except:
        session.rollback()
        return internal_server_error
    finally:
        session.close()
Esempio n. 3
0
def get_posts(limit, offset):
    session = Session()
    try:
        result = []
        for post in session.query(
                Post.id, Post.author_id, Post.title, Post.description,
                Post.created_at).limit(limit).offset(offset).all():
            image_path = image_format(post.id)

            if os.path.isfile(image_path):
                image_path = image_host + '/' + image_path
            else:
                image_path = stub_image

            result.append({
                'id': post.id,
                'author_id': post.author_id,
                'title': post.title,
                'description': post.description,
                'created_at': post.created_at,
                'image': image_path
            })

        return successful(result)
    except:
        return internal_server_error
    finally:
        session.close()
Esempio n. 4
0
def get_post(post_id):
    session = Session()
    try:
        post = session.query(Post).get(post_id)
        if post == None:
            return not_found
        else:
            image_path = image_format(post.id)

            if os.path.isfile(image_path):
                image_path = image_host + '/' + image_path
            else:
                image_path = stub_image

            return successful({
                'author_id': post.author_id,
                'title': post.title,
                'description': post.description,
                'body': post.body,
                'created_at': post.created_at,
                'image': image_path
            })
    except:
        return internal_server_error
    finally:
        session.close()
Esempio n. 5
0
def get_articles(gvket, date):
    session = Session()
    q = session.query(CompanyArticle) \
        .join(Articles, Articles.id == CompanyArticle.article_id) \
        .filter(CompanyArticle.gvkey == gvkey) \
        .filter(Articles.PD == date)
    return q.all()
Esempio n. 6
0
def process_file(fname):
    file_location = os.path.join(settings.RTF_DIR, fname)
    logger.info('Opening file %s...', fname)
    session = Session()
    if fname.startswith('~$'):
        return None
    try:
        with open(file_location, 'rb') as rtf_file:
            txt = rtf_file.read()
    except Exception:
        logger.warning('Cannot read from file %s', fname)
    clean_text = striprtf(txt)
    dicts = parser(clean_text, fname)
    if len(dicts) == 0:
        logger.error('Cannot extract articles from file %s', fname)
        return None
    logger.info('Found %d articles in file %s', len(dicts), fname)
    for dict_item in dicts:
        article = session.query(Articles).filter_by(id=dict_item['id']).first()
        if article:
            logger.info('Article %s already exists in database', article.id)
        else:
            article = Articles(**dict_item)
            session.add(article)
            session.commit()
    session.close()
    logger.info('Finished parsing file %s...', fname)
Esempio n. 7
0
def delete_post(post_id):
    session = Session()
    try:
        session.query(Post).filter(Post.id == post_id).delete()
        session.commit()

        image_path = image_format(post_id)

        if os.path.isfile(image_path):
            os.remove(image_path)

        return successful('Post {} deleted'.format(post_id))
    except:
        session.rollback()
        return internal_server_error
    finally:
        session.close()
Esempio n. 8
0
def get_company_by_code(code):
    try:
        session = Session()
        q = session.query(Company).filter(Company.factiva_code == code).first()
        if q is None:
            logger.warning('Could not match company with code %s', code)
            return None
        return q
    except Exception:
        logger.exception('message')
        raise
Esempio n. 9
0
def try_get_user_id(user_token):
  session = Session()
  try:
    user = session.query(User).filter(User.token==user_token).scalar()
    if user == None:
      return False, 0
    else:
      return True, user.id
  except:
      return False, 0
  finally:
      session.close()
Esempio n. 10
0
def get_unmatched_articles():
    # session = Session()
    try:
        Session = sessionmaker(bind=db_engine, autoflush=False)
        session = Session()
        q = session.query(Articles) \
            .outerjoin(CompanyArticle, CompanyArticle.article_id == Articles.id)\
            .filter(CompanyArticle.article_id.is_(None))
        return (r for r in q.execution_options(stream_results=True))
    except Exception:
        logger.exception('message')
        raise
Esempio n. 11
0
def get_user(email):
    session = Session()
    try:
        user = session.query(User).filter(User.email == email).scalar()
        if user == None:
            return not_found
        else:
            return successful({
                'id': user.id,
                'email': user.email,
                'password_encrypted': user.password_encrypted,
                'token': user.token,
            })
    except:
        return internal_server_error
    finally:
        session.close()
Esempio n. 12
0
def get_analysis(article_id):
    session = Session()
    q = session.query(Analysis).filter(Analysis.id == article_id)
    if q is not None:
        return q.first()
    return None