溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

go ldap ad域 Windows NT時(shí)間與Unix時(shí)間轉(zhuǎn)換的方法

發(fā)布時(shí)間:2021-06-28 15:46:05 來源:億速云 閱讀:477 作者:chen 欄目:編程語言

這篇文章主要講解了“go ldap ad域 Windows NT時(shí)間與Unix時(shí)間轉(zhuǎn)換的方法”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“go ldap ad域 Windows NT時(shí)間與Unix時(shí)間轉(zhuǎn)換的方法”吧!

AD域來自windows,其設(shè)計(jì)了Window NT時(shí)間(表示從1602年1月1日UTC時(shí)間開始的100納秒數(shù))

因?yàn)橐獙D域用戶的accountExpires賬戶過期時(shí)間進(jìn)行修改來控制該用戶自動(dòng)過期的機(jī)制,所以要將Window NT與Unix時(shí)間進(jìn)行互相轉(zhuǎn)換。

首先,我們?cè)谧x取并解析用ldap協(xié)議查詢出來的AD域用戶賬號(hào)過期時(shí)間,將Window NT轉(zhuǎn)換為Unix時(shí)間;

其次,在創(chuàng)建用戶的時(shí)候,根據(jù)提交的工單信息,需要為新賬號(hào)指定一個(gè)過期時(shí)間,將當(dāng)前Unix時(shí)間加上幾個(gè)月的過期時(shí)間,賦值給accountExpires;

最后,當(dāng)有賬號(hào)已經(jīng)過期,使用不了的時(shí)候,用戶會(huì)提交賬號(hào)重新激活工單,自動(dòng)為該賬號(hào)續(xù)期;【一:賬號(hào)正常過期,續(xù)6個(gè)月之類的; 二:重復(fù)提交創(chuàng)建賬號(hào)申請(qǐng),不處理發(fā)企業(yè)微信通知告知已經(jīng)有賬號(hào)了,告知對(duì)方賬號(hào)創(chuàng)建和最后修改時(shí)間,讓對(duì)方查看企業(yè)微信消息/郵件,如果沒有找到賬號(hào)密碼消息,請(qǐng)直接提交密碼找回工單(將收到賬號(hào)和新密碼)】

golang原生time包的Duration時(shí)間段

A Duration represents the elapsed time between two instants as an int64 nanosecond count. The representation limits the largest representable duration to approximately 290 years.

僅僅支持最大為290年的時(shí)間段,而windows nt時(shí)間為1601年開始,到現(xiàn)今是420多年,根本無法適配,在不采用第三方庫(kù)的情況下該如何處理呢? 犯迷糊了,怎么將unix時(shí)間轉(zhuǎn)換為nt時(shí)間,則反過來計(jì)算只需要計(jì)算出正確的unix時(shí)間戳然后將時(shí)間戳轉(zhuǎn)換為時(shí)間類型即可。

// maxDuration Duration = 1<<63 - 1
fmt.Println(time.Duration(1<<63 - 1))
2562047h57m16.854775807s
292.47111872146 年

Window NT 時(shí)間轉(zhuǎn)換為 Unix 時(shí)間

// Window NT 時(shí)間轉(zhuǎn)換為 Unix 時(shí)間
func NtToUnix(ntTime int64) (unixTime time.Time) {
	ntTime = (ntTime - 1.1644473600125e+17) / 1e+7
	return time.Unix(int64(ntTime), 0)
}

測(cè)試

func TestNtTimeToDatetime(t *testing.T) {
	// 取當(dāng)前時(shí)間轉(zhuǎn)換為nt時(shí)間
	timestamp := time.Now().Unix()*1e+7 + 1.1644473600125e+17
	fmt.Println(timestamp)
	// 將nt時(shí)間轉(zhuǎn)換為unix時(shí)間
	res := NtToUnix(timestamp)
	fmt.Println(res)
}

Unix 時(shí)間轉(zhuǎn)換為 Window NT 時(shí)間

// Unix 時(shí)間轉(zhuǎn)換為 Window NT 時(shí)間
func UnixToNt(expireTime time.Time) (ntTimestamp int64) {
	ntTimestamp = expireTime.Unix()*int64(1e+7) + int64(1.1644473600125e+17)
	return
}

測(cè)試

func TestUnixTimeToNtTime(t *testing.T) {
	// 當(dāng)前時(shí)間
	unixTime := time.Now()
	// 當(dāng)前時(shí)間往后推遲6個(gè)月
	unixTime.AddDate(0, 6, 0)
	res := UnixToNt(unixTime)
	fmt.Println(res)
}

用戶過期期限處理

// 用戶過期期限處理 月份為-1 則過期時(shí)間為永久;否則 當(dāng)前時(shí)間往后推遲expireMouths個(gè)月
func expireTime(expireMouths int64) (expireTimestamp int64) {
	expireTimestamp = 9223372036854775807
	if expireMouths != -1 {
		expireTimestamp = util.UnixToNt(time.Now().AddDate(0, int(expireMouths), 0))
	}
	return
}

python中的寫法

import datetime
import time

from dateutil.relativedelta import relativedelta


def expire_time(expire_mouths: int) -> int:
    '''用戶賬號(hào)過期邏輯
    '''
    expire_timestamp = 9223372036854775807
    if expire_mouths != -1:
        expire_timestamp = unix_2_nt(
            datetime.datetime.now() + relativedelta(months=expire_mouths))
    return expire_timestamp


def unix_2_nt(expire_time: datetime) -> int:
    '''Unix 時(shí)間轉(zhuǎn)換為 Window NT 時(shí)間
    '''
    return time.mktime(expire_time.timetuple()) * 1e+7 + 1.1644473600125e+17


def nt_2_unix(nt_time):
    '''winows時(shí)間轉(zhuǎn)換為unix時(shí)間
    '''
    return datetime.datetime(1601, 1, 1) + datetime.timedelta(microseconds=nt_time//10)


if __name__ == '__main__':
    print(expire_time(6))
    print(nt_2_unix(1.3281000774125e+17))

感謝各位的閱讀,以上就是“go ldap ad域 Windows NT時(shí)間與Unix時(shí)間轉(zhuǎn)換的方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)go ldap ad域 Windows NT時(shí)間與Unix時(shí)間轉(zhuǎn)換的方法這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

go
AI