需求说明
1、搜索结果支持分享,生成H5页面展示。
2、分享出去的H5页面可以打开114啦的搜索界面。
需求地址
相关逻辑及代码
在请求综合搜索时,会返回一个用于分享的URL。
该url有固定格式: http://114larc.com/p/search?q=1 ->第一个q= 后面的都是搜索的关键词。
因为搜索没有相关经验时也会返回该字段,所以客户端添加了判断,
如果没有相关内容则不显示分享搜索结果的选项。
if !json["data"]["share"].stringValue.isEmpty && tempDatas.count > 0
&& self.datas?.last?.type != .share {
let shareModel = SearchGroupModel(SearchGroupType.share)
shareModel.searchDatas = [SearchCellModel(keyword: json["data"]["share"].stringValue)]
self.datas?.append(shareModel)
}
当点击分享搜索结果时则自定义分享显示的信息,不自定义的话会获取当前打开的页面相关的url和title。
case .share:
guard let model = groupModel.searchDatas?[indexPath.row] else { return }
PageViewManager.showShare(model.keyWord, shareText: "114啦 - 搜索\"\(String(describing: urlBarView!.addressTextField.text!))\"")
return
以上是分享出去的逻辑。
经过确定,114啦中是不用打开该分享出去的H5页面的。
当识别出http://114larc.com/p/search?q=(关键词)链接时,
或者第三方调用"oof.browser://openlink/?search/word=(关键词)",
则使用原生UI打开搜索界面并进行搜索。
if url.absoluteString.hasPrefix("oof.browser://openlink/?search/word=") {//搜索用114啦打开。。去除所有界面。打开搜索界面。
let str = url.absoluteString.replacingOccurrences(of: "oof.browser://openlink/?search/word=", with: "")
if let strd = str.ud_UrlDecoded() {
if didWebFinishLoaded == true {
if let navC = window?.rootViewController as? UINavigationController {
let mainViewController = navC.viewControllers.first as! MainViewController
mainViewController.openSearchView(searchKey: strd)
}
}else{
openSearchKey = strd
}
}
return false
}
func openSearchView(searchKey: String) {
resetMainViewController(false)
removePicBrowser()
showSearchView()
let key = searchKey.removingPercentEncoding ?? searchKey
urlBarView?.addressTextField.text = key
searchViewManager.textFieldText = key
}
//需要将各种弹层移除。再新建标签页打开。。 分享弹层 菜单弹层 搜索界面。。
func resetMainViewController(_ hideSearch: Bool = true) {
var isViaUserCommon = true//默认用户直接点击常用栏,直接跳转到这个界面
if let _ = self.presentedViewController as? UINavigationController {
isViaUserCommon = false
}
if let _ = self.presentedViewController as? TabManageViewController {
self.dismiss(animated: true, completion: nil)
}
if isViaUserCommon {
self.navigationController?.popToRootViewController(animated: false)
} else {
self.navigationController?.dismiss(animated: false, completion: nil)
}
if let urlbarview = urlBarView , hideSearch == true {//收起搜索界面。
urlbarview.cancelBtnClicked(urlbarview.cancelButton)
}
}
移除盖在mainview上的控制器
func removePicBrowser() {
var currentVc : UIViewController!
if let newNav = self.presentedViewController as? UINavigationController {
currentVc = newNav.viewControllers.last!
} else {
currentVc = self.navigationController?.viewControllers.last ?? self
}
for vc in currentVc.childViewControllers {
if let picVc = vc as? PicBrowser {
picVc.btnClicked(picVc.cancelBtn)
}
if let picVc = vc as? PictureBrowser {
picVc.btnClicked(picVc.cancelBtn)
}
}
if let window = UIApplication.shared.keyWindow {
for view in window.subviews {
if let menu = view as? YYWMenuView {
menu.disMiss()
}
if let action = view as? ActionView {
action.disMiss()
}
}
}
}
在PageView的loadRequest(_ request: URLRequest)中拦截搜索的url。使用原生UI打开。
if strd.contains("114larc.com/p/search?q=") || strd.contains("114la.com/p/search?q=") {//搜索的界面
strd = strd.substring(from: strd.range(of: ".com/p/search?q=")!.upperBound)
mainViewController().openSearchView(searchKey: strd)
return
}
还有如果在搜索框输入114la.com/p/search?q=(关键词) 再点击键盘的前往按钮,
则将关键词截取出来放在搜索框中进行搜索。
期间会有对url的encode与decode操作,确保关键词正确。