forked from importers/git-importer
Fix confusion about User constructor
This commit is contained in:
parent
86490b51dd
commit
e1b32999f0
@ -75,7 +75,7 @@ class GitExporter:
|
||||
|
||||
for flat in left_to_commit:
|
||||
if flat.commit.userid not in users:
|
||||
users[flat.commit.userid] = User(db, flat.commit.userid)
|
||||
users[flat.commit.userid] = User.find(db, flat.commit.userid)
|
||||
flat.user = users[flat.commit.userid]
|
||||
logging.debug(f"USER {flat.user}")
|
||||
self.gc_cnt -= 1
|
||||
|
@ -1,3 +1,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from lib.db import DB
|
||||
|
||||
FAKE_ACCOUNTS = (
|
||||
"unknown",
|
||||
"buildservice-autocommit",
|
||||
@ -15,8 +19,10 @@ FAKE_ACCOUNTS = (
|
||||
|
||||
|
||||
class User:
|
||||
def __init__(self, db, userid) -> None:
|
||||
@staticmethod
|
||||
def find(db: DB, userid: str) -> User:
|
||||
row = User.lookup(db, userid)
|
||||
self = User()
|
||||
self.userid = userid
|
||||
if row:
|
||||
(_, _, self.email, self.realname) = row
|
||||
@ -27,6 +33,7 @@ class User:
|
||||
self.email = "null@suse.de"
|
||||
if not self.realname:
|
||||
self.realname = f"OBS User {userid}"
|
||||
return self
|
||||
|
||||
def parse(self, xml, userid):
|
||||
self.userid = userid
|
||||
|
Loading…
Reference in New Issue
Block a user