In Magento EE1, I was able to get sales rule information from product list page with the following...
 
 
$rule = Mage::getModel('salesrule/rule')->load($ruleId);
$isActive = $rule->getIsActive(); 
$fromDate = $rule->getFromDate();
$toDate = $rule->getToDate();
$label = $rule->getStoreLabel();How can I achieve the same in Magento 2?
 
Thank you.
Mike