12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073 |
- import pandas as pd
- from utils.UrlConfig import *
- import json
- import logging
- import traceback
- import random
- import tornado.web
- import requests
- from concurrent_log import ConcurrentTimedRotatingFileHandler
- from utils.ConstantConfig import *
- from utils.DataBaseConfig import *
- from utils.CommonFunction import get_history_video_info, get_new_video_info, get_missing_video_info, \
- get_top_video_info, get_campaign_and_group_name_rule, get_app_detail, get_request_data, \
- refresh_video, get_app_list
- from ai_strategy_request_func import ai_strategy_request_parse
- log_formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s', '%m/%d/%Y %I:%M:%S %p')
- log_handler = ConcurrentTimedRotatingFileHandler("logs/ai_auto_create.log", when="midnight", backupCount=100)
- log_handler.setFormatter(log_formatter)
- logger = logging.getLogger('ai_time_task_creative_logger')
- logger.addHandler(log_handler)
- logger.setLevel(logging.DEBUG)
- print('id of ai_time_task_creative_logger %s' % id(logger))
- logger.info("ai_time_task_creative_server started!")
- class AiHistoricalMissingMaterial(tornado.web.RequestHandler):
- """
- 补充历史遗漏素材(关联创意个数为0个素材)
- """
- def post(self):
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- account_id = data.get('account_id')
- campaign_id = data.get('campaign_id')
- # test_video_cnt 是给 新账户测试使用的
- test_video_cnt = data.get('test_video_cnt', None)
- logger.info("账户信息=%s, 当前进程=%s, 当前进程的主进程=%s, raw data from request is %s" %
- (account_id, os.getpid(), os.getppid(), data))
- try:
- sql = """
- select account_id, single_appid, app_id_array, general_track ,channel_type from ctop_ai_kuaishou_advertiser_strategy
- where account_id=%s order by create_time desc limit 1
- """ % account_id
- df = pd.read_sql(sql, engine)
- channel_type = df['channel_type'].values[0]
- if df['general_track'].values[0] == 0:
- app_id_array = eval(df['app_id_array'].values[0])
- app_list = get_app_list(account_id=account_id, url=get_app_list_url)
- # app_dict key = ("appVersion": "ksjyrlyn-人类一脑涂地大败") , value = 完整的app_id信息
- app_dict = {}
- for app_info in app_list['data']:
- if app_info['appId'] in app_id_array:
- app_dict[app_info['appVersion']] = app_info
- video_list = get_missing_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=test_video_cnt if test_video_cnt else missing_video_cnt,
- url=get_missing_video_url,
- start_time=missing_video_start_time,
- end_time=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
- if test_video_cnt else missing_video_end_time)
- # 返回视频中有通用视频和特定视频,需要分开处理
- # "photo_name": "all",
- # "photo_name": "ksjytdrca-糖豆人冲啊",
- if video_list['code'] == 0:
- video_df = pd.DataFrame(video_list['data'])
- # 1-非通用视频的创建
- special_video_df = video_df[video_df.photo_name != 'all']
- for photo_name in special_video_df['photo_name'].unique():
- if photo_name in app_dict.keys():
- campaign_id = None
- app_id = app_dict[photo_name].get('appId', 'error')
- app_version = app_dict[photo_name].get('appVersion', 'error')
- track_url = app_dict[photo_name].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '遗漏素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- app_id_video_df = special_video_df[special_video_df.photo_name == photo_name]
- app_id_video_list = []
- for k, v in app_id_video_df.T.to_dict().items():
- app_id_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=app_id_video_list,
- campaign_name=app_version + '--优选广告位-' + '遗漏素材',
- group_name=app_version + '-优选广告位-不限-自定义-' + '遗漏素材',
- ai_strategy_remark="补充遗漏素材",
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 补充遗漏素材-特定视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- # 2-通用视频的创建,random.shuffle 选择 app_id
- general_video_df = video_df[video_df.photo_name == 'all']
- if not general_video_df.empty:
- general_video_cnt = len(general_video_df)
- app_version_list = list(app_dict)
- random.shuffle(app_version_list)
- video_cnt = 0
- for app_version in app_version_list[:general_video_cnt]:
- campaign_id = None
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '遗漏素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- single_video = [general_video_df.iloc[video_cnt, :].T.to_dict()]
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=single_video,
- campaign_name=app_version + '--优选广告位-' + '遗漏素材',
- group_name=app_version + '-优选广告位-不限-自定义-' + '遗漏素材',
- ai_strategy_remark="补充遗漏素材",
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- video_cnt += 1
- logger.info("account_id=%s, app_id=%s, 补充遗漏素材-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- logger.info("account_id=%s, 补充遗漏素材: 返回的视频中没有通用视频" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 多应用的补充遗漏素材请求已走完!" % account_id}))
- self.flush()
- else:
- video_info = get_missing_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=test_video_cnt if test_video_cnt else missing_video_cnt,
- url=get_missing_video_url,
- start_time=missing_video_start_time,
- end_time=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
- if test_video_cnt else missing_video_end_time)
- if video_info['code'] != 0:
- logger.info("account_id = %s,补充历史遗漏素材,没有获取到视频,不发送ai策略请求!" % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "补充历史遗漏素材,没有获取到视频,不发送ai策略请求!"}))
- self.flush()
- else:
- campaign_name, group_name = get_campaign_and_group_name_rule(account_id)
- if (campaign_name is None) or (group_name is None):
- logger.info("没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!")
- self.write(json.dumps({"message": "没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"}))
- self.flush()
- else:
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=video_info['data'],
- campaign_name=campaign_name,
- group_name=group_name,
- ai_strategy_remark="补充遗漏素材",
- name_replace="补充遗漏素材")
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id = %s, 补充遗漏素材,ai策略的返回信息:%s" % (account_id, request))
- self.write(json.dumps(request))
- self.flush()
- except Exception:
- logger.error("account_id = %s, traceback is %s" % (account_id, traceback.format_exc()))
- self.write(json.dumps({"account_id": account_id, "message": traceback.format_exc(), "code": -1}))
- self.flush()
- class AiAutoCreative(tornado.web.RequestHandler):
- """
- 每5分钟,检查一次是否有上新素材,有的话,就自动创建
- """
- def post(self):
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- logger.info("*************************************** NEW REQUEST ***************************************")
- account_id = data.get('account_id')
- campaign_id = data.get('campaign_id')
- logger.info("账户信息=%s, 当前进程=%s, 当前进程的主进程=%s, raw data from request is %s" %
- (account_id, os.getpid(), os.getppid(), data))
- try:
- # 刷新快手视频信息
- refresh_video(account_id=account_id, url=refresh_video_url)
- sql = """
- select account_id, single_appid, app_id_array, general_track,channel_type from ctop_ai_kuaishou_advertiser_strategy
- where account_id=%s order by create_time desc limit 1
- """ % account_id
- df = pd.read_sql(sql, engine)
- if df['general_track'].values[0] == 0:
- app_id_array = eval(df['app_id_array'].values[0])
- app_list = get_app_list(account_id=account_id, url=get_app_list_url)
- # app_dict key = ("appVersion": "ksjyrlyn-人类一脑涂地大败") , value = 完整的app_id信息
- app_dict = {}
- for app_info in app_list['data']:
- if app_info['appId'] in app_id_array:
- app_dict[app_info['appVersion']] = app_info
- video_list = get_new_video_info(channel_type=df['channel_type'].values[0],account_id=account_id,
- url=get_new_video_url)
- # 返回的视频中有通用视频和特定视频,需要分开处理
- # "photo_name": "all",
- # "photo_name": "ksjytdrca-糖豆人冲啊",
- if video_list['code'] == 0:
- video_df = pd.DataFrame(video_list['data'])
- # 1-特定视频的创建
- special_video_df = video_df[video_df.photo_name != 'all']
- for photo_name in special_video_df['photo_name'].unique():
- if photo_name in app_dict.keys():
- campaign_id = None
- app_id = app_dict[photo_name].get('appId', 'error')
- app_version = app_dict[photo_name].get('appVersion', 'error')
- track_url = app_dict[photo_name].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '素材自动上新') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- app_id_video_df = special_video_df[special_video_df.photo_name == photo_name]
- app_id_video_list = []
- for k, v in app_id_video_df.T.to_dict().items():
- app_id_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=app_id_video_list,
- campaign_name=app_version + '--优选广告位-' + '素材自动上新',
- group_name=app_version + '-优选广告位-不限-自定义-' + '素材自动上新',
- ai_strategy_remark="素材自动上新",
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 素材自动上新-特定视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- # 2-通用视频的创建,random.shuffle 选择 app_id
- general_video_df = video_df[video_df.photo_name == 'all']
- if not general_video_df.empty:
- general_video_cnt = len(general_video_df)
- app_version_list = list(app_dict)
- random.shuffle(app_version_list)
- video_cnt = 0
- for app_version in app_version_list[:general_video_cnt]:
- campaign_id = None
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '素材自动上新') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- single_video = [general_video_df.iloc[video_cnt, :].T.to_dict()]
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=single_video,
- campaign_name=app_version + '--优选广告位-' + '素材自动上新',
- group_name=app_version + '-优选广告位-不限-自定义-' + '素材自动上新',
- ai_strategy_remark="素材自动上新",
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- video_cnt += 1
- logger.info("account_id=%s, app_id=%s, 素材自动上新-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- logger.info("account_id=%s, 素材自动上新: 返回的视频中没有通用视频" % account_id)
- else:
- logger.info("account_id=%s, 素材自动上新: 没有获取到视频" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 多应用的素材自动上新已走完!" % account_id}))
- self.flush()
- else:
- start_time = (datetime.date.today()).strftime('%Y-%m-%d %H:%M:%S')
- end_time = (datetime.datetime.now()).strftime('%Y-%m-%d %H:%M:%S')
- # 1-1 获取当天计划中包含“自动上新”计划的,计划id
- sql = """
- select campaign_id, campaign_name from ctop_kuaishou_campaign
- where account_id = %s
- and put_create_time >= '%s'
- and put_create_time <= '%s'
- """ % (account_id, start_time, end_time)
- df = pd.read_sql(sql, engine)
- channel_type = df['channel_type'].values[0]
- for row in df.itertuples():
- if '素材自动上新' in getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- video_info = get_new_video_info(channel_type=channel_type,
- account_id=account_id,
- url=get_new_video_url)
- if video_info['code'] != 0:
- self.write(json.dumps({"account_id": account_id, "message": "素材自动上新没有获取到视频,不发送ai策略请求!"}))
- self.flush()
- else:
- campaign_name, group_name = get_campaign_and_group_name_rule(account_id)
- if (campaign_name is None) or (group_name is None):
- logger.info("account_id = %s, 素材自动上新 没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"
- % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "素材自动上新 没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"}))
- self.flush()
- else:
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=video_info['data'],
- campaign_name=campaign_name,
- group_name=group_name,
- ai_strategy_remark="自动上新",
- name_replace="素材自动上新")
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id = %s, 素材自动上新 ai策略的返回信息:%s" % (account_id, request))
- self.write(json.dumps(request))
- self.flush()
- except Exception:
- logger.error("account_id = %s, traceback is %s" % (account_id, traceback.format_exc()))
- self.write(json.dumps({"account_id": account_id, "message": traceback.format_exc(), "code": -1}))
- self.flush()
- class AiHighQualityMaterial(tornado.web.RequestHandler):
- """
- 补充历史高质量素材 -- 测试通过 在AD后台创建成功,检查AD信息和数据库表 没有问题
- """
- def post(self):
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- logger.info("*************************************** NEW REQUEST ***************************************")
- account_id = data.get('account_id')
- campaign_id = data.get('campaign_id')
- logger.info("账户信息=%s, 当前进程=%s, 当前进程的主进程=%s, raw data from request is %s" %
- (account_id, os.getpid(), os.getppid(), data))
- try:
- sql = """select account_id, single_appid, app_id_array, general_track,channel_type from ctop_ai_kuaishou_advertiser_strategy
- where account_id=%s order by create_time desc limit 1
- """ % account_id
- df = pd.read_sql(sql, engine)
- channel_type = df['channel_type'].values[0]
- if df['general_track'].values[0] == 0:
- app_id_array = eval(df['app_id_array'].values[0])
- app_list = get_app_list(account_id=account_id, url=get_app_list_url)
- # app_dict key = ("appVersion": "ksjyrlyn-人类一脑涂地大败") , value = 完整的app_id信息
- app_dict = {}
- for app_info in app_list['data']:
- if app_info['appId'] in app_id_array:
- app_dict[app_info['appVersion']] = app_info
- video_list = get_top_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=high_quality_video_cnt,
- start_time=(datetime.datetime.now() +
- datetime.timedelta(days=-high_quality_video_days)).
- strftime("%Y-%m-%d %H:%M:%S"),
- end_time=(datetime.datetime.now() + datetime.timedelta(days=-1)).
- strftime("%Y-%m-%d %H:%M:%S"),
- url=get_high_quality_video_url)
- # 单独处理返回的时候中,有通用视频,需要单独处理
- # "photo_name": "all",
- # "photo_name": "ksjytdrca-糖豆人冲啊",
- if video_list['code'] == 0:
- video_df = pd.DataFrame(video_list['data'])
- # 1-特定视频的创建
- special_video_df = video_df[video_df.photo_name != 'all']
- for photo_name in special_video_df['photo_name'].unique():
- if photo_name in app_dict.keys():
- campaign_id = None
- app_id = app_dict[photo_name].get('appId', 'error')
- app_version = app_dict[photo_name].get('appVersion', 'error')
- track_url = app_dict[photo_name].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '高质量素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- app_id_video_df = special_video_df[special_video_df.photo_name == photo_name]
- app_id_video_list = []
- for k, v in app_id_video_df.T.to_dict().items():
- app_id_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=app_id_video_list,
- campaign_name=app_version + '--优选广告位-' + '高质量素材',
- group_name=app_version + '-优选广告位-不限-自定义-' + '高质量素材',
- ai_strategy_remark="高质量素材复建",
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 高质量素材复建-特定视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- # 2-通用视频的创建,random.shuffle 选择 app_id
- general_video_df = video_df[video_df.photo_name == 'all']
- if not general_video_df.empty:
- general_video_cnt = len(general_video_df)
- app_version_list = list(app_dict)
- random.shuffle(app_version_list)
- video_cnt = 0
- for app_version in app_version_list[:general_video_cnt]:
- campaign_id = None
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '高质量素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- single_video = [general_video_df.iloc[video_cnt, :].T.to_dict()]
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=single_video,
- campaign_name=app_version + '--优选广告位-' + '高质量素材',
- group_name=app_version + '-优选广告位-不限-自定义-' + '高质量素材',
- ai_strategy_remark="高质量素材复建",
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- video_cnt += 1
- logger.info("account_id=%s, app_id=%s, 高质量素材复建-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- logger.info("account_id=%s, 高质量素材复建: 返回的视频中没有通用视频" % account_id)
- else:
- logger.info("account_id=%s, 高质量素材复建: 没有获取到视频" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 多应用的高质量素材复建请求已走完!" % account_id}))
- self.flush()
- else:
- video_info = get_top_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=high_quality_video_cnt,
- start_time=(datetime.datetime.now() +
- datetime.timedelta(days=-high_quality_video_days)).
- strftime("%Y-%m-%d %H:%M:%S"),
- end_time=(datetime.datetime.now() + datetime.timedelta(days=-1)).
- strftime("%Y-%m-%d %H:%M:%S"),
- url=get_high_quality_video_url)
- if video_info['code'] != 0:
- logger.info("account_id = %s, 高质量素材复建,没有获取到视频,不发送ai策略请求!" % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "高质量素材复建,没有获取到视频,不发送ai策略请求!"}))
- self.flush()
- else:
- campaign_name, group_name = get_campaign_and_group_name_rule(account_id)
- if (campaign_name is None) or (group_name is None):
- logger.error("account_id = %s, 没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!" % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"}))
- self.flush()
- else:
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=video_info['data'],
- campaign_name=campaign_name,
- group_name=group_name,
- ai_strategy_remark="高质量素材复建",
- name_replace="高质量素材")
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id = %s, 高质量素材复建,ai策略的返回信息:%s" % (account_id, request))
- self.write(json.dumps(request))
- self.flush()
- except Exception:
- logger.error("account_id = %s, traceback is %s" % (account_id, traceback.format_exc()))
- self.write(json.dumps({"account_id": account_id, "message": traceback.format_exc(), "code": -1}))
- self.flush()
- class AiUpCreativeByHour(tornado.web.RequestHandler):
- """
- 1点到20点,每小时执行一次,检查当前时点创意个数是否达到hour*100
- 没有达到则按照当前时点值,补充不同类型的视频
- """
- def post(self):
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- account_id = data.get('account_id')
- campaign_id = data.get('campaign_id')
- logger.info("账户信息=%s, 当前进程=%s, 当前进程的主进程=%s, raw data from request is %s" %
- (account_id, os.getpid(), os.getppid(), data))
- try:
- # 1 从客户策略表中获取该账户下 每个素材搭配的封面个数, 来计算需要补充的素材个数
- sql = """select image_cnt from ctop_ai_kuaishou_advertiser_strategy
- where account_id = %s
- limit 1""" % account_id
- df = pd.read_sql(sql, engine)
- image_cnt = int(df['image_cnt'].values[0])
- # 2、获取从0点到now()为止,该账户下已有的创意个数 M
- sql = """select count(1) creative_cnt from ctop_kuaishou_creative
- where account_id = %s
- and creative_id is not NULL
- and creative_create_time <= '%s'
- and creative_create_time >= '%s'""" % (account_id,
- (datetime.datetime.now()).strftime('%Y-%m-%d %H:%M:%S'),
- (datetime.datetime.now()).strftime('%Y-%m-%d'))
- df = pd.read_sql(sql, engine)
- exist_creative_cnt = int(df['creative_cnt'].values[0])
- now_hour = datetime.datetime.now().hour
- now = datetime.datetime.now()
- channel_type = df['channel_type'].values[0]
- should_creative_cnt = now_hour * 100
- # 3、计算需要补充的创意个数和视频个数,并按当前小时值,补充不同类似的视频
- if exist_creative_cnt < should_creative_cnt:
- need_video_cnt = (should_creative_cnt - exist_creative_cnt) // image_cnt
- logger.info("account_id = %s, 按小时需要补充的视频数量 = %s" % (account_id, need_video_cnt))
- if now_hour % 5 == 0:
- # campaign_group_name_place 用于广告计划和广告组名称的标识
- campaign_group_name_place = "高质量素材"
- video_list = get_top_video_info(channel_type=channel_type,
- account_id=account_id,
- url=get_high_quality_video_url,
- start_time=(now + datetime.timedelta(days=-high_quality_video_days)).
- strftime("%Y-%m-%d %H:%M:%S"),
- end_time=(now + datetime.timedelta(days=-1)).
- strftime("%Y-%m-%d %H:%M:%S"),
- cnt=need_video_cnt,
- app_version=None)
- elif (now_hour % 5 == 1) or (now_hour % 5 == 2):
- campaign_group_name_place = "历史素材打捞"
- video_list = get_history_video_info(channel_type=channel_type,
- account_id=account_id,
- url=get_history_video_url,
- start_time=history_video_start_time,
- end_time=history_video_end_time,
- video_cnt=need_video_cnt,
- related_creative_max_cnt=related_creative_max_cnt)
- else:
- campaign_group_name_place = "遗漏素材"
- video_list = get_missing_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=need_video_cnt,
- url=get_missing_video_url,
- start_time=missing_video_start_time,
- end_time=missing_video_end_time)
-
- if video_list['code'] == 0:
- # 根据获取到的视频进行创建
- sql = """select account_id, single_appid, app_id_array, general_track, channel_type from ctop_ai_kuaishou_advertiser_strategy
- where account_id=%s order by create_time desc limit 1""" % account_id
- df = pd.read_sql(sql, engine)
- if df['general_track'].values[0] == 0:
- app_id_array = eval(df['app_id_array'].values[0])
- app_list = get_app_list(account_id=account_id, url=get_app_list_url)
- # app_dict key = ("appVersion": "ksjyrlyn-人类一脑涂地大败") , value = 完整的app_id信息
- app_dict = {}
- for app_info in app_list['data']:
- if app_info['appId'] in app_id_array:
- app_dict[app_info['appVersion']] = app_info
- # 单独处理返回的时候中,有通用视频,需要单独处理
- # "photo_name": "all",
- # "photo_name": "ksjytdrca-糖豆人冲啊",
- video_df = pd.DataFrame(video_list['data'])
- # 1-特定视频的创建
- special_video_df = video_df[video_df.photo_name != 'all']
- for photo_name in special_video_df['photo_name'].unique():
- if photo_name in app_dict.keys():
- campaign_id = None
- app_id = app_dict[photo_name].get('appId', 'error')
- app_version = app_dict[photo_name].get('appVersion', 'error')
- track_url = app_dict[photo_name].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + campaign_group_name_place) == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- app_id_video_df = special_video_df[special_video_df.photo_name == photo_name]
- app_id_video_list = []
- for k, v in app_id_video_df.T.to_dict().items():
- app_id_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=app_id_video_list,
- campaign_name=app_version+'--优选广告位-'+campaign_group_name_place,
- group_name=app_version+'-优选广告位-不限-自定义-'+campaign_group_name_place,
- ai_strategy_remark="按小时补充创意-"+campaign_group_name_place,
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, %s补充创意-特定视频,ai策略的返回信息:%s" %
- (account_id, app_id, campaign_group_name_place, request))
- # 2-通用视频的创建,random.shuffle 选择 app_id
- general_video_df = video_df[video_df.photo_name == 'all']
- if not general_video_df.empty:
- # 每 batch_num 一组 随机选择一个app_id 进行创建
- batch_num = 10
- general_video_cnt = len(general_video_df)
- app_version_list = list(app_dict)
- random.shuffle(app_version_list)
- need_app_id_cnt = general_video_cnt // batch_num + 1
- video_cnt = 0
- for app_version in app_version_list[:need_app_id_cnt]:
- campaign_id = None
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + campaign_group_name_place) == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- batch_general_video_list = []
- for k, v in general_video_df.iloc[video_cnt: video_cnt+batch_num, :].T.to_dict().items():
- batch_general_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=batch_general_video_list,
- campaign_name=app_version + '--优选广告位-' + campaign_group_name_place,
- group_name=app_version + '-优选广告位-不限-自定义-' + campaign_group_name_place,
- ai_strategy_remark="按小时补充创意-"+campaign_group_name_place,
- unit_type=4,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- video_cnt += batch_num
- logger.info("account_id=%s, app_id=%s, %s补充创意-通用视频,ai策略的返回信息:%s" %
- (account_id, app_id, campaign_group_name_place, request))
- else:
- logger.info("account_id=%s, %s补充创意: 返回的视频中没有通用视频" % (account_id, campaign_group_name_place))
- self.write(json.dumps({"message": "account_id=%s, %s补充创意请求已走完!" % (account_id, campaign_group_name_place)}))
- self.flush()
- else:
- # 获取当天计划中包含“campaign_group_name_place”计划的,计划id
- sql = """select campaign_id, campaign_name from ctop_kuaishou_campaign
- where account_id = %s
- and put_create_time <= '%s'
- and put_create_time >= '%s' """ % (account_id,
- (datetime.datetime.now()).strftime('%Y-%m-%d %H:%M:%S'),
- (datetime.datetime.now()).strftime('%Y-%m-%d'))
- df = pd.read_sql(sql, engine)
- for row in df.itertuples():
- if campaign_group_name_place in getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- campaign_name, group_name = get_campaign_and_group_name_rule(account_id)
- if (campaign_name is None) or (group_name is None):
- logger.info("account_id = %s, 没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!" % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"}))
- self.flush()
- else:
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=video_list['data'],
- campaign_name=campaign_name,
- group_name=group_name,
- ai_strategy_remark="按小时补充创意-"+campaign_group_name_place,
- name_replace=campaign_group_name_place)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id = %s, %s补充创意,ai策略的返回信息:%s" % (account_id, campaign_group_name_place, request))
- self.write(json.dumps(request))
- self.flush()
- else:
- logger.info("account_id=%s, 按小时补充创意: 没有成功获取到视频!" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 按小时补充创意: 没有成功获取到视频!" % account_id}))
- self.flush()
- else:
- logger.info("account_id=%s, 按小时补充创意: 不需要补充!" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 按小时补充创意: 不需要补充!" % account_id}))
- self.flush()
- except Exception:
- logger.error("account_id = %s, traceback is %s" % (account_id, traceback.format_exc()))
- self.write(json.dumps({"account_id": account_id, "message": traceback.format_exc(), "code": -1}))
- self.flush()
- class AiProgramCreativeHighQualityMaterial(tornado.web.RequestHandler):
- """
- 使用历史跑量素材创建程序化创意
- 跑量素材150个(近14天的素材)
- 计划名称--跑量素材程序化
- timeTask: 每天上午10点执行 --(0 0 10 * * ?)
- ----------------------------------------
- 拼装参数和写入数据库时,需要修改名称(程序化与非程序化不一致):
- creative_name --> package_name(程序化创意名称)
- action_bar_text --> action_bar(行动号召按钮)
- description --> captions(作品广告语)
- click_track_url --> click_url
- 写入数据库时:
- image_md5s --> cover_image_tokens
- 程序化与非程序化的逻辑不一样:
- 需要5个视频4张封面一组,拼装程序化创意参数需要单独抽取一个方法出来
- 所有操作记录表中,添加status信息(已提交,成功,失败),和回调时的 message信息
- """
- def post(self):
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- logger.info("*************************************** NEW REQUEST ***************************************")
- account_id = data.get('account_id')
- campaign_id = data.get('campaign_id')
- logger.info("账户信息=%s, 当前进程=%s, 当前进程的主进程=%s, raw data from request is %s" %
- (account_id, os.getpid(), os.getppid(), data))
- try:
- sql = """select account_id, single_appid, app_id_array, general_track,channel_type from ctop_ai_kuaishou_advertiser_strategy
- where account_id=%s order by create_time desc limit 1
- """ % account_id
- df = pd.read_sql(sql, engine)
- channel_type = df['channel_type'].values[0]
- if df['general_track'].values[0] == 0:
- app_id_array = eval(df['app_id_array'].values[0])
- app_list = get_app_list(account_id=account_id, url=get_app_list_url)
- # app_dict key = ("appVersion": "ksjyrlyn-人类一脑涂地大败") , value = 完整的app_id信息
- app_dict = {}
- for app_info in app_list['data']:
- if app_info['appId'] in app_id_array:
- app_dict[app_info['appVersion']] = app_info
- video_list = get_top_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=multi_app_id_programme_high_quality_video_cnt,
- start_time=(datetime.datetime.now() + datetime.timedelta(
- days=-high_quality_video_days)).strftime("%Y-%m-%d %H:%M:%S"),
- end_time=(datetime.datetime.now() + datetime.timedelta(days=-1)).
- strftime("%Y-%m-%d %H:%M:%S"),
- url=get_high_quality_video_url)
- # 单独处理返回的时候中,有通用视频,需要单独处理
- # "photo_name": "all",
- # "photo_name": "ksjytdrca-糖豆人冲啊",
- if video_list['code'] == 0:
- video_df = pd.DataFrame(video_list['data'])
- # 1-特定视频的创建
- special_video_df = video_df[video_df.photo_name != 'all']
- for photo_name in special_video_df['photo_name'].unique():
- if photo_name in app_dict.keys():
- campaign_id = None
- app_id = app_dict[photo_name].get('appId', 'error')
- app_version = app_dict[photo_name].get('appVersion', 'error')
- track_url = app_dict[photo_name].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '程序化高质量素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- app_id_video_df = special_video_df[special_video_df.photo_name == photo_name]
- app_id_video_list = []
- for k, v in app_id_video_df.T.to_dict().items():
- app_id_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=app_id_video_list,
- campaign_name=app_version + '--优选广告位-' + '程序化高质量素材',
- group_name=app_version + '-优选广告位-不限-程序化-' + '高质量素材',
- ai_strategy_remark="程序化高质量素材",
- unit_type=7,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 程序化高质量素材-特定视频,ai策略的返回信息:%s" %
- (account_id, app_id, request))
- # 2-通用视频的创建,random.shuffle 选择 app_id
- general_video_df = video_df[video_df.photo_name == 'all']
- general_video_list = []
- for k, v in general_video_df.T.to_dict().items():
- general_video_list.append(v)
- if general_video_list:
- app_version_list = list(app_dict)
- random.shuffle(app_version_list)
- # 每5个通用视频创建一个程序化广告组
- batch_num = 5
- app_id_cnt = 0
- for i in range(0, len(general_video_list), 5):
- if i + 5 < len(general_video_list):
- batch_general_video = general_video_list[i: i + batch_num]
- app_version = app_version_list[app_id_cnt]
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '程序化高质量素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=batch_general_video,
- campaign_name=app_version + '--优选广告位-' + '程序化高质量素材',
- group_name=app_version + '-优选广告位-不限-程序化-' + '高质量素材',
- ai_strategy_remark="程序化高质量素材",
- unit_type=7,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- app_id_cnt += 1
- logger.info("account_id=%s, app_id=%s, 程序化高质量素材-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- batch_general_video = general_video_list[i: len(general_video_list)]
- app_version = app_version_list[app_id_cnt]
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '程序化高质量素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=batch_general_video,
- campaign_name=app_version + '--优选广告位-' + '程序化高质量素材',
- group_name=app_version + '-优选广告位-不限-程序化-' + '高质量素材',
- ai_strategy_remark="程序化高质量素材",
- unit_type=7,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 程序化高质量素材-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- logger.info("account_id=%s, 程序化高质量素材: 返回的视频中没有通用视频" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 程序化高质量素材请求已走完!" % account_id}))
- self.flush()
- else:
- video_info = get_top_video_info(channel_type=channel_type,
- account_id=account_id,
- cnt=programme_high_quality_video_cnt,
- start_time=(datetime.datetime.now() + datetime.timedelta(
- days=-high_quality_video_days)).strftime("%Y-%m-%d %H:%M:%S"),
- end_time=(datetime.datetime.now() + datetime.timedelta(days=-1)).
- strftime("%Y-%m-%d %H:%M:%S"),
- url=get_high_quality_video_url)
- if video_info['code'] != 0:
- logger.info("account_id = %s, 程序化高质量素材,没有获取到视频,不发送ai策略请求!" % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "没有获取到视频,不发送ai策略请求!"}))
- self.flush()
- else:
- campaign_name, group_name = get_campaign_and_group_name_rule(account_id)
- if (campaign_name is None) or (group_name is None):
- logger.info("account_id = %s, 没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!" % account_id)
- self.write(json.dumps({"account_id": account_id,
- "message": "没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"}))
- self.flush()
- else:
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=video_info['data'],
- campaign_name=campaign_name,
- group_name=group_name,
- ai_strategy_remark="程序化高质量素材",
- name_replace="程序化高质量素材",
- unit_type=7)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id = %s, 程序化高质量素材, ai策略的返回信息:%s" % (account_id, request))
- self.write(json.dumps(request))
- self.flush()
- except Exception:
- logger.error("account_id = %s, traceback is %s" % (account_id, traceback.format_exc()))
- self.write(json.dumps({"account_id": account_id, "message": traceback.format_exc(), "code": -1}))
- self.flush()
- class AiProgramCreativeNewMaterial(tornado.web.RequestHandler):
- """
- 使用N天内 创意数关联小于M个(如当天创意关联数小于10的,150个素材)的素材创建程序化创意
- 计划名称--新素材程序化
- timeTask: 每天上午10点执行 --(0 0 10 * * ?)
- """
- def post(self):
- data = self.request.body
- data = str(data, 'utf8')
- data = json.loads(data, encoding='utf8')
- logger.info("*************************************** NEW REQUEST ***************************************")
- account_id = data.get('account_id')
- campaign_id = data.get('campaign_id')
- test_video_cnt = data.get('test_video_cnt', None)
- logger.info("账户信息=%s, 当前进程=%s, 当前进程的主进程=%s, raw data from request is %s" %
- (account_id, os.getpid(), os.getppid(), data))
- try:
- sql = """select account_id, single_appid, app_id_array, general_track,channel_type from ctop_ai_kuaishou_advertiser_strategy
- where account_id=%s order by create_time desc limit 1
- """ % account_id
- df = pd.read_sql(sql, engine)
- channel_type = df['channel_type'].values[0]
- if df['general_track'].values[0] == 0:
- app_id_array = eval(df['app_id_array'].values[0])
- app_list = get_app_list(account_id=account_id, url=get_app_list_url)
- # app_dict key = ("appVersion": "ksjyrlyn-人类一脑涂地大败") , value = 完整的app_id信息
- app_dict = {}
- for app_info in app_list['data']:
- if app_info['appId'] in app_id_array:
- app_dict[app_info['appVersion']] = app_info
- video_list = get_history_video_info(channel_type=channel_type,
- account_id=account_id,
- url=get_history_video_url,
- start_time=(datetime.datetime.now() + datetime.timedelta(days=-7)).strftime("%Y-%m-%d %H:%M:%S"),
- end_time=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")if test_video_cnt else(datetime.datetime.now() + datetime.timedelta(days=-1)).strftime("%Y-%m-%d %H:%M:%S"),
- video_cnt=test_video_cnt if test_video_cnt else multi_app_id_programme_new_video_cnt,
- related_creative_max_cnt=related_creative_max_cnt)
- # 单独处理返回的时候中,有通用视频,需要单独处理
- # "photo_name": "all",
- # "photo_name": "ksjytdrca-糖豆人冲啊",
- if video_list['code'] == 0:
- video_df = pd.DataFrame(video_list['data'])
- # 1-特定视频的创建
- special_video_df = video_df[video_df.photo_name != 'all']
- for photo_name in special_video_df['photo_name'].unique():
- if photo_name in app_dict.keys():
- campaign_id = None
- app_id = app_dict[photo_name].get('appId', 'error')
- app_version = app_dict[photo_name].get('appVersion', 'error')
- track_url = app_dict[photo_name].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '程序化上新素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- app_id_video_df = special_video_df[special_video_df.photo_name == photo_name]
- app_id_video_list = []
- for k, v in app_id_video_df.T.to_dict().items():
- app_id_video_list.append(v)
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=app_id_video_list,
- campaign_name=app_version + '--优选广告位-' + '程序化上新素材',
- group_name=app_version + '-优选广告位-不限-程序化-' + '上新素材',
- ai_strategy_remark="程序化上新素材",
- unit_type=7,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 程序化上新素材-特定视频,ai策略的返回信息:%s" %
- (account_id, app_id, request))
- # 2-通用视频的创建,random.shuffle 选择 app_id
- general_video_df = video_df[video_df.photo_name == 'all']
- general_video_list = []
- for k, v in general_video_df.T.to_dict().items():
- general_video_list.append(v)
- if general_video_list:
- app_version_list = list(app_dict)
- random.shuffle(app_version_list)
- # 每5个通用视频创建一个程序化广告组
- batch_num = 5
- app_id_cnt = 0
- for i in range(0, len(general_video_list), 5):
- if i + 5 < len(general_video_list):
- batch_general_video = general_video_list[i: i + batch_num]
- app_version = app_version_list[app_id_cnt]
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '程序化上新素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=batch_general_video,
- campaign_name=app_version + '--优选广告位-' + '程序化上新素材',
- group_name=app_version + '-优选广告位-不限-程序化-' + '上新素材',
- ai_strategy_remark="程序化上新素材",
- unit_type=7,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- app_id_cnt += 1
- logger.info("account_id=%s, app_id=%s, 程序化上新素材-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- batch_general_video = general_video_list[i: len(general_video_list)]
- app_version = app_version_list[app_id_cnt]
- app_id = app_dict[app_version].get('appId', 'error')
- track_url = app_dict[app_version].get('trackUrl', 'error')
- sql = """ select campaign_id, campaign_name from ctop_kuaishou_campaign where account_id = %s """ % account_id
- campaign_df = pd.read_sql(sql, engine)
- for row in campaign_df.itertuples():
- if (app_version + '--优选广告位-' + '程序化上新素材') == getattr(row, 'campaign_name'):
- campaign_id = getattr(row, 'campaign_id')
- break
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=batch_general_video,
- campaign_name=app_version + '--优选广告位-' + '程序化上新素材',
- group_name=app_version + '-优选广告位-不限-程序化-' + '上新素材',
- ai_strategy_remark="程序化上新素材",
- unit_type=7,
- app_id=app_id,
- click_track_url=track_url,
- creative_name=app_version)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id=%s, app_id=%s, 程序化上新素材-通用视频,ai策略的返回信息:%s" % (account_id, app_id, request))
- else:
- logger.info("account_id=%s, 程序化上新素材: 返回的视频中没有通用视频" % account_id)
- self.write(json.dumps({"message": "account_id=%s, 程序化上新素材请求已走完!" % account_id}))
- self.flush()
- else:
- video_info = get_history_video_info(channel_type=channel_type,
- account_id=account_id,
- url=get_history_video_url,
- start_time=(datetime.datetime.now() + datetime.timedelta(days=-7)).
- strftime("%Y-%m-%d %H:%M:%S"),
- end_time=datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
- if test_video_cnt
- else (datetime.datetime.now() + datetime.timedelta(days=-1)).
- strftime("%Y-%m-%d %H:%M:%S"),
- video_cnt=test_video_cnt if test_video_cnt else programme_new_video_cnt,
- related_creative_max_cnt=related_creative_max_cnt)
- if video_info['code'] != 0:
- self.write(json.dumps({"account_id": account_id,
- "message": "程序化上新素材,没有获取到视频,不发送ai策略请求!"}))
- self.flush()
- else:
- campaign_name, group_name = get_campaign_and_group_name_rule(account_id)
- if (campaign_name is None) or (group_name is None):
- logger.info("没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!")
- self.write(json.dumps({"message": "没有获取到广告计划命名规则 或 广告组命名规则,不发送ai策略请求!"}))
- self.flush()
- else:
- request_data = get_request_data(account_id=account_id,
- campaign_id=campaign_id,
- video_info=video_info['data'],
- campaign_name=campaign_name,
- group_name=group_name,
- ai_strategy_remark="程序化上新素材",
- name_replace="程序化上新素材",
- unit_type=7)
- request = ai_strategy_request_parse(request_data)
- logger.info("account_id = %s, 程序化上新素材,ai策略的返回信息:%s" % (account_id, request))
- self.write(json.dumps(request))
- self.flush()
- except Exception:
- logger.error("account_id = %s, traceback is %s" % (account_id, traceback.format_exc()))
- self.write(json.dumps({"account_id": account_id, "message": traceback.format_exc(), "code": -1}))
- self.flush()
|