@@ -1739,33 +1739,38 @@ public Song.Entities.Accounts UserUnbind(string field)
1739
1739
[ HttpPost ]
1740
1740
public Song . Entities . Accounts UserCreate ( Song . Entities . Accounts acc , string openid , string field )
1741
1741
{
1742
- //账号为空,则自动创建;如果不为空,则判断是否重复
1743
- bool accexist = false ;
1744
- if ( string . IsNullOrWhiteSpace ( acc . Ac_AccName ) )
1745
- acc . Ac_AccName = WeiSha . Core . Request . SnowID ( ) . ToString ( ) ;
1742
+ if ( string . IsNullOrWhiteSpace ( acc . Ac_AccName ) ) acc . Ac_AccName = WeiSha . Core . Request . SnowID ( ) . ToString ( ) ;
1743
+ //判断账号是否已经存在
1744
+ Accounts accorig = Business . Do < IAccounts > ( ) . IsAccountsExist ( acc . Ac_AccName ) ;
1745
+ //如果不存在,则新增
1746
+ if ( accorig == null )
1747
+ {
1748
+ //默认账号为审核通过和启用
1749
+ acc . Ac_IsPass = acc . Ac_IsUse = true ;
1750
+ acc . Ac_Pw = WeiSha . Core . Request . UniqueID ( ) ;
1751
+ //头像图片
1752
+ string headurl = acc . Ac_Photo ;
1753
+ if ( ! string . IsNullOrWhiteSpace ( headurl ) )
1754
+ {
1755
+ string photoPath = _phyPath + openid + ".jpg" ;
1756
+ WeiSha . Core . Request . LoadFile ( headurl , photoPath ) ;
1757
+ acc . Ac_Photo = openid + ".jpg" ;
1758
+ }
1759
+ Business . Do < IAccounts > ( ) . AccountsAdd ( acc ) ;
1760
+ Business . Do < IAccounts > ( ) . BindThirdparty ( acc , openid , acc . Ac_Name , headurl , field ) ;
1761
+ accorig = Business . Do < IAccounts > ( ) . AccountsSingle ( acc . Ac_ID ) ;
1762
+ }
1746
1763
else
1747
- accexist = Business . Do < IAccounts > ( ) . IsAccountExist ( acc . Ac_AccName , - 1 ) ;
1748
- if ( accexist ) acc . Ac_AccName += "_" + WeiSha . Core . Request . SnowID ( ) . ToString ( ) ;
1749
-
1750
- acc . Ac_IsPass = acc . Ac_IsUse = true ;
1751
- acc . Ac_Pw = WeiSha . Core . Request . UniqueID ( ) ;
1752
- //头像图片
1753
- string headurl = acc . Ac_Photo ;
1754
- if ( ! string . IsNullOrWhiteSpace ( headurl ) )
1755
1764
{
1756
- string photoPath = _phyPath + openid + ".jpg" ;
1757
- WeiSha . Core . Request . LoadFile ( headurl , photoPath ) ;
1758
- acc . Ac_Photo = openid + ".jpg" ;
1765
+ //生成绑定记录
1766
+ Business . Do < IAccounts > ( ) . BindThirdparty ( accorig , openid , acc . Ac_Name , acc . Ac_Photo , field ) ;
1759
1767
}
1760
- int acid = Business . Do < IAccounts > ( ) . AccountsAdd ( acc ) ;
1761
- //生成绑定记录
1762
- acc = Business . Do < IAccounts > ( ) . BindThirdparty ( acc , openid , acc . Ac_Name , headurl , field ) ;
1763
- Song . Entities . Accounts nacc = Business . Do < IAccounts > ( ) . AccountsSingle ( acid ) ;
1764
- _tran ( nacc ) ;
1765
- nacc = Business . Do < IAccounts > ( ) . AccountsLogin ( nacc ) ;
1766
- nacc . Ac_Pw = LoginAccount . Status . Generate_Checkcode ( nacc ) ;
1767
- LoginAccount . Status . Fresh ( nacc ) ;
1768
- return nacc ;
1768
+
1769
+ _tran ( accorig ) ;
1770
+ accorig = Business . Do < IAccounts > ( ) . AccountsLogin ( accorig ) ;
1771
+ accorig . Ac_Pw = LoginAccount . Status . Generate_Checkcode ( accorig ) ;
1772
+ LoginAccount . Status . Fresh ( accorig ) ;
1773
+ return accorig ;
1769
1774
}
1770
1775
/// <summary>
1771
1776
/// 获取学员账号绑定的第三方平台的信息
0 commit comments